:root {
    --bg-dark: #040208;
    --gold: #f8c967;
    --cyan: #00f0ff;
    --magenta: #ff0077;
    --purple: #8b2fc9;
    --text-white: #ffffff;
    --text-sub: #a19ebb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
    padding: 60px 20px;
}

/* Arka Plan Atmosfer Işıkları */
.ambient-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.cyan-glow { top: 10%; left: 15%; background: var(--cyan); }
.gold-glow { top: 20%; right: 15%; background: var(--gold); }
.purple-glow { bottom: 10%; left: 40%; background: var(--purple); }

/* Ana Hizalama Kapsayıcısı */
.master-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Üst Rozet */
.badge-wrap {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(248, 201, 103, 0.08);
    border: 1px solid rgba(248, 201, 103, 0.35);
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 35px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 20px rgba(248, 201, 103, 0.15);
}

.pulse-beacon {
    width: 9px;
    height: 9px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--gold);
    animation: beaconPulse 1.8s infinite;
}

@keyframes beaconPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.7); }
}

.badge-txt {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}

/* ====================================================
   SİNEMATİK MERKEZ VİTRİN: KARARIP-YANMA EFEKTİ
==================================================== */
.cinema-stage {
    position: relative;
    width: 100%;
    max-width: 860px;
    margin: 0 auto 40px auto;
    animation: stageIntro 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes stageIntro {
    0% {
        opacity: 0;
        transform: scale(0.75) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Arkadaki Dinamik Yanıp Sönen Neon Hale */
.neon-aura {
    position: absolute;
    inset: -10px;
    background: linear-gradient(135deg, var(--gold), var(--cyan), var(--magenta), var(--gold));
    background-size: 300% 300%;
    border-radius: 26px;
    filter: blur(25px);
    z-index: 1;
    animation: neonBreathe 4.5s ease-in-out infinite;
}

/* Kararıp Yanma & Parlama Döngüsü */
@keyframes neonBreathe {
    0% {
        opacity: 0.3;
        filter: blur(18px);
        background-position: 0% 50%;
    }
    50% {
        opacity: 0.85;
        filter: blur(32px);
        background-position: 100% 50%;
    }
    100% {
        opacity: 0.3;
        filter: blur(18px);
        background-position: 0% 50%;
    }
}

/* Görsel Çerçevesi */
.cinema-frame {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.25);
    background: #000;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
}

.cinema-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    animation: imageShine 4.5s ease-in-out infinite;
}

/* Resmin Kendi İçindeki Kararıp-Aydınlanma Hareketi */
@keyframes imageShine {
    0% {
        filter: brightness(0.85) contrast(1.05);
    }
    50% {
        filter: brightness(1.12) contrast(1.15) saturate(1.1);
    }
    100% {
        filter: brightness(0.85) contrast(1.05);
    }
}

.cinema-glass-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 40%, rgba(0,0,0,0.5) 100%);
    pointer-events: none;
}

/* Başlık ve Metinler */
.hero-info {
    max-width: 800px;
    margin-bottom: 35px;
}

.main-title {
    font-family: 'Cinzel', serif;
    font-size: 2.3rem;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.glow-gradient {
    background: linear-gradient(90deg, var(--gold), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 25px rgba(248, 201, 103, 0.3);
}

.golden-slogan {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 18px;
    text-shadow: 0 0 20px rgba(248, 201, 103, 0.5);
}

.intro-desc {
    color: var(--text-sub);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Alt Aksiyon Çubuğu */
.action-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-audio {
    background: rgba(14, 10, 26, 0.85);
    border: 1px solid rgba(0, 240, 255, 0.4);
    color: var(--cyan);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-audio:hover {
    background: rgba(0, 240, 255, 0.15);
    box-shadow: 0 0 35px rgba(0, 240, 255, 0.4);
    transform: translateY(-2px);
}

/* Sosyal Medya */
.social-deck {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-pill {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    transition: all 0.25s ease;
}

.social-pill.ig:hover { border-color: #e1306c; color: #e1306c; box-shadow: 0 0 20px rgba(225, 48, 108, 0.35); }
.social-pill.yt:hover { border-color: #ff0000; color: #ff0000; box-shadow: 0 0 20px rgba(255, 0, 0, 0.35); }
.social-pill.tt:hover { border-color: #00f2fe; color: #00f2fe; box-shadow: 0 0 20px rgba(0, 242, 254, 0.35); }
.social-pill.fb:hover { border-color: #1877f2; color: #1877f2; box-shadow: 0 0 20px rgba(24, 119, 242, 0.35); }

.legal-text {
    color: #4b4860;
    font-size: 0.8rem;
    margin-top: 10px;
}

/* Mobil Cihaz Uyumu */
@media (max-width: 768px) {
    .main-title { font-size: 1.6rem; }
    .golden-slogan { font-size: 1.2rem; }
    .cinema-stage { margin-bottom: 25px; }
}