@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
body { font-family: 'Roboto', sans-serif; }
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    /* Renk Paleti (Siyah, Kırmızı, Beyaz) */
    --primary-color: #ec2c32; /* Ateş Kırmızısı */
    --primary-dark: #b71a20;
    --secondary-color: #111111; /* Koyu Siyah */
    --bg-dark: #1a1a1a;
    --bg-light: #f9f9f9;
    --text-light: #ffffff; /* Beyaz */
    --text-dark: #222222;
    --gray: #777777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--text-light);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* --- BUTONLAR --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 15px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 5px 15px rgba(236, 44, 50, 0.3);
}

.btn-secondary {
    background-color: var(--text-light);
    color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: #e0e0e0;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* --- HEADER --- */
header {
    background-color: var(--secondary-color);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--text-light);
    font-size: 30px;
    font-weight: 700;
}

.logo span {
    color: var(--primary-color);
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary-color);
}


/* --- HERO BÖLÜMÜ --- */
.hero {
    background-color: var(--bg-dark);
    padding: 160px 0 100px;
    color: var(--text-light);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 55px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-text h2 span {
    color: var(--primary-color);
}

.hero-text p {
    color: #cccccc;
    margin-bottom: 35px;
    font-size: 16px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.car-placeholder {
    font-size: 220px;
    color: var(--primary-color);
    text-shadow: 0px 10px 30px rgba(0,0,0,0.8);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

/* --- ARAMA / REZERVASYON FORMU --- */
.search-section {
    background-color: var(--secondary-color);
    padding: 40px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.search-form {
    display: flex;
    gap: 20px;
    background: var(--bg-dark);
    padding: 30px;
    border-radius: 8px;
    align-items: flex-end;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    border-bottom: 3px solid var(--primary-color);
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.input-group label {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
}

.input-group label i {
    color: var(--primary-color);
    margin-right: 5px;
}

.input-group input {
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #333;
    background: #111;
    color: var(--text-light);
    outline: none;
    font-size: 15px;
}

.input-group input:focus {
    border-color: var(--primary-color);
}

.search-form button {
    height: 52px;
    padding: 0 30px;
}

/* --- ARAÇLAR LİSTESİ --- */
.featured-cars {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 40px;
    color: var(--secondary-color);
    font-weight: 700;
}

.section-title h2 span {
    color: var(--primary-color);
}

.section-title p {
    color: var(--gray);
    margin-top: 15px;
    font-size: 16px;
}

.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.car-card {
    background: var(--text-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eee;
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.car-card-img {
    background-color: var(--secondary-color);
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    font-size: 100px;
    border-bottom: 4px solid var(--primary-color);
}

.car-card-content {
    padding: 30px;
}

.car-card-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.price {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.price span {
    font-size: 15px;
    color: var(--gray);
    font-weight: 400;
}

.car-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.car-features li {
    font-size: 14px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.car-features li i {
    color: var(--secondary-color);
}

.car-card-content .btn {
    width: 100%;
    text-align: center;
}

/* --- FOOTER --- */
footer {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding-top: 70px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 28px;
    margin-bottom: 25px;
}

.footer-col h3 span {
    color: var(--primary-color);
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--text-light);
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col p {
    color: #999;
    margin-bottom: 25px;
    font-size: 15px;
}

.social-links a {
    display: inline-flex;
    width: 45px;
    height: 45px;
    background: #222;
    color: var(--text-light);
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    transition: 0.3s;
    font-size: 18px;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #999;
    transition: 0.3s;
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.footer-col ul li {
    color: #999;
    display: flex;
    gap: 15px;
    font-size: 15px;
}

.footer-col ul li i {
    color: var(--primary-color);
    margin-top: 4px;
}

.footer-bottom {
    background-color: #0c0c0c;
    text-align: center;
    padding: 25px 0;
    color: #666;
    font-size: 14px;
}

/* Responsive */
.menu-toggle {
    display: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    z-index: 1002;
}

.mobile-logo-link {
    width: 300px;
    height: 60px;
}

@media (max-width: 1024px) {
    .mobile-logo-link {
        width: 220px;
        height: 50px;
    }
    .mobile-logo-img {
        height: 180px !important;
        top: -60px !important;
    }
}

@media (max-width: 991px) {
    .menu-toggle {
        display: block;
    }

    #main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #111;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        display: none; /* JS will toggle this */
        box-shadow: 0 10px 15px rgba(0,0,0,0.5);
        z-index: 999;
    }

    #main-nav.active {
        display: flex;
    }

    #main-nav ul {
        flex-direction: column !important;
        gap: 15px !important;
        text-align: center;
        width: 100%;
    }

    #main-nav ul li {
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid #333;
    }

    #main-nav ul li:last-child {
        border-bottom: none;
    }

    .admin-btn-hide, .rez-btn-hide {
        display: none !important;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-text {
        padding-right: 0;
    }
    
    .hero-text h2 {
        font-size: 40px;
    }

    .hero-text p {
        margin: 20px auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .search-section {
        margin-top: -30px;
        padding: 20px;
    }

    .search-form {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 20px;
    }

    .search-form button {
        width: 100%;
        margin-top: 10px;
    }
    
    .car-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .contact-container {
        flex-direction: column;
    }

    .contact-info, .contact-form {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .header-container {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .mobile-logo-link {
        width: 150px;
        height: 40px;
    }
    
    .mobile-logo-img {
        height: 140px !important;
        top: -50px !important;
        left: -15px !important;
    }

    .hero-text h2 {
        font-size: 32px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    #header-customer-btn {
        padding: 6px 10px !important;
        font-size: 13px;
    }

    .filter-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .filter-btn {
        width: 45%;
        text-align: center;
        padding: 8px 10px;
        font-size: 13px;
    }
}

html { scroll-behavior: smooth; }
.btn { cursor: pointer; transform: scale(1); transition: transform 0.2s; }
.btn:active { transform: scale(0.95); }
.car-card { transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }

/* --- CAR FILTER BUTTONS --- */
.filter-btn {
    padding: 8px 20px;
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* --- WHATSAPP FLOAT BUTTON --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #1ebea5;
    transform: scale(1.1);
    color: #FFF;
}

/* --- MODAL STYLES --- */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex; justify-content: center; align-items: center;
    z-index: 2000; opacity: 0; visibility: hidden; transition: 0.3s;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content {
    background: #111; color: white; padding: 30px; border-radius: 10px;
    width: 95%; max-width: 900px; position: relative;
    border-top: 4px solid var(--primary-color);
    max-height: 90vh; overflow-y: auto;
}
.modal-content.large { max-width: 1000px; }
.close-modal {
    position: absolute; top: 15px; right: 20px; color: #888;
    font-size: 24px; cursor: pointer; transition: 0.3s;
}
.close-modal:hover { color: var(--primary-color); }
.modal-title { font-size: 24px; margin-bottom: 20px; border-bottom: 1px solid #333; padding-bottom: 10px; }
.modal-form .input-group { margin-bottom: 15px; }
.modal-form label { display: block; margin-bottom: 5px; color: #ccc; }
.modal-form input { width: 100%; padding: 10px; border: 1px solid #333; border-radius: 5px; background: #222; color: white; }
.modal-form button { width: 100%; padding: 12px; margin-top: 10px; border: none; cursor: pointer; border-radius: 5px; }
.toggle-form { margin-top: 15px; text-align: center; color: #888; font-size: 14px; cursor: pointer; }
.toggle-form span { color: var(--primary-color); text-decoration: underline; }
.dashboard-table-container { overflow-x: auto; }
.dashboard-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.dashboard-table th, .dashboard-table td { padding: 12px; border: 1px solid #333; text-align: left; }
.dashboard-table th { background: #222; color: var(--primary-color); }
.dashboard-table td { color: #ccc; }

/* --- REVIEWS MODAL SPECIFIC STYLES --- */
#car-reviews-list {
    max-height: 250px;
    overflow-y: auto;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

#car-reviews-list::-webkit-scrollbar {
    width: 6px;
}

#car-reviews-list::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
}

#car-review-form textarea, #car-review-form select {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #333;
    background: #222;
    color: white;
    font-size: 14px;
    outline: none;
}

#car-review-form textarea:focus, #car-review-form select:focus {
    border-color: var(--primary-color);
}




/* INTRO ANIMATION CSS (SEXY & PREMIUM - KASMAZ & SADELESTIRILDI) */
.site-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #080808;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
    will-change: opacity, transform; /* GPU hızlandırma eklendi */
}

.site-intro.fade-out {
    opacity: 0;
    transform: scale(1.05); /* Yavaşça büyüyerek pürüzsüz kaybolur */
    pointer-events: none;
}

/* Kasma Yapan Bulanık Fırçalar (Blur) KALDIRILDI. Yerine GPU Dostu Çok Hafif Bordo Bir Parlama Eklendi */
.intro-glow {
    position: absolute;
    width: 200vw;
    height: 200vh;
    top: -50%;
    left: -50%;
    /* Direk radial-gradient ile sağlandı, filter blur KULLANILMADI (kasma sıfır) */
    background: radial-gradient(circle at center, rgba(140, 0, 0, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.intro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    will-change: transform, opacity;
}

.intro-logo {
    width: clamp(250px, 45vw, 400px);
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(229, 9, 20, 0.35)); /* Gölgesi kısıldı */
    animation: luxuriousRise 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
    will-change: transform, opacity;
}

/* Klas ve Şık Yazılar */
.intro-text-wrapper {
    text-align: center;
    margin-top: -15px;
    margin-bottom: 40px;
}

.intro-text-main {
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: clamp(14px, 2vw, 20px);
    letter-spacing: 12px;
    font-weight: 300;
    opacity: 0;
    transform: translateY(10px);
    animation: elegantReveal 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s forwards;
    margin: 0;
    padding-left: 12px;
    will-change: transform, opacity;
}

.intro-text-sub {
    color: #cc0000; /* Çok cırtlak kırmızısı hafifçe koyulaştırıldı */
    font-family: 'Roboto', sans-serif;
    font-size: clamp(10px, 1.5vw, 14px);
    letter-spacing: 6px;
    font-weight: 700;
    margin-top: 5px;
    opacity: 0;
    transform: translateY(10px);
    animation: elegantReveal 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.9s forwards;
    padding-left: 6px;
    will-change: transform, opacity;
}

/* Zarif İnce Yükleme Çizgisi */
.intro-line-loader {
    width: clamp(150px, 25vw, 250px);
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInLoader 0.5s ease 1.2s forwards;
    will-change: opacity;
}

.line-progress {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    /* Gradientle GPU'da bedava kayan lazer efekti */
    background: linear-gradient(90deg, transparent, #b00000, #ff1a1a, transparent); 
    animation: elegantSweep 2.2s ease-in-out infinite;
}

@keyframes luxuriousRise {
    0% { opacity: 0; transform: translateY(40px) scale(0.98); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes elegantReveal {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes elegantSweep {
    0% { left: -100%; }
    100% { left: 200%; }
}

@keyframes fadeInLoader {
    to { opacity: 1; }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* LUXURY INTRO ANIMATION */
.luxury-intro {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background-color: #050505;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1.5s cubic-bezier(0.8, 0, 0.2, 1), visibility 1.5s;
}
.luxury-intro.fade-out {
    opacity: 0;
    visibility: hidden;
}
.luxury-intro-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.luxury-logo-container {
    overflow: hidden;
    padding-bottom: 5px;
}
.luxury-brand {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 4.5rem;
    color: #fff;
    letter-spacing: 20px;
    margin-right: -20px;
    opacity: 0;
    transform: translateY(100%);
    animation: luxuryReveal 1.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.5s;
}
.luxury-separator {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color, #e50914), transparent);
    margin: 20px 0;
    opacity: 0.8;
    animation: luxuryLineDraw 1.5s cubic-bezier(0.8, 0, 0.2, 1) forwards 1.8s;
}
.luxury-subtext {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #aaa;
    letter-spacing: 12px;
    margin-right: -12px;
    text-transform: uppercase;
    opacity: 0;
    filter: blur(5px);
    animation: luxurySubFade 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 2.5s;
}

@keyframes luxuryReveal {
    0% { opacity: 0; transform: translateY(100%); }
    20% { opacity: 1; }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes luxuryLineDraw {
    0% { width: 0; }
    100% { width: 250px; }
}
@keyframes luxurySubFade {
    0% { opacity: 0; filter: blur(5px); transform: translateY(10px); }
    100% { opacity: 1; filter: blur(0); transform: translateY(0); }
}
/* --- ULTRA LUXURY INTRO ANIMATION --- */
.ultra-luxury-intro {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none; /* tiklamalar arkaya gecsin */
    overflow: hidden;
}

/* Giristeki kapanan siyah perdeler */
.intro-curtain {
    position: absolute;
    width: 100%;
    height: 50vh;
    background-color: #050505;
    z-index: 10;
    transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1);
    pointer-events: auto; /* Ekran kapaliyken arkaya basilamasin */
}
.curtain-top { top: 0; transform-origin: top; }
.curtain-bottom { bottom: 0; transform-origin: bottom; }

/* Reveal sınıfı eklendiğinde perdeler acilir */
.ultra-luxury-intro.reveal .curtain-top { transform: translateY(-100%); }
.ultra-luxury-intro.reveal .curtain-bottom { transform: translateY(100%); }

/* Ortadaki kirmizi parilti (spot isigi) */
.intro-glow {
    position: absolute;
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(229, 9, 20, 0.08) 0%, rgba(0,0,0,0) 60%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    z-index: 11;
    opacity: 0;
    animation: glowPulsate 4s ease-in-out forwards 0.5s;
    transition: opacity 1s;
}
.ultra-luxury-intro.reveal .intro-glow { opacity: 0; }

/* cerik kapsayicisi - yavasca zoom yapar */
.ultra-intro-content {
    z-index: 12;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: slowZoom 6s linear forwards;
    transition: opacity 1s ease, transform 1.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.ultra-luxury-intro.reveal .ultra-intro-content {
    opacity: 0;
    transform: scale(1.15) !important;
}

/* Ana baslik hucresi (Gizli disariya tasmalar) */
.ultra-brand-container { overflow: hidden; padding: 10px 0; }

.ultra-brand-text {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: clamp(3rem, 6vw, 6rem);
    letter-spacing: clamp(10px, 3vw, 25px);
    margin-right: calc(clamp(10px, 3vw, 25px) * -1); /* Sona eklenen boslugu sil */
    color: #fff;
    background: linear-gradient(120deg, #444 0%, #fff 25%, #fff 75%, #444 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateY(120%);
    animation: brandRise 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.3s, shimmerText 4s linear infinite;
}

/* Ortadaki lüks cizgi tasarimi */
.ultra-separator-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2px;
    margin: 15px 0;
}
.ultra-line {
    height: 1px;
    width: 0;
    background: rgba(255,255,255,0.3);
    position: absolute;
    animation: lineExpand 1.5s cubic-bezier(0.8, 0, 0.2, 1) forwards 1.2s;
}
.ultra-glow-point {
    width: 6px;
    height: 6px;
    background: #e50914;
    border-radius: 50%;
    box-shadow: 0 0 15px 3px rgba(229, 9, 20, 0.8);
    opacity: 0;
    animation: pointFlash 1.5s ease-out forwards 1.7s;
}

/* Alt yazi */
.ultra-sub-container { overflow: hidden; }
.ultra-subtext {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: clamp(0.7rem, 1.2vw, 1.1rem);
    color: var(--primary-color, #e50914);
    letter-spacing: clamp(8px, 1.5vw, 15px);
    margin-right: calc(clamp(8px, 1.5vw, 15px) * -1);
    transform: translateY(-100%);
    opacity: 0;
    filter: blur(5px);
    animation: subDrop 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards 2.2s;
}

/* ANMASYON ÇERÇEVELER */
@keyframes brandRise {
    0% { transform: translateY(120%); }
    100% { transform: translateY(0); }
}
@keyframes shimmerText {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}
@keyframes lineExpand {
    0% { width: 0; }
    100% { width: clamp(150px, 40vw, 350px); }
}
@keyframes pointFlash {
    0% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1.5); }
    100% { opacity: 0; transform: scale(0); }
}
@keyframes subDrop {
    0% { transform: translateY(-150%); opacity: 0; filter: blur(5px); }
    100% { transform: translateY(0); opacity: 1; filter: blur(0); }
}
@keyframes slowZoom {
    0% { transform: scale(0.95); }
    100% { transform: scale(1.05); }
}
@keyframes glowPulsate {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 1; }
}
/* ========================================================
   MAX (ZENITH) LUXURY INTRO ANIMATION 
   ======================================================== */
.zenith-intro {
    position: fixed; width: 100vw; height: 100vh;
    top: 0; left: 0;
    z-index: 999999;
    display: flex; justify-content: center; align-items: center;
    background-color: transparent !important;
    overflow: hidden;
}

/* Evrensel Karartma / Odak **/
.zenith-bg {
    position: absolute; width: 100%; height: 100%;
    background: radial-gradient(circle at center, #111 0%, #000 70%);
    opacity: 0;
    animation: fadeInZenith 1s forwards 0.5s;
    transition: opacity 1.5s ease-in-out;
}
.zenith-intro.reveal .zenith-bg { opacity: 0; }

/* Kapanis - Acilis Perdeleri */
.zenith-shutter { position: absolute; width: 50%; height: 100vh; background: #000; top: 0; z-index: -1 !important; transition: transform 2.5s cubic-bezier(0.86, 0, 0.07, 1); pointer-events: auto; }
.zenith-shutter.left { left: 0; transform-origin: left; }
.zenith-shutter.right { right: 0; transform-origin: right; }

.zenith-intro.reveal .zenith-shutter.left { transform: scaleX(0); }
.zenith-intro.reveal .zenith-shutter.right { transform: scaleX(0); }

/* Merkez Icerik Alani */
.zenith-content {
    position: relative; z-index: 10;
    display: flex; flex-direction: column; align-items: center;
    transition: opacity 1s, transform 2s cubic-bezier(0.86, 0, 0.07, 1);
    opacity: 1;
}
.zenith-intro.reveal .zenith-content {
    opacity: 0;
    transform: scale(1.1); /* Silinirken kameraya ucasin */
}

/* Altin Araba Cizgisi */
.zenith-abstract-car {
    width: 200px; height: auto;
    margin-bottom: -15px;
    opacity: 0;
    animation: fadeInZenith 1s forwards 1s;
}
.zenith-car-path {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawZenithPath 3.5s cubic-bezier(0.4, 0, 0.2, 1) forwards 1s;
}

/* Harman Marka Harfleri */
.zenith-brand {
    display: flex;
    overflow: hidden;
    padding: 10px 0;
}
.zenith-brand span {
    display: inline-block;
    font-family: 'Roboto', serif;
    font-weight: 300;
    font-size: clamp(3rem, 5vw, 5rem);
    letter-spacing: clamp(10px, 2vw, 20px);
    margin-right: -10px; /* spacing fix */
    color: transparent;
    background: linear-gradient(180deg, #fff 0%, #a8a8a8 45%, #fff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    transform: translateY(120%);
    opacity: 0;
    animation: letterRiseZenith 2s cubic-bezier(0.215, 0.610, 0.355, 1.000) forwards;
    animation-delay: calc(1.5s + (var(--i) * 0.15s));
    text-shadow: 0 0 0 rgba(255,255,255,0);
}

/* Slogan Kapsayicisi ve Cizgi */
.zenith-tagline-container {
    position: relative;
    display: flex; justify-content: center; align-items: center;
    margin-top: 15px;
    width: 250px;
    height: 30px;
}
.zenith-tagline-line {
    position: absolute;
    top: 50%; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, #ceaa69, transparent);
    transform: scaleX(0);
    animation: scaleLineZenith 1.5s cubic-bezier(0.75, 0, 0.25, 1) forwards 3.3s;
}
.zenith-tagline-text {
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 5px;
    color: #ceaa69;
    text-transform: uppercase;
    background: #000;
    padding: 0 10px;
    z-index: 1;
    opacity: 0;
    margin-right: -5px;
    animation: fadeInZenith 1.5s forwards 4s;
}

/* Altin Tozlari (Partikuller) */
.zenith-particles { position: absolute; width: 100%; height: 100%; z-index: 5; pointer-events: none;}
.zen-particle {
    position: absolute;
    width: 2px; height: 2px;
    background: #ceaa69;
    border-radius: 50%;
    box-shadow: 0 0 5px #ceaa69;
    opacity: 0;
    animation: floatZenParticle linear infinite;
}

/* KEYFRAMES */
@keyframes fadeInZenith { to { opacity: 1; } }
@keyframes drawZenithPath { to { stroke-dashoffset: 0; } }
@keyframes letterRiseZenith {
    0% { transform: translateY(120%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(0); opacity: 1; text-shadow: 0 0 15px rgba(255,255,255,0.05); }
}
@keyframes scaleLineZenith { to { transform: scaleX(1); } }
@keyframes floatZenParticle {
    0% { transform: translateY(0) scale(0); opacity: 0; }
    30% { opacity: 0.6; transform: scale(1.5); }
    70% { opacity: 0.6; transform: scale(1); }
    100% { transform: translateY(-50px) scale(0); opacity: 0; }
}

.zenith-intro { transition: background-color 0s 2s; }
.zenith-intro.reveal { background-color: transparent !important; }

.zenith-intro.reveal { background-color: transparent; pointer-events: none; }

.zenith-shutter { position: absolute; width: 50%; height: 100vh; background: #000; top: 0; z-index: -1 !important; transition: transform 2.5s cubic-bezier(0.86, 0, 0.07, 1); pointer-events: auto; }
.zenith-bg { z-index: 0; }
.zenith-content { z-index: 10 !important; }
.zenith-particles { z-index: 5 !important; }



/* ========================================================
   APEX LUXURY INTRO (Zero Lag / GPU Accelerated)
   ======================================================== */
.apex-intro {
    position: fixed; width: 100vw; height: 100vh;
    top: 0; left: 0; z-index: 999999;
    display: flex; justify-content: center; align-items: center;
    background: transparent;
    pointer-events: auto;
}

/* Siyah Perde Arka Plan - Yukariya dogru puruzsuz toplanir */
.apex-curtain {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: #030303;
    transform-origin: top;
    transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
    z-index: 1;
}

/* Kapanista takilmayi onlemek icin donanim hizlandirmasi */
.apex-intro.reveal .apex-curtain {
    transform: scaleY(0); 
}

/* Orta Noktadaki Icerikler (Yazi ve Cizgi) */
.apex-content {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; align-items: center;
    transition: opacity 0.8s ease, transform 1.5s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: opacity, transform;
}

.apex-intro.reveal .apex-content {
    opacity: 0;
    transform: translateY(-30px);
}

.apex-brand {
    font-family: 'Roboto', serif;
    font-weight: 300;
    font-size: clamp(3rem, 6vw, 6rem);
    letter-spacing: clamp(10px, 3vw, 25px);
    margin-right: -12.5px;
    background: linear-gradient(135deg, #fff 0%, #d4af37 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateY(40px);
    opacity: 0;
    animation: apexRise 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.3s;
    will-change: transform, opacity;
}

.apex-gold-line {
    width: clamp(150px, 40vw, 400px);
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    transform: scaleX(0);
    opacity: 0;
    margin-bottom: -15px;
    animation: apexScaleX 1.5s cubic-bezier(0.8, 0, 0.2, 1) forwards 1s;
    will-change: transform, opacity;
}

.apex-slogan {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(0.7rem, 1.2vw, 1rem);
    font-weight: 400;
    letter-spacing: 8px;
    color: #ceaa69;
    margin-top: 25px;
    margin-right: -4px;
    text-transform: uppercase;
    transform: translateY(-20px);
    opacity: 0;
    animation: apexRise 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 1.4s;
    will-change: transform, opacity;
}

/* Kasmayi azaltmak (No Lag) icin Translate & Scale bazli iskeletler */
@keyframes apexRise {
    to { transform: translateY(0); opacity: 1; }
}
@keyframes apexScaleX {
    to { transform: scaleX(1); opacity: 1; }
}
/* ========================================================
   OMEGA (RED-WHITE-BLACK) MAX LUXURY INTRO
   ======================================================== */
.omega-intro {
    position: fixed; width: 100vw; height: 100vh;
    top: 0; left: 0; z-index: 999999;
    display: flex; justify-content: center; align-items: center;
    background: transparent;
    pointer-events: auto;
    overflow: hidden;
}

/* Siyah Perdeler Sadece Acilirken Kirmizi Lazer Cizgisi Gosterir */
.omega-panel {
    position: absolute; left: 0; width: 100vw; height: 50vh;
    background-color: #030303;
    z-index: 100;
    transition: transform 1.2s cubic-bezier(0.8, 0, 0.2, 1);
    will-change: transform;
}
.omega-panel.panel-top { top: 0; transform-origin: top; border-bottom: 1px solid rgba(229, 9, 20, 0); }
.omega-panel.panel-bottom { bottom: 0; transform-origin: bottom; border-top: 1px solid rgba(229, 9, 20, 0); }

/* Reveal sınıfı gelince perdenin ortasına kırmızı vurur ve ayrılır */
.omega-intro.reveal .omega-panel.panel-top { 
    transform: translateY(-100%);
    border-bottom: 2px solid rgba(229, 9, 20, 0.8);
    box-shadow: 0 5px 25px rgba(229, 9, 20, 0.6);
}
.omega-intro.reveal .omega-panel.panel-bottom { 
    transform: translateY(100%);
    border-top: 2px solid rgba(229, 9, 20, 0.8);
    box-shadow: 0 -5px 25px rgba(229, 9, 20, 0.6);
}

/* Arkadaki hafif kizil atmosfer (Glow) */
.omega-bg {
    position: absolute; width: 100%; height: 100%;
    z-index: 101; pointer-events: none;
    display: flex; justify-content: center; align-items: center;
    transition: opacity 1s;
}
.omega-intro.reveal .omega-bg { opacity: 0; }

.omega-glow {
    position: absolute;
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, rgba(229, 9, 20, 0.15) 0%, rgba(0,0,0,0) 65%);
    opacity: 0;
    transform: scale(0.6);
    animation: omegaGlowAnim 4s ease-out forwards 0.2s;
}

/* Orta Noktadaki asil Icerikler */
.omega-content {
    position: relative; z-index: 105;
    display: flex; flex-direction: column; align-items: center;
    transition: transform 1.2s cubic-bezier(0.8, 0, 0.2, 1), opacity 0.8s;
}
.omega-intro.reveal .omega-content {
    /* Kaybolurken ekrana hafifce yapisiyor */
    transform: scale(1.15);
    opacity: 0;
}

/* Marka Harf Harf yukselen Beyaz & Tok Tasarim */
.omega-brand-box {
    display: flex; gap: clamp(5px, 1.5vw, 15px); overflow: hidden; padding: 15px 0 5px 0;
}
.omega-letter {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: clamp(3.5rem, 8vw, 7rem);
    color: #fff;
    transform: translateY(120%);
    opacity: 0;
    animation: omegaLetterRise 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: calc(0.3s + var(--d));
    text-shadow: 0 0 15px rgba(255,255,255,0.15);
    will-change: transform, opacity;
}

/* Parlayan keskin (laser) kirmizi cizgi */
.omega-laser-line {
    width: 0; height: 2px;
    background: #e50914;
    box-shadow: 0 0 20px 3px rgba(229, 9, 20, 0.9);
    margin: 5px 0 20px 0;
    opacity: 0;
    animation: omegaLaser 1.5s cubic-bezier(0.8, 0, 0.2, 1) forwards 1.4s;
    will-change: width, opacity;
}

/* Premium Slogan */
.omega-slogan {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(0.7rem, 1.5vw, 1.1rem);
    font-weight: 500;
    letter-spacing: clamp(10px, 2vw, 18px);
    margin-right: -12px;
    color: #fff;
    text-transform: uppercase;
    transform: translateY(-20px);
    opacity: 0;
    animation: omegaDrop 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 2s;
    will-change: transform, opacity;
}

/* Animasyon Keyframeler (Lag yapmayan iskeletler) */
@keyframes omegaLetterRise {
    to { transform: translateY(0); opacity: 1; }
}
@keyframes omegaLaser {
    0% { width: 0; opacity: 0; }
    50% { opacity: 1; }
    100% { width: clamp(200px, 50vw, 500px); opacity: 1; }
}
@keyframes omegaDrop {
    to { transform: translateY(0); opacity: 1; }
}
@keyframes omegaGlowAnim {
    0% { transform: scale(0.6); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: scale(1.2); opacity: 0.8; }
}
/* ========================================================
   APEX RED-BLACK (Ultimate Performance - The Old Favorite but Red)
   ======================================================== */
.apex-red-intro {
    position: fixed; width: 100vw; height: 100vh;
    top: 0; left: 0; z-index: 999999;
    display: flex; justify-content: center; align-items: center;
    background: transparent;
    pointer-events: auto;
}

/* Kapanis perdesi (Siyah - Yukari acilir) */
.apex-red-curtain {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: #030303;
    transform-origin: top;
    transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
    z-index: 100;
}
.apex-red-intro.reveal .apex-red-curtain {
    transform: scaleY(0);
}

/* Hafif Kirmizi Glow (Arkada) */
.apex-red-glow {
    position: absolute; top: 50%; left: 50%; width: 40vw; height: 40vw;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(229, 9, 20, 0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: 101;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1s;
    animation: apexRedGlowAnim 3s ease forwards 0.2s;
}
.apex-red-intro.reveal .apex-red-glow { opacity: 0; }

@keyframes apexRedGlowAnim {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.5); }
}

/* Icerik Kutusu */
.apex-red-content {
    position: relative; z-index: 105;
    display: flex; flex-direction: column; align-items: center;
    transition: opacity 0.8s ease, transform 1.5s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: opacity, transform;
}
.apex-red-intro.reveal .apex-red-content {
    opacity: 0;
    transform: translateY(-30px);
}

/* Marka Ismi - Kirmizi Beyaz Keskinlik */
.apex-red-brand {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: clamp(3rem, 6vw, 6rem);
    letter-spacing: clamp(10px, 3vw, 25px);
    margin-right: -12.5px;
    color: #ffffff;
    text-shadow: 2px 2px 10px rgba(229, 9, 20, 0.3);
    transform: translateY(40px);
    opacity: 0;
    animation: apexRedRise 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.3s;
    will-change: transform, opacity;
}

/* Alt Keskin Cizgi - KIRMIZI */
.apex-red-line {
    width: clamp(150px, 40vw, 400px);
    height: 2px;
    background: linear-gradient(90deg, transparent, #e50914, transparent);
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.6);
    transform: scaleX(0);
    opacity: 0;
    margin-bottom: -10px;
    animation: apexRedScaleX 1.5s cubic-bezier(0.8, 0, 0.2, 1) forwards 1s;
    will-change: transform, opacity;
}

/* Slogan */
.apex-red-slogan {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(0.7rem, 1.2vw, 1rem);
    font-weight: 500;
    letter-spacing: 8px;
    color: #ffffff;
    margin-top: 25px;
    margin-right: -4px;
    text-transform: uppercase;
    transform: translateY(-20px);
    opacity: 0;
    animation: apexRedRise 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 1.4s;
    will-change: transform, opacity;
}

/* Animasyonlar (Translate tabanli donanim hizlandirmali) */
@keyframes apexRedRise {
    to { transform: translateY(0); opacity: 1; }
}
@keyframes apexRedScaleX {
    to { transform: scaleX(1); opacity: 1; }
}

/* ========================================================
   SIGMA DRAWING INTRO (ULTIMATE ELEGANCE)
   ======================================================== */
.sigma-intro {
    position: fixed; width: 100vw; height: 100vh;
    top: 0; left: 0; z-index: 999999;
    display: flex; justify-content: center; align-items: center;
    background: transparent;
    pointer-events: auto;
}

.sigma-curtain {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: #030303;
    transform-origin: bottom;
    transition: transform 1.2s cubic-bezier(0.8, 0, 0.2, 1);
    will-change: transform;
    z-index: 100;
}
.sigma-intro.reveal .sigma-curtain {
    transform: translateY(-100%);
    border-bottom: 2px solid rgba(229, 9, 20, 0.8);
    box-shadow: 0 5px 25px rgba(229, 9, 20, 0.6);
}

.sigma-glow {
    position: absolute; top: 50%; left: 50%; width: 40vw; height: 40vw;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(229, 9, 20, 0.2) 0%, rgba(0,0,0,0) 70%);
    z-index: 101; pointer-events: none;
    opacity: 0;
    animation: sigmaGlow 4s ease forwards 1.2s;
}
.sigma-intro.reveal .sigma-glow { opacity: 0; transition: opacity 0.5s; }

@keyframes sigmaGlow {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.6); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.4); }
}

.sigma-content {
    position: relative; z-index: 105;
    display: flex; flex-direction: column; align-items: center;
    transition: transform 1.2s cubic-bezier(0.8, 0, 0.2, 1), opacity 0.8s;
}
.sigma-intro.reveal .sigma-content {
    transform: scale(1.1) translateY(-30px); opacity: 0;
}

.sigma-svg-logo {
    width: clamp(80px, 15vw, 150px);
    height: clamp(80px, 15vw, 150px);
    margin-bottom: 30px;
    filter: drop-shadow(0 0 8px rgba(229, 9, 20, 0.5));
    animation: sigmaFloat 3s ease-in-out infinite alternate 2s;
}
@keyframes sigmaFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-8px); }
}

.sigma-path-red {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    fill: rgba(229,9,20,0);
    animation: 
        sigmaDrawRed 1.8s cubic-bezier(0.7, 0, 0.3, 1) forwards 0.2s,
        sigmaFillRed 1s ease forwards 1.8s;
}

.sigma-path-white {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: sigmaDrawWhite 1s cubic-bezier(0.7, 0, 0.3, 1) forwards 1s;
}

@keyframes sigmaDrawRed {
    to { stroke-dashoffset: 0; }
}
@keyframes sigmaFillRed {
    to { fill: rgba(229, 9, 20, 0.15); filter: drop-shadow(0 0 10px #e50914); }
}
@keyframes sigmaDrawWhite {
    to { stroke-dashoffset: 0; }
}

.sigma-text-area {
    display: flex; flex-direction: column; align-items: center;
}

.sigma-brand {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 5rem);
    letter-spacing: clamp(10px, 3vw, 25px);
    margin-right: -12.5px;
    color: #ffffff;
    transform: translateY(20px); opacity: 0;
    animation: sigmaRise 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 2.0s;
    will-change: transform, opacity;
}

.sigma-line {
    width: clamp(150px, 35vw, 400px); height: 2px;
    background: #e50914;
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.8);
    margin: 15px 0;
    transform: scaleX(0); opacity: 0;
    animation: sigmaScaleX 1s cubic-bezier(0.8, 0, 0.2, 1) forwards 2.3s;
    will-change: transform, opacity;
}

.sigma-slogan {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(0.7rem, 1.2vw, 1rem);
    font-weight: 500;
    letter-spacing: 8px; color: #ffffff; margin-right: -4px;
    text-transform: uppercase;
    transform: translateY(-10px); opacity: 0;
    animation: sigmaRise 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 2.6s;
    will-change: transform, opacity;
}

@keyframes sigmaRise { to { transform: translateY(0); opacity: 1; } }
@keyframes sigmaScaleX { to { transform: scaleX(1); opacity: 1; } }

﻿.png-scan-wrapper {
    position: relative; width: clamp(250px, 45vw, 500px); height: auto; margin-bottom: 20px; display: flex; justify-content: center; align-items: center;
}
.png-scanned-logo {
    width: 100%; height: auto; display: block; clip-path: inset(0 100% 0 0);
    animation: pngReveal 1.8s cubic-bezier(0.7, 0, 0.3, 1) forwards 0.5s;
    filter: drop-shadow(0 0 10px rgba(229, 9, 20, 0.4)); will-change: clip-path, filter;
}
.png-laser-line {
    position: absolute; top: -5%; left: 0%; height: 110%; width: 3px;
    background: #ffffff; box-shadow: 0 0 25px 8px #e50914, 0 0 10px 2px #e50914;
    opacity: 0; animation: pngLaserSweep 1.8s cubic-bezier(0.7, 0, 0.3, 1) forwards 0.5s; z-index: 10;
}
@keyframes pngReveal {
    0% { clip-path: inset(0 100% 0 0); filter: brightness(2) drop-shadow(0 0 15px #e50914); }
    100% { clip-path: inset(0 0 0 0); filter: brightness(1) drop-shadow(0 0 10px rgba(229, 9, 20, 0.4)); }
}
@keyframes pngLaserSweep {
    0% { left: 0%; opacity: 0; } 5% { opacity: 1; } 95% { opacity: 1; } 100% { left: 100%; opacity: 0; }
}

﻿.png-scan-wrapper {
    position: relative; width: clamp(250px, 45vw, 500px); height: auto; margin-bottom: 20px; display: flex; justify-content: center; align-items: center;
}
.png-scanned-logo {
    width: 100%; height: auto; display: block; clip-path: inset(0 100% 0 0);
    animation: pngReveal 1.8s cubic-bezier(0.7, 0, 0.3, 1) forwards 0.5s;
    filter: drop-shadow(0 0 10px rgba(229, 9, 20, 0.4)); will-change: clip-path, filter;
}
.png-laser-line {
    position: absolute; top: -5%; left: 0%; height: 110%; width: 3px;
    background: #ffffff; box-shadow: 0 0 25px 8px #e50914, 0 0 10px 2px #e50914;
    opacity: 0; animation: pngLaserSweep 1.8s cubic-bezier(0.7, 0, 0.3, 1) forwards 0.5s; z-index: 10;
}
@keyframes pngReveal {
    0% { clip-path: inset(0 100% 0 0); filter: brightness(2) drop-shadow(0 0 15px #e50914); }
    100% { clip-path: inset(0 0 0 0); filter: brightness(1) drop-shadow(0 0 10px rgba(229, 9, 20, 0.4)); }
}
@keyframes pngLaserSweep {
    0% { left: 0%; opacity: 0; } 5% { opacity: 1; } 95% { opacity: 1; } 100% { left: 100%; opacity: 0; }
}
