:root {
    --bg: #040406;
    --card-bg: rgba(18, 18, 24, 0.75);
    --accent: #ff3300;
    --accent-glow: rgba(255, 51, 0, 0.4);
    --gold: #ffb700;
    --text-main: #ffffff;
    --text-muted: #9e9ea7;
    --font-hero: 'Anton', sans-serif;
    --font-title: 'Syne', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    min-height: 100%;
    background-color: var(--bg);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Arka Plan Atmosfer Katmanları */
.bg-noise {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(25, 25, 35, 0.4) 0%, var(--bg) 100%);
    z-index: 0;
    pointer-events: none;
}

.glow-sphere {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
}

.sphere-1 {
    width: 450px;
    height: 450px;
    background: var(--accent-glow);
    top: -50px;
    right: 25%;
    opacity: 0.6;
}

.sphere-2 {
    width: 350px;
    height: 350px;
    background: rgba(255, 183, 0, 0.12);
    bottom: -50px;
    left: 10%;
}

.bg-text-behind {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-hero);
    font-size: clamp(12rem, 25vw, 32rem);
    line-height: 0.8;
    color: rgba(255, 255, 255, 0.015);
    pointer-events: none;
    z-index: 0;
    letter-spacing: -0.05em;
}

/* Ana Düzen */
.viewport-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1440px;
    min-height: 100vh;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 60px;
    gap: 50px;
}

/* SOL: İÇERİK */
.hero-left {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 650px;
}

.brand-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.brand-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 16px;
    border-radius: 100px;
    backdrop-filter: blur(10px);
}

.brand-badge .dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
}

.location-badge {
    color: var(--text-muted);
    letter-spacing: 2px;
}

.pre-title {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 8px;
}

/* Dinamik ve Okunabilir Başlık */
.glitch-title {
    font-family: var(--font-hero);
    font-size: clamp(3.2rem, 5.5vw, 5.8rem);
    line-height: 0.88;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
}

.row-solid {
    color: var(--text-main);
    text-shadow: 0 5px 20px rgba(0,0,0,0.8);
}

.row-stroke {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.85);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.row-accent {
    color: var(--accent);
    text-shadow: 0 0 30px var(--accent-glow);
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 520px;
}

/* Özellik Kartları */
.spec-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.spec-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--accent);
    padding: 16px 20px;
    border-radius: 12px;
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.spec-card:hover {
    transform: translateX(6px);
    border-color: rgba(255, 255, 255, 0.2);
    border-left-color: var(--gold);
}

.spec-num {
    font-family: var(--font-hero);
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1;
}

.spec-txt strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-main);
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.spec-txt span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.mobile-only-cta {
    display: none;
}

/* SAĞ: VIDEO KARTI */
.hero-right {
    flex: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-card-3d {
    position: relative;
    width: 100%;
    max-width: 380px;
}

.video-glow-effect {
    position: absolute;
    inset: -15px;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    border-radius: 36px;
    filter: blur(30px);
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

.video-card-3d:hover .video-glow-effect {
    opacity: 0.5;
}

.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 28px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg, 
        rgba(0,0,0,0.6) 0%, 
        transparent 25%, 
        transparent 65%, 
        rgba(0,0,0,0.9) 100%
    );
    pointer-events: none;
}





/* Video İçi Arayüz Elemanları */
.v-ui {
    position: absolute;
    left: 0;
    right: 0;
    padding: 22px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.v-ui.top {
    top: 0;
}

.v-ui.bottom {
    bottom: 0;
    align-items: flex-end;
}

.live-tag {
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 100px;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.live-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent);
}

.hd-tag {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    letter-spacing: 1px;
}

.price-tag {
    display: flex;
    flex-direction: column;
}

.p-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    font-weight: 700;
}

.p-val {
    font-family: var(--font-hero);
    font-size: 2.2rem;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}


.btn-fire {
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px var(--accent-glow);
    transition: all 0.3s ease;
}

.btn-fire:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

/* RESPONSIVE (Masaüstü, Tablet & Mobil) */
@media (max-width: 1024px) {
    body {
        overflow-y: auto;
    }
    
    .viewport-wrapper {
        flex-direction: column-reverse;
        padding: 40px 24px;
        min-height: auto;
        gap: 40px;
    }

    .hero-left {
        width: 100%;
        max-width: 100%;
    }







    
    .hero-right {
        width: 100%;
    }

    .video-card-3d {
        max-width: 340px;
    }

    .mobile-only-cta {
        display: block;
        margin-top: 10px;
    }

    .btn-fire-large {
        background: var(--accent);
        color: #fff;
        text-decoration: none;
        padding: 18px;
        border-radius: 14px;
        font-weight: 700;
        font-size: 0.9rem;
        letter-spacing: 1.5px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        box-shadow: 0 10px 25px var(--accent-glow);
    }
}

@media (max-width: 480px) {
    .viewport-wrapper {
        padding: 24px 16px;
    }

    .brand-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .glitch-title {
        font-size: 3.2rem;
    }

    .spec-card {
        padding: 14px 16px;
    }

    .video-card-3d {
        max-width: 100%;
    }
    
}


/* --- CANLI YAYIN ETKİLEŞİMLERİ --- */

/* Kalp Uçuş Alanı */
.live-hearts-container {
    position: absolute;
    right: 15px;
    bottom: 80px;
    width: 60px;
    height: 250px;
    pointer-events: none;
    z-index: 5;
}

.floating-heart {
    position: absolute;
    bottom: 0;
    font-size: 20px;
    animation: floatUp 2.5s ease-out forwards;
    opacity: 0;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(0.6) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-120px) scale(1.2) rotate(-15deg);
        opacity: 0.8;
    }
    100% {
        transform: translateY(-240px) scale(0.9) rotate(15deg);
        opacity: 0;
    }
}

/* Kayan Canlı Yorumlar */
.live-comments-container {
    position: absolute;
    left: 15px;
    bottom: 75px;
    width: 210px;
    max-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 6px;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
    mask-image: linear-gradient(to top, rgba(0,0,0,1) 70%, rgba(0,0,0,0));
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 70%, rgba(0,0,0,0));
}

.comment-box {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    animation: slideInComment 0.3s ease-out forwards;
    width: fit-content;
    max-width: 100%;
}

.comment-user {
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
}

.comment-text {
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes slideInComment {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}