:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #111111;
    --accent-gold: #ffb703;
    --accent-orange: #fb8500;
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(20, 20, 20, 0.6);
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--primary-bg);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Scroll Offset for Fixed Navbar */
.feature-section,
.about-section,
.contact-section {
    scroll-margin-top: 120px;
}

#utilities {
    scroll-margin-top: 340px;
    /* Higher offset to include section header "OYUNUN KONTROLÜNÜ ELİNE AL" */
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

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

/* Ensure features container stays standard */
.detailed-features .container {
    max-width: 1200px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.highlight {
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 15px;
    /* Reduced gap */
    align-items: center;
}

.nav-menu-wrapper {
    margin-left: 50px;
    /* Adjusted to 50px for optimal balance */
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 0.85rem;
    /* Smaller font */
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(255, 183, 3, 0.4);
}

.nav-separator {
    width: 1px;
    height: 18px;
    /* Slightly shorter */
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 5px;
    /* Tighter margin */
}

.nav-btn {
    border: 1px solid var(--accent-gold);
    padding: 8px 20px;
    border-radius: 4px;
    color: var(--accent-gold) !important;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 183, 3, 0.1);
}

.nav-btn:hover {
    background: var(--accent-gold);
    color: #000 !important;
    box-shadow: 0 0 20px rgba(255, 183, 3, 0.4);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('assets/images/hero-bg0.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Hero bottom fade */
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.hero-video {
    width: 900px;
    height: auto;
    display: block;
    margin: -120px auto 10px auto;
    mix-blend-mode: screen;
}

/* Responsive adjustment for 1080p screens */
/* Responsive adjustment for 1080p or shorter screens */
@media (max-height: 1080px) {
    .hero-video {
        width: auto;
        /* Allow width to scale */
        height: 40vh;
        /* Dynamic Height: Occupy 40% of screen */
        margin-top: 10vh;
        /* Spacing from top relative to screen */
        margin-bottom: -4vh;
        /* Slight overlap, relative to screen */
    }

    .hero-content h1 {
        font-size: 3.5rem;
        /* Smaller title */
        margin-bottom: 10px;
    }

    /* Navbar Optimization for 1080p */
    .navbar {
        padding: 10px 0;
        /* Slimmer navbar */
    }

    .logo img {
        height: 40px;
        /* Smaller logo */
    }



    .nav-links a {
        font-size: 0.8rem;
        /* Slightly smaller text */
    }

    .nav-btn {
        padding: 6px 15px;
        /* Compact button */
        font-size: 0.85rem;
    }
}



.slogan {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.sub-description {
    margin-bottom: 30px;
    font-size: 1rem;
}


/* --- Mobile Responsiveness (Tablets & Phones) --- */
.mobile-menu-btn {
    display: none;
    /* Hidden on desktop */
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    margin-right: 15px;
}

@media (max-width: 1024px) {
    .nav-container {
        justify-content: space-between;
    }

    .logo img {
        height: 40px;
    }

    /* --- Right Side Group (Buy + Lang + Toggle) --- */
    .nav-right-side {
        display: flex;
        align-items: center;
        gap: 20px;
        /* Increased general gap */
        margin-left: auto;
        /* Force group to far right */
        justify-content: flex-end;
    }

    .mobile-menu-btn {
        display: block;
        margin-right: 0;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 20px;
        /* Equal spacing (Dollar <-> Globe) */
        margin-top: -2px;
        /* Milimetric UP adjustment */
        margin-right: 25px;
        /* Move LEFT more (push away from Hamburger) */
    }

    /* --- Collapsible Menu --- */
    .nav-menu-wrapper {
        display: none;
        position: fixed;
        /* Viewport Relative - Break out of all containers */
        top: 62px;
        /* Approx Mobile Header Height (40px logo + 20px pad + border) */
        left: auto;
        /* Release Left Anchor */
        right: 0;
        /* Anchor to Right */
        width: 180px;
        /* Safe width for all languages */
        /* Fixed Narrow Width */
        background: rgba(5, 5, 5, 0.85);
        /* Slightly more opaque for panel */
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        /* Add left border */
        border-radius: 0 0 0 15px;
        /* Rounded bottom-left corner */
        box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.5);
        /* Depth shadow */
        padding: 20px 20px 20px 10px;
        /* Added right padding (20px) to keep content within frame */
        z-index: 999;
    }

    .nav-menu-wrapper.active {
        display: block;
        /* Show menu container */
    }

    .nav-links {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-end !important;
        /* Force children to Right Edge */
        width: 100%;
        margin: 0 !important;
        padding: 0 5px 0 0 !important;
        /* Minimal right padding to align with hamburger button */
        box-sizing: border-box;
    }

    .nav-links li {
        width: auto !important;
        /* Shrink to fit text content, sticking to right */
        display: block !important;
        margin: 10px 0;
        padding: 0;
        margin-right: 0 !important;
        /* Reset margin */
        padding-right: 0 !important;
    }

    /* Force Anchor Alignment */
    .nav-links a {
        display: block !important;
        width: auto !important;
        white-space: nowrap !important;
        text-align: right !important;
        margin: 0 !important;
        padding-right: 0 !important;
        /* Align exactly to edge */
    }

    .nav-separator {
        display: block !important;
        width: 100% !important;
        align-self: stretch !important;
        /* Override parent's flex-end to make separator full width */
        height: 1px;
        background: transparent;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        margin: 15px -5px 15px 30px !important;
        /* Align with menu items - trim from left, extend right to edge */
        padding: 0 !important;
        opacity: 1;
    }

    /* Buy Button as Icon */
    .buy-btn {
        padding: 0;
        width: 18px;
        /* Balanced visually with globe */
        height: 18px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--accent-orange);
        border: none;
        overflow: hidden;
    }

    .buy-btn .btn-text {
        display: none !important;
        visibility: hidden;
    }

    .buy-btn .btn-icon {
        display: block;
        font-weight: bold;
        font-size: 0.6rem;
        /* Scaled for 18px */
        line-height: 1;
        /* Fix vertical centering */
        margin-top: 1px;
        /* Optical correction for font baseline */
        color: white;
    }

    /* Language as Icon Only */
    .lang-item {
        border: none;
        padding: 0;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 26px;
        /* Matched size */
        height: 26px;
    }

    .lang-item select {
        width: 100%;
        /* Fill the container */
        height: 100%;
        opacity: 0;
        position: absolute;
        left: 0;
        top: 0;
        cursor: pointer;
    }

    .lang-icon {
        margin-right: 0;
        width: 24px;
        height: 24px;
    }

    /* Feature Stacking */
    .feature-split-layout,
    .feature-split-layout.reverse {
        flex-direction: column !important;
        height: auto;
    }

    .feature-panel-split {
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .feature-video-outside {
        width: 100%;
        height: 300px;
        position: relative;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-video {
        width: auto;
        height: auto;
        max-width: 100%;
        /* Fixes Black Void (Overflow) */
        max-height: 35vh;
        /* Fixes Overlap (Too Tall) */
        margin-top: 0;
        margin-bottom: -20px;
        /* Safe spacing */
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-section,
    .about-section,
    .contact-section {
        scroll-margin-top: 80px;
    }
}

/* Default Buy Button Styles (Desktop) */
.btn-icon {
    display: none;
}

.nav-right-side {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 5px;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    color: var(--text-white);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 5;
}

.slogan {
    font-family: 'Consolas', monospace;
    font-size: 1.5rem;
    color: #C8C8C8;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.pro-text {
    color: var(--accent-gold);
    font-style: italic;
    text-shadow: 0 0 15px rgba(255, 183, 3, 0.5);
}

.sub-description {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

/* Steam Button */
.steam-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #171a21 0%, #2a475e 100%);
    color: #fff;
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.steam-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.steam-btn:hover::before {
    left: 100%;
}

.steam-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(42, 71, 94, 0.4);
    border-color: #66c0f4;
}

.steam-icon {
    width: 26px;
    height: 26px;
}

.large {
    font-size: 1.3rem;
    padding: 22px 60px;
}

/* Features Overview */
.features {
    padding: 120px 0;
    background: transparent;
    /* Rely on body bg */
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 80px;
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* Detailed Features - Geometric & Ambient */
.detailed-features {
    padding: 0;
    /* Premium 3D Tech Background */
    background:
        linear-gradient(to bottom, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)),
        url('assets/images/bg_pattern_v2.png') !important;
    background-size: cover !important;
    /* Spread single image */
    background-repeat: no-repeat !important;
    /* No Tiling ("Uc uca ekleme yok") */
    background-attachment: fixed !important;
    /* Parallax */
    background-position: center !important;

    position: relative;
    overflow: hidden;
}

.section-header {
    padding: 100px 0 50px;
    text-align: center;
}

.feature-section {
    padding: 80px 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle separator */
}

/* Video Enhanced 3-Column Layout */
.feature-section.video-enhanced .feature-row.three-col {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    /* Image - Text - Video */
    gap: 30px;
    align-items: center;
}

.visual-column,
.video-column,
.text-column {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-column .glass-panel {
    width: 100%;
    border-left: 2px solid var(--accent-gold);
    /* Simplify text borders */
    border-right: none;
    border-top: none;
    border-bottom: none;
    background: rgba(10, 10, 10, 0.3);
    /* Lighter bg for middle col */
}

/* Ambient Video Style (Embedded, No Border) */
.ambient-video-wrapper {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    /* No border, No shadow */
}

.ambient-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    /* "Silik" appearance */
    filter: grayscale(80%) contrast(1.1);
    transform: scale(1.1);
    /* Slight zoom for background feel */
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.ambient-video-wrapper .ambient-fade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 50px var(--secondary-bg);
    pointer-events: none;
}

/* Ambient Placeholder */
.video-placeholder.ambient-style {
    border: none;
    background: radial-gradient(circle, rgba(255, 183, 3, 0.05) 0%, transparent 70%);
}

.video-placeholder.ambient-style .placeholder-content {
    opacity: 0.5;
}

/* Detailed Features */
.detailed-features {
    padding: 40px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.section-header {
    padding: 60px 0 20px;
    text-align: center;
}

.feature-section {
    padding: 60px 0;
    position: relative;
    border-bottom: none;

    /* STATIC OUTER RAILS (Buffered Beams) */
    background-image:
        linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent),
        /* Top Rail */
        linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    /* Bottom Rail */
    background-size: 100% 1px, 100% 1px;
    /* Full width thin lines */
    background-position: center bottom 6px, center bottom 0px;
    /* Framing the beams at 6px and 0px */
    background-repeat: no-repeat;
}

/* Animated Gold Ribbon Separator */
/* Feature Video Styling */
.feature-video {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
}

.feature-image img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.container.feature-container-crosshair {
    max-width: 1600px;
    width: 100%;
    padding: 0 20px;
}

/* =========================================
   GENERIC SPLIT LAYOUT (Zig-Zag Pattern) 
   ========================================= */

/* Main Container for Split Sections */
.feature-split-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    width: 100%;
}

/* ... (Rest of styling remains same, just ensuring context match) */
.feature-split-layout.reverse {
    flex-direction: row-reverse;
}

/* Skip unchanged lines for brevity in replacement chunk context matching if possible, but replace_file_content needs contiguous block. 
   Wait, I need to update the BEAMS too which are way down in the file.
   I should use multi_replace.
*/

/* Glass Panel (Content Side) */
.glass-panel.feature-panel-split {
    flex: 1.5;
    /* Give more weight to the panel */
    max-width: 70%;
    /* Increased from 65% */
    padding: 50px;
    /* Reduced from 60px for compactness */
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Reduced from 30px */
    position: relative;
    z-index: 2;
    /* Ensure panel is above the circuit line */
}

/* =========================================
   CIRCUIT CONNECTOR (High-Complexity Network)
   ========================================= */
.feature-split-layout {
    position: relative;
    /* Anchor for the circuit line */
}

.feature-split-layout::before {
    content: '';
    position: absolute;
    top: -30%;
    /* Start much higher to cover more area */
    left: -10%;
    /* Extend left */
    width: 120%;
    /* Wider than container */
    height: 160%;
    /* Taller */
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;

    /* High-Complexity Circuit SVG:
       Mimics a motherboard trace network.
       Gold color scheme (#ffb703).
       
       UPDATE: Removed top-most short trace (Line 1) per user request.
    */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 600' fill='none'%3E%3Cdefs%3E%3Cfilter id='glow'%3E%3CfeGaussianBlur stdDeviation='2' result='coloredBlur'/%3E%3CfeMerge%3E%3CfeMergeNode in='coloredBlur'/%3E%3CfeMergeNode in='SourceGraphic'/%3E%3C/feMerge%3E%3C/filter%3E%3C/defs%3E%3C!-- BACKGROUND DECORATION --%3E%3Cpath d='M100,550 L150,550 L150,100 L200,50' stroke='%23ffb703' stroke-width='1' opacity='0.1'/%3E%3Cpath d='M900,550 L850,550 L850,100 L800,50' stroke='%23ffb703' stroke-width='1' opacity='0.1'/%3E%3C!-- MAIN VERTICAL BUS (4 Parallel Lines now) --%3E%3C!-- Line 2 (Left - Ends with Down Triangle) --%3E%3Cpath d='M220,550 L220,220 L280,160 L600,160' stroke='%23ffb703' stroke-width='1.5' opacity='0.6'/%3E%3C!-- Line 3 (Center - With Red Triangle) --%3E%3Cpath d='M250,550 L250,200 L300,150 L700,150 L750,200 L750,300' stroke='%23ffb703' stroke-width='2' opacity='0.8' filter='url(%23glow)'/%3E%3C!-- Line 4 (Right - Ends with Down Triangle) --%3E%3Cpath d='M280,550 L280,250 L350,180 L650,180 L720,250 L720,280' stroke='%23ffb703' stroke-width='1.5' opacity='0.6'/%3E%3C!-- Line 5 (Outer Right) --%3E%3Cpath d='M310,550 L310,280 L380,210 L680,210' stroke='%23ffb703' stroke-width='1' opacity='0.4'/%3E%3C!-- DECORATION NODES --%3E%3Ccircle cx='750' cy='300' r='6' fill='%23ffb703' filter='url(%23glow)'/%3E%3C!-- RED TRIANGLE ACCENTS --%3E%3Cpath d='M600,157 L600,163 L606,160 Z' fill='%23cc5555' stroke='%23cc5555' stroke-width='0.5' opacity='0.7'/%3E%3Cpath d='M747,300 L753,300 L750,306 Z' fill='%23cc5555' stroke='%23cc5555' stroke-width='0.5' opacity='0.7'/%3E%3Cpath d='M717,280 L723,280 L720,286 Z' fill='%23cc5555' stroke='%23cc5555' stroke-width='0.5' opacity='0.7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

/* Reverse Layout: Flip the circuit bus */
.feature-split-layout.reverse::before {
    transform: scaleX(-1);
}

/* Hide on mobile */
@media (max-width: 1200px) {
    .feature-split-layout::before {
        display: none;
    }
}

/* Video Side (Floating Outside) */
.feature-video-outside {
    flex: 1;
    display: flex;
    /* Alignment depends on standard/reverse, handled by separate rules or auto margins? */
    /* Better: Use flex alignment on the container items */
    justify-content: center;
    align-items: center;
}

/* Adjust Video Alignment based on layout */
.feature-split-layout .feature-video-outside {
    justify-content: flex-end;
    /* Video on right */
    padding-left: 20px;
}

.feature-split-layout.reverse .feature-video-outside {
    justify-content: flex-start;
    /* Video on left */
    padding-left: 0;
    padding-right: 20px;
}

/* Common Content Styles inside Panel */
.feature-panel-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Reduced from 30px - Tights up proper */
}

.feature-panel-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* Reduced from 15px */
}

.feature-panel-title h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-white);
}

.feature-panel-image {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    margin-top: 5px;
    /* Reduced from 10px */
}

.feature-panel-image .feature-image {
    max-width: 650px;
    width: 100%;
}

.feature-panel-desc {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Reduced from 20px */
    margin-top: 15px;
    /* Reduced from 20px */
}

.feature-panel-desc p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Video Wrapper Generic */
.video-position-wrapper {
    position: relative;
    width: 550px;
    /* Reduced from 650px as requested */
    height: auto;
    border-radius: 12px;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='%23ffb703' stroke='%23000' stroke-width='1'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") 16 16, pointer;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* Video Placeholder Frame (For sections without video yet) */
.video-placeholder-frame {
    width: 550px;
    /* Matches video wrapper */
    height: 310px;
    /* Adjusted aspect ratio */
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.video-placeholder-frame:hover {
    border-color: rgba(255, 183, 3, 0.3);
    background: rgba(0, 0, 0, 0.4);
}

.video-placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.3);
}

.video-placeholder-icon {
    font-size: 2.5rem;
    opacity: 0.5;
}

.video-placeholder-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sidebar-video-positioned {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;

    /* ENHANCED VISIBILITY: Permanent Glow & Border */
    box-shadow: 0 0 30px rgba(255, 183, 3, 0.15);
    border: 1px solid rgba(255, 183, 3, 0.2);

    transition: all 0.4s ease;
    opacity: 1;
    filter: none;
}

.sidebar-video-positioned:hover {
    transform: scale(1.02);
    box-shadow: 0 0 60px rgba(255, 183, 3, 0.4);
    border-color: rgba(255, 183, 3, 0.5);
}

/* Responsive */
@media (max-width: 1200px) {

    .feature-split-layout,
    .feature-split-layout.reverse {
        flex-direction: column;
        gap: 60px;
    }

    .glass-panel.feature-panel-split {
        max-width: 100%;
        width: 100%;
    }

    .feature-split-layout .feature-video-outside,
    .feature-split-layout.reverse .feature-video-outside {
        padding: 0;
        justify-content: center;
    }

    .video-position-wrapper {
        width: 100%;
        max-width: 650px;
    }
}

/* Adjust internal spacing for the compact card */
.compact-card.feature-row {
    gap: 40px;
    padding: 50px;
}

/* Fix Image Size: Smaller as requested (420px) */
.compact-card .feature-image {
    flex: 0 0 420px;
    width: 420px;
    max-width: 100%;
}

.video-sidebar {
    /* Standard Width: Matches visual element proportion */
    flex: 0 0 500px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;

    /* Custom Gold Play Cursor */
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='%23ffb703' stroke='%23000' stroke-width='1'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") 16 16, pointer;
}

.sidebar-video {
    width: 500px;
    /* Massive 1.5x Size */
    height: auto;
    /* max-height removed to prevent letterboxing */
    object-fit: cover;
    /* Fill the frame completely */
    border-radius: 12px;

    /* "Clean" Look - No Border, No Frame */
    /* ENHANCED VISIBILITY: Added permanent glow and removed dimming */
    box-shadow: 0 0 30px rgba(255, 183, 3, 0.15);
    /* Permanent subtle glow */
    border: 1px solid rgba(255, 183, 3, 0.2);
    /* Subtle gold frame */

    background: transparent;
    padding: 0;

    transition: all 0.4s ease;
    opacity: 1;
    /* Was 0.85 */
    /* Slight dim when idle */
    filter: none;
    /* Was grayscale(30%) */
}

/* When Hovering / Playing: purely optical emphasis */
.video-sidebar:hover .sidebar-video,
.sidebar-video.is-playing {
    transform: scale(1.02);
    /* Restore the "Good" Glow Effect - But NO sharp border "frame" */
    box-shadow: 0 0 60px rgba(255, 183, 3, 0.4);
    border-color: rgba(255, 183, 3, 0.5);
    /* Just the Gold Bloom */
}

/* Hint Overlay (Text + Icon) */
.video-hint-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    pointer-events: none;
    /* Let clicks pass through */
    transition: opacity 0.3s ease, transform 0.3s ease;

    background: rgba(0, 0, 0, 0.7);
    padding: 15px 25px;
    border-radius: 30px;
    border: 1px solid rgba(255, 183, 3, 0.3);
    backdrop-filter: blur(5px);
}

.play-icon {
    font-size: 24px;
    color: var(--accent-gold);
    animation: bounce-hint 2s infinite;
}

.video-hint-overlay span {
    color: #eee;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Hide Hint on Hover */
.video-position-wrapper:hover .video-hint-overlay {
    opacity: 0;
    transform: translate(-50%, -40%);
    /* Slide up slightly while fading */
}

@keyframes bounce-hint {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

/* Responsive Crosshair */
@media (max-width: 1100px) {
    .feature-container-crosshair {
        flex-direction: column;
    }

    .sidebar-video {
        height: 300px;
        /* Limit height on mobile */
    }
}

.feature-content {
    flex: 1;
    position: relative;
}

.feature-row:last-child {
    margin-bottom: 0;
}

/* Animated Gold Ribbon Separator (OLD - PRESERVED) */
/*
.feature-section::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    height: 80px;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='gold-grad' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%23333' stop-opacity='0'/%3E%3Cstop offset='20%25' stop-color='%23ffb703'/%3E%3Cstop offset='50%25' stop-color='%23fb8500'/%3E%3Cstop offset='80%25' stop-color='%23ffb703'/%3E%3Cstop offset='100%25' stop-color='%23333' stop-opacity='0'/%3E%3C/linearGradient%3E%3Cfilter id='glow'%3E%3CfeGaussianBlur stdDeviation='2' result='coloredBlur'/%3E%3CfeMerge%3E%3CfeMergeNode in='coloredBlur'/%3E%3CfeMergeNode in='SourceGraphic'/%3E%3C/feMerge%3E%3C/filter%3E%3C/defs%3E%3Cg filter='url(%23glow)'%3E%3C!-- Main Dense Ribbon --%3E%3Cpath d='M0,40 C300,80 900,0 1200,40' stroke='url(%23gold-grad)' stroke-width='3' fill='none'/%3E%3Cpath d='M0,40 C300,0 900,80 1200,40' stroke='rgba(255,255,255,0.1)' stroke-width='2' fill='none'/%3E%3Cpath d='M0,45 C400,90 800,-10 1200,45' stroke='url(%23gold-grad)' stroke-width='1' fill='none' opacity='0.6'/%3E%3Cpath d='M0,35 C350,-5 850,85 1200,35' stroke='var(--accent-orange)' stroke-width='1' fill='none' opacity='0.5'/%3E%3C/g%3E%3C/svg%3E");

    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
}
*/

/* NEW: Sleek Gradient Glow Separator (OLD - PRESERVED) */
/*
.feature-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 1px;
    
    background: linear-gradient(
        90deg, 
        transparent 0%, 
        rgba(255, 183, 3, 0.1) 15%, 
        var(--accent-gold) 50%, 
        rgba(255, 183, 3, 0.1) 85%, 
        transparent 100%
    );

    box-shadow: 
        0 1px 10px rgba(255, 183, 3, 0.3),
        0 0 20px rgba(251, 133, 0, 0.1);
    
    opacity: 0.8;
    z-index: 1;
    pointer-events: none;
}
*/

/* 
   =========================================
   DOUBLE BEAM ANIMATED SEPARATOR 
   =========================================
*/

.feature-section::before,
.feature-section::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    /* Wide but not edge-to-edge */
    height: 1px;
    /* Thin, sleek lines */
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;

    /* Base subtle line */
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
    /* Mask the beam */

    /* FADE EDGES: Soft transparency at start/end of the rail */
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
}

/* TOP LINE: Left -> Right Beam */
.feature-section::before {
    bottom: 6px;
    /* Spacing */
    /* Animated Beam Gradient */
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 183, 3, 0) 40%,
            /* Start transparent */
            rgba(255, 183, 3, 0.8) 50%,
            /* Intense center beam */
            rgba(255, 255, 255, 0.9) 50.5%,
            /* White hot core */
            rgba(255, 183, 3, 0.8) 51%,
            /* Intense center beam */
            rgba(255, 183, 3, 0) 60%,
            /* Fade out */
            transparent 100%);
    background-size: 200% 100%;
    animation: beam-slide-right 4s linear infinite;
}

/* BOTTOM LINE: Right -> Left Beam */
.feature-section::after {
    bottom: 0;
    /* Similar gradient, maybe slightly orange-er for contrast? Keeping uniform for now. */
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 183, 3, 0) 40%,
            rgba(251, 133, 0, 0.8) 50%,
            /* Slightly more orange */
            rgba(255, 255, 255, 0.9) 50.5%,
            rgba(251, 133, 0, 0.8) 51%,
            rgba(255, 183, 3, 0) 60%,
            transparent 100%);
    background-size: 200% 100%;
    animation: beam-slide-left 4s linear infinite;
}

/* Keyframes for Continuous Flow */
@keyframes beam-slide-right {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

@keyframes beam-slide-left {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 100% 0;
    }
}

/* Glass Panels (Premium Unified Card) */
.glass-panel {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.6) 0%, rgba(10, 10, 10, 0.8) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 60px;
    /* Internal spacing for the whole card */
    border-radius: 20px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    /* No hover transform on the container itself */
}

/* Flex layout happens strictly inside the unified card now */
.feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
    /* Spacing between text and image INSIDE the card */
    margin-bottom: 120px;
    position: relative;
    z-index: 2;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

/* 
   =========================================
   DOUBLE BEAM ANIMATED SEPARATOR 
   =========================================
*/

.feature-section::before,
.feature-section::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    /* Wide but not edge-to-edge */
    height: 1px;
    /* Thin, sleek lines */
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;

    /* Base subtle line */
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
    /* Mask the beam */
}

/* TOP LINE: Left -> Right Beam */
.feature-section::before {
    bottom: 6px;
    /* Spacing */
    /* Animated Beam Gradient */
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 183, 3, 0) 40%,
            /* Start transparent */
            rgba(255, 183, 3, 0.8) 50%,
            /* Intense center beam */
            rgba(255, 255, 255, 0.9) 50.5%,
            /* White hot core */
            rgba(255, 183, 3, 0.8) 51%,
            /* Intense center beam */
            rgba(255, 183, 3, 0) 60%,
            /* Fade out */
            transparent 100%);
    background-size: 200% 100%;
    animation: beam-slide-right 4s linear infinite;
}

/* BOTTOM LINE: Right -> Left Beam */
.feature-section::after {
    bottom: 0;
    /* Similar gradient, maybe slightly orange-er for contrast? Keeping uniform for now. */
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 183, 3, 0) 40%,
            rgba(251, 133, 0, 0.8) 50%,
            /* Slightly more orange */
            rgba(255, 255, 255, 0.9) 50.5%,
            rgba(251, 133, 0, 0.8) 51%,
            rgba(255, 183, 3, 0) 60%,
            transparent 100%);
    background-size: 200% 100%;
    animation: beam-slide-left 4s linear infinite;
}

/* Keyframes for Continuous Flow */
@keyframes beam-slide-right {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

@keyframes beam-slide-left {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 100% 0;
    }
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.floating-ui-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    z-index: 2;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Video Styles */
.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 183, 3, 0.3);
}

.video-wrapper video {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    pointer-events: none;
}


.feature-image {
    flex: 1;
    position: relative;
}

/* Collage Styles */
.collage-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.collage-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    /* Reduced from 400px for compactness */
    display: flex;
    justify-content: center;
    align-items: center;
}

.collage-img {
    position: absolute;
    width: 60%;
    /* Each image takes up part of the width */
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 183, 3, 0.2);
    transition: all 0.4s ease;
}

/* Collage - Utilities (Existing) */
.collage-img.img-1 {
    transform: translateX(-30%) scale(0.9) translateY(10px);
    z-index: 1;
    opacity: 0.8;
}

.collage-img.img-2 {
    transform: translateX(0) scale(0.95);
    z-index: 2;
}

.collage-img.img-3 {
    transform: translateX(30%) scale(1.0) translateY(-10px);
    z-index: 3;
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Collage - Smart Tuner */
.tuner-collage .collage-img.tuner-1 {
    width: 70%;
    transform: translateX(-15%) scale(1);
    z-index: 2;
    border-color: var(--accent-gold);
}

.tuner-collage .collage-img.tuner-2 {
    width: 60%;
    transform: translateX(25%) translateY(20%) scale(0.9);
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Collage - Pro Player DB */
.pro-collage .collage-img.pro-1 {
    width: 55%;
    transform: translateX(-40%);
    z-index: 1;
    opacity: 0.9;
}

.pro-collage .collage-img.pro-2 {
    width: 45%;
    transform: translateX(40%) translateY(-35%);
    z-index: 2;
    border-color: #fb8500;
}

.pro-collage .collage-img.pro-3 {
    width: 45%;
    transform: translateX(40%) translateY(35%);
    z-index: 3;
    border-color: var(--accent-gold);
}

/* Collage Hover Effects - Trigger on Panel Hover for better UX */

/* Utility Collage Hover */
.glass-panel:hover .collage-wrapper .collage-img.img-1,
.collage-container:hover .collage-wrapper .collage-img.img-1 {
    transform: translateX(-35%) scale(0.95) rotate(-5deg);
    opacity: 1;
    z-index: 4;
}

.glass-panel:hover .collage-wrapper .collage-img.img-2,
.collage-container:hover .collage-wrapper .collage-img.img-2 {
    transform: translateY(-20px) scale(0.95);
    z-index: 3;
}

.glass-panel:hover .collage-wrapper .collage-img.img-3,
.collage-container:hover .collage-wrapper .collage-img.img-3 {
    transform: translateX(35%) scale(0.95) rotate(5deg);
    z-index: 4;
}

/* Smart Tuner Collage Hover */
.glass-panel:hover .tuner-collage .collage-img.tuner-1,
.collage-container:hover .tuner-collage .collage-img.tuner-1 {
    transform: translateX(-20%) scale(1.02);
}

.glass-panel:hover .tuner-collage .collage-img.tuner-2,
.collage-container:hover .tuner-collage .collage-img.tuner-2 {
    transform: translateX(30%) translateY(20%) scale(0.95) rotate(-3deg);
    z-index: 4;
}

/* Pro Player Collage Hover */
.glass-panel:hover .pro-collage .collage-img.pro-1,
.collage-container:hover .pro-collage .collage-img.pro-1 {
    transform: translateX(-30%) scale(1.05);
    opacity: 1;
    z-index: 4;
}

.glass-panel:hover .pro-collage .collage-img.pro-2,
.collage-container:hover .pro-collage .collage-img.pro-2 {
    transform: translateX(35%) translateY(-35%) rotate(5deg);
}

.glass-panel:hover .pro-collage .collage-img.pro-3,
.collage-container:hover .pro-collage .collage-img.pro-3 {
    transform: translateX(35%) translateY(35%) rotate(-5deg);
}

/* Common feature image style override for regular images */
.feature-image img:not(.collage-img) {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.feature-image:hover img:not(.collage-img) {
    transform: scale(1.02);
    border-color: var(--accent-gold);
    box-shadow: 0 0 30px rgba(255, 183, 3, 0.2);
}

/* Force override for legacy styles inside panel */
.feature-panel-desc p.feature-desc,
.feature-panel-title h3 {
    margin: 0 !important;
}

.feature-panel-desc .feature-list {
    margin-top: 10px;
    margin-bottom: 0;
}

.feature-desc {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #ddd;
}

.feature-list li::before {
    content: "►";
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.8rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Responsive Features */
@media (max-width: 968px) {
    .timeline-line {
        display: none;
    }

    .feature-content::before,
    .feature-content::after {
        display: none;
    }

    .feature-row {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        margin-bottom: 80px;
    }

    .feature-row.reverse {
        flex-direction: column;
    }

    .feature-list {
        display: inline-block;
        text-align: left;
    }
}

/* Gallery */
.gallery {
    padding: 100px 0;
    background: var(--primary-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: var(--accent-gold);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(to right, #0F0F0F, #141414);
    border-top: 1px solid #222;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.contact-text {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: #111;
    border: 1px solid #333;
    border-radius: 5px;
    color: #fff;
    font-family: var(--font-body);
    transition: 0.3s;
    resize: none;
    /* Disable manual resize handle */
}

/* Custom dropdown arrow for select */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    /* Moved arrow to 15px from right */
    background-size: 16px;
    padding-right: 45px;
    /* Space for the arrow */
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(255, 183, 3, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: var(--accent-gold);
    color: #000;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #e6a503;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/images/footer-bg.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0 40px;
    text-align: center;
}

.footer h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 40px;
    line-height: 1.2;
}

.copyright {
    margin-top: 80px;
    color: #666;
    font-size: 0.9rem;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 80px;
    right: 55px;
    /* Moved to 55px for final alignment */
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    color: var(--accent-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 183, 3, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.scroll-to-top:hover {
    background: var(--accent-gold);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 183, 3, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
}

/* Mobile optimization for scroll button */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 35px;
        height: 35px;
        bottom: 70px;
        right: 20px;
    }

    .scroll-to-top svg {
        width: 18px;
        height: 18px;
    }
}

/* Fixed Slogan */
.fixed-slogan {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-family: 'Consolas', monospace;
    font-size: 0.9rem;
    color: rgba(200, 200, 200, 0.85);
    z-index: 9999;
    pointer-events: none;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.pro-text-fixed {
    color: var(--accent-gold);
    font-style: italic;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
        /* Mobile menu eklenebilir */
    }

    .fixed-slogan {
        font-size: 0.7rem;
        bottom: 10px;
        right: 10px;
    }
}

/* =========================================
   Dual Image Collages (Crosshair, VM, FPS)
   ========================================= */
.dual-collage {
    position: relative;
    width: 100%;
    height: 320px;
    /* Fixed height container */
    display: flex;
    align-items: center;
    justify-content: center;
}

.dual-collage .collage-img {
    position: absolute;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    max-width: none;
    /* Allow sizing via width % */
}

/* Main Image (Front Left) */
.dual-collage .main-img {
    width: 75%;
    z-index: 2;
    transform: translateX(-10%) translateY(-5%);
    border-color: rgba(255, 183, 3, 0.3);
    /* Subtle Gold Border */
}

/* Secondary Image (Back Right) */
.dual-collage .sec-img {
    width: 70%;
    z-index: 1;
    transform: translateX(15%) translateY(10%);
    opacity: 0.7;
    /* Depth */
    filter: grayscale(40%);
}

/* Hover Effects */
.dual-collage:hover .main-img {
    transform: translateX(-15%) translateY(-10%) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 183, 3, 0.15);
    /* Gold Glow */
    border-color: var(--accent-gold);
}

.dual-collage:hover .sec-img {
    transform: translateX(20%) translateY(15%) rotate(2deg);
    opacity: 1;
    filter: grayscale(0%);
    z-index: 3;
    /* Pop to front? Or just maintain depth? Let's keep depth but brighten */

}

/* Feature Icon Image Styling */
/* Feature Icon Styling */
.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 183, 3, 0.4));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-3px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* About Section */
.about-section {
    padding: 100px 0 150px 0;
    /* Reduced spacing - top and bottom cut roughly in half */
    position: relative;
    background: rgba(15, 15, 15, 0.5);
    /* Subtle background to make the expanded area visible */
    scroll-margin-top: 80px;
    /* Navbar height offset - section starts right below navbar */
}

/* Language Selector */
.lang-item {
    display: flex;
    align-items: center;
}

.lang-selector {
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 5px 10px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.lang-selector:hover,
.lang-selector:focus {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.lang-selector option {
    background-color: #000;
    color: #fff;
}

/* Nav Container: Modified for Centered Links */
.nav-container {
    display: flex;
    justify-content: flex-start;
    /* Align items start, use margins to center */
    align-items: center;
    position: relative;
    height: 100%;
    /* Ensure full height */
}

/* Push Links to Center */
.nav-links {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    /* Center the links group */
    padding-right: 150px;
    /* Optical balance to account for logo on left but nothing on right in container */
    /* Note: Actions are absolute right of window, so we need some padding to avoid overlap if container is full width */
}

/* Nav Actions Container (Absolute Positioning) */
.nav-actions {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 0;
    z-index: 1001;
    /* Ensure above everything */
}

/* RTL Support (Arabic) - Text Only, Layout Remains LTR */
/* No global direction change to preserve layout */

/* Apply RTL direction and alignment to text content only */
.rtl-mode p,
.rtl-mode h1,
.rtl-mode h2,
.rtl-mode h3,
.rtl-mode h4,
.rtl-mode li,
.rtl-mode input,
.rtl-mode textarea,
.rtl-mode select {
    direction: rtl;
    text-align: right;
}

/* Special Case: Hero Section (Keep Centered) */
.rtl-mode .hero-content h1,
.rtl-mode .hero-content p {
    text-align: center;
    direction: rtl;
}

/* Nav Menu: Keep Original Order even in RTL */
/* No special rules needed for .nav-links in RTL if keeping LTR order */

/* Feature List Bullets logic if needed */
/* Default list style usually handles itself with direction: rtl */

/* Footer Aligment */
.rtl-mode .footer {
    direction: rtl;
    /* For copyright text flow */
}

/* Ensure Nav Actions order is correct for Arabic */
/* No special rules needed for .nav-actions in RTL if keeping LTR order */


/* Language Globe Icon */
.lang-icon {
    width: 20px;
    height: 20px;
    color: var(--text-gray);
    margin-right: 8px;
    transition: color 0.3s ease;
}

.lang-item:hover .lang-icon {
    color: var(--accent-gold);
}

/* Force Section Titles to Center in RTL */
.rtl-mode .section-title {
    text-align: center;
}


/* Force Footer to Center in RTL */
.rtl-mode .footer-content h2,
.rtl-mode .copyright,
.rtl-mode .footer-content p {
    text-align: center;
}


/* Modify Navbar Container Max-Width for more space */
.navbar .container {
    max-width: 1400px !important;
    /* Force wider container for navbar only */
}


/* Hero Content: Wrapper style removed to fix video blending. Text elements handle their own z-index. */

/* Z-Index Fixes removed */
/* cta-group uses default stacking */

/* --- Custom Language Dropdown --- */
.custom-dropdown {
    position: relative;
    width: 80px;
    /* Slightly wider for icon */
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 10px;
}

.dropdown-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    background: transparent;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-selected:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.selected-lang-code {
    margin-left: 5px;
    margin-right: 5px;
    text-transform: uppercase;
}

.dropdown-options {
    position: absolute;
    top: 100%;
    right: 0;
    width: 150px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 183, 3, 0.2);
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 2000;
    overflow: hidden;
    margin-top: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dropdown-options.show {
    display: block;
    animation: fadeInDropdown 0.2s ease;
}

.dropdown-option {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #ccc;
}

.dropdown-option:last-child {
    border-bottom: none;
}

.dropdown-option:hover {
    background: rgba(255, 183, 3, 0.1);
    color: var(--accent-gold);
}

.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    margin-right: 10px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    display: block;
}

/* Selected item highlight */
.dropdown-option.active {
    background: rgba(255, 183, 3, 0.05);
    color: var(--accent-gold);
}

@keyframes fadeInDropdown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Chevron Rotation */
.chevron-icon {
    transition: transform 0.3s;
}

.custom-dropdown.active .chevron-icon {
    transform: rotate(180deg);
}

/* Hide original native select */
/* We will remove the select but keep this for safety */
#language-switcher {
    display: none;
}


/* --- Mobile Globe Logic --- */
.mobile-globe {
    display: none;
    /* Hidden by default (Desktop) */
    width: 20px;
    height: 20px;
    margin: 0;
}

@media (max-width: 768px) {
    .nav-actions .custom-dropdown {
        width: auto !important;
        /* Shrink to fit icon */
        margin-left: 8px;
        /* Reduced from 20px to move Buy button Right */
        margin-right: 15px;
        /* Slightly tighter to menu */
    }

    /* On Mobile: Hide Flag, Code, Chevron */
    .dropdown-selected .selected-flag,
    .dropdown-selected .selected-lang-code,
    .dropdown-selected .chevron-icon {
        display: none !important;
    }

    /* On Mobile: Show Globe */
    .mobile-globe {
        display: block !important;
    }

    .dropdown-selected {
        padding: 5px;
        /* Reduce padding */
        border: none;
        /* Optional: Remove border for cleaner icon look */
    }
}

/* --- Toast Notification --- */
.toast-notification {
    position: fixed;
    top: 100px;
    right: -400px;
    /* Hidden initially */
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--accent-gold);
    border-radius: 8px;
    padding: 20px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    width: 320px;
}

.toast-notification.show {
    right: 30px;
}

.toast-icon {
    width: 24px;
    height: 24px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: bold;
    flex-shrink: 0;
}

.toast-content h4 {
    margin: 0;
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1rem;
    margin-bottom: 5px;
}

.toast-content p {
    margin: 0;
    font-family: var(--font-body);
    color: #ccc;
    font-size: 0.85rem;
    line-height: 1.4;
}

.submit-btn.success {
    background: #4CAF50 !important;
    color: #fff !important;
    border-color: #4CAF50 !important;
}

/* --- Utilities --- */
.visual-hidden {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;

}

/* --- Mobile Fix for Russian Language --- */
/* Russian words are longer, leading to overflow on small screens */
@media (max-width: 768px) {
    html[lang="ru"] .hero-content h1 {
        font-size: 1.8rem !important;
        /* Reduced from 2.5rem */
        line-height: 1.2;
        letter-spacing: 2px;
    }

    html[lang="ru"] .sub-description {
        font-size: 0.95rem;
        /* Slightly smaller */
        padding: 0 10px;
    }

    html[lang="ru"] .slogan {
        font-size: 1.2rem;
    }

    /* Fix Feature Section Title Overflow "ВОЗЬМИТЕ..." */
    html[lang="ru"] .section-title {
        font-size: 2rem !important;
        /* Reduced from 3.5rem to fit long words */
        word-wrap: break-word;
    }
}

/* --- General Mobile UX Improvements --- */
@media (max-width: 768px) {

    /* Center text for About and Contact sections as requested */
    .about-section,
    .contact-section {
        text-align: center !important;
    }

    .about-section p,
    .contact-section p,
    .contact-section .section-title,
    .about-section .section-title {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
    }

    /* Fix "Legal" and "Security" sub-headings in About section */
    .about-section h4 {
        display: block !important;
        /* Override inline-block */
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        /* Ensure full width for centering */
    }

    /* Optimize Steam CTA Button for Russian (Long text "СКАЧАТЬ СЕЙЧАС") */
    /* Prevents double-line button by shrinking text and padding */
    html[lang="ru"] .steam-btn {
        font-size: 0.9rem !important;
        padding: 15px 25px !important;
        /* Reduce horizontal padding */
        white-space: nowrap;
        /* Force single line if possible */
    }

    /* Ensure form inputs generally keep readable text alignment (optional, but good UX) */
    /* Usually inputs are distinct, but let's ensure labels follow suit if exist */
}

/* Section Header - "OYUNUN KONTROLÜNÜ ELİNE AL" */
.section-header {
    text-align: center;
    padding: 80px 20px 30px;
    /* Reduced bottom padding to bring separator closer */
    margin: 0 auto;
    max-width: 1200px;
    opacity: 1 !important;
    /* Force visibility - no reveal animation */
    visibility: visible !important;
    display: block !important;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    /* Responsive font size */
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
    color: #fff;
}

@media (max-width: 768px) {
    .section-header {
        padding: 60px 15px 40px;
        /* Reduced padding on mobile */
    }
}

/* Feature Separator Line */
.feature-separator {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    margin: 10px auto 40px;
    /* Minimal top margin - very close to title */
    max-width: 800px;
    opacity: 0.5;
}

/* Mobile Video Pause Button */
/* Ensure video wrapper is a positioning context */
.video-position-wrapper {
    position: relative !important;
    /* Critical to keep button inside */
    display: block;
    width: 100%;
    height: 100%;
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(255, 215, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.custom-pause-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -40px;
    /* Moved closer to video */
    width: 32px;
    /* Smaller size */
    height: 32px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0;
    transition: all .2s ease;
    animation: pulse-gold 2s infinite;
    z-index: 10;
}

.custom-pause-btn svg {
    width: 14px;
    /* Proportional icon size for 32px button */
    height: 14px;
    stroke: var(--accent-gold);
    fill: none;
}

.custom-pause-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

.custom-pause-btn:active {
    transform: translateX(-50%) scale(0.9);
    /* maintain center on click */
}

/* Ensure video wrapper is relative for absolute positioning */
.sidebar-video-wrapper {
    position: relative;
    display: inline-block;
}

.video-pause-btn:active {
    background: var(--accent-gold) !important;
    transform: scale(0.95);
}

/* Desktop Video Overlay Centering Fix */
.video-hint-overlay {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}



.video-pause-btn svg {
    color: var(--accent-gold) !important;
    width: 24px;
    height: 24px;
}

.video-pause-btn:active svg {
    color: #000 !important;
}

/* Ensure video wrapper is positioned for absolute children */
.video-position-wrapper {
    position: relative;
}

/* Smooth transitions for video overlay */
.video-hint-overlay {
    transition: opacity 0.3s ease;
}



/* Video Overlay Text - Mobile vs Desktop */
.mobile-play {
    display: none;
}

.desktop-play {
    display: inline;
}

@media (max-width: 768px) {
    .mobile-play {
        display: inline;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .desktop-play {
        display: none;
    }
}

/* --- Mobile Collage Animations --- */
/* Triggered by JS IntersectionObserver via .mobile-animate class */

@media (max-width: 968px) {

    /* Utility Collage Mobile Animation */
    .collage-container.mobile-animate .collage-wrapper .collage-img.img-1 {
        transform: translateX(-35%) scale(0.95) rotate(-5deg);
        opacity: 1;
        z-index: 4;
    }

    .collage-container.mobile-animate .collage-wrapper .collage-img.img-2 {
        transform: translateY(-20px) scale(0.95);
        z-index: 3;
    }

    .collage-container.mobile-animate .collage-wrapper .collage-img.img-3 {
        transform: translateX(35%) scale(0.95) rotate(5deg);
        z-index: 4;
    }

    /* Smart Tuner Mobile Animation */
    .collage-container.mobile-animate .tuner-collage .collage-img.tuner-1 {
        transform: translateX(-20%) scale(1.02);
    }

    .collage-container.mobile-animate .tuner-collage .collage-img.tuner-2 {
        transform: translateX(30%) translateY(20%) scale(0.95) rotate(-3deg);
        z-index: 4;
    }

    /* Pro Player Mobile Animation */
    .collage-container.mobile-animate .pro-collage .collage-img.pro-1 {
        transform: translateX(-30%) scale(1.05);
        opacity: 1;
        z-index: 4;
    }

    .collage-container.mobile-animate .pro-collage .collage-img.pro-2 {
        transform: translateX(35%) translateY(-35%) rotate(5deg);
    }

    .collage-container.mobile-animate .pro-collage .collage-img.pro-3 {
        transform: translateX(35%) translateY(35%) rotate(-5deg);
    }
}

/* Dual Collage Mobile Animation (Crosshair, Viewmodel, FPS Boost) */
.collage-container.mobile-animate .dual-collage .collage-img.main-img {
    transform: translateX(-15%) scale(1);
}

.collage-container.mobile-animate .dual-collage .collage-img.sec-img {
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* =========================================
   HYBRID TEXT SELECTION STRATEGY
   ========================================= */

/* Default: Allow selection (Browser Standard) */
body {
    -webkit-user-select: text;
    user-select: text;
}

/* APP-LIKE ELEMENTS: Disable Selection */
/* Prevents UI elements from feeling like a document */
.navbar,
.hero-section,
.hero-content,
.hero-title,
.hero-slogan,
.hero-description,
.section-title,
/* Slogans like "OYUNUN KONTROLU..." */
.feature-panel-title,
/* Headers like "Utility Rehberi" */
.feature-card,
.footer,
button,
.btn,
.submit-btn,
.nav-menu-wrapper,
.scroll-to-top,
img {
    -webkit-user-select: none !important;
    user-select: none !important;
    -webkit-user-drag: none;
    /* Prevent image dragging */
}

/* CONTENT AREAS: Enable Selection */
/* Allows users to copy information they might need */
.about-section,
.about-content,
/* .contact-text,  <-- REMOVED: Now managed more granularly */
.contact-form input,
.contact-form textarea,
.contact-form select {
    -webkit-user-select: text !important;
    user-select: text !important;
    cursor: auto;
}

/* Ensure buttons and specific descriptions remain unselectable */
.contact-form button,
.contact-text p {
    /* "Öneri veya şikayet..." text */
    -webkit-user-select: none !important;
    user-select: none !important;
}