        body {
            background-color: #000;
            color: #fff;
            overflow-x: hidden;
            font-family: 'Montserrat', sans-serif;
        }

        h1, h2, h3, h4, .miranda-text {
            font-family: 'Marcellus', serif;
        }

        /* HEADER LOGIC */
        .thin-header {
            height: 40px;
            background: #000;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .header-block {
            background-color: #76D2DB;
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 90%;
            max-width: 1200px;
            padding: 0 40px;
            height: 70px;
            position: relative;
            z-index: 100;
        }

        /* MARQUEE LOGIC */
        .marquee-container {
            overflow: hidden;
            white-space: nowrap;
            background: #000;
            color: #fff;
            padding: 15px 0;
            border-top: 1px solid #333;
            border-bottom: 1px solid #333;
        }
        .marquee-content {
            display: inline-block;
            animation: marquee 30s linear infinite;
        }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* HERO LAYOUT */
        .hero-video-full {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
        }
        .hero-split-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            display: flex;
            height: 250px;
            z-index: 20;
        }

        /* LINE ANIMATION SYSTEM */
        .animated-line {
            position: absolute;
            background-color: rgba(255,255,255,0.2);
            transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
        }
        .line-h { height: 1px; width: 0; }
        .line-v { width: 1px; height: 0; }
        .line-active.line-h { width: 100%; }
        .line-active.line-v { height: 100%; }

        /* VIDEO CARDS */
        .video-card {
            position: relative;
            aspect-ratio: 16/9;
            background: #111;
            overflow: hidden;
            border: 1px solid #333;
        }
        .video-card:hover video {
            transform: scale(1.05);
            opacity: 0.8;
        }
        .video-card video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.6s ease;
            opacity: 0.4;
        }

        /* ASYMMETRIC GRID */
        .asymmetric-item {
            padding: 40px;
            transition: transform 0.4s ease;
        }
        .asymmetric-item:hover {
            transform: translateY(-10px);
        }

        .view-section { display: none; }
        .view-section.active { display: block; }

        .btn-lime {
            background-color: #B4E50D;
            color: #605B51;
            padding: 10px 25px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        .btn-lime:hover {
            filter: brightness(1.1);
            color: #000;
        }

        /* ACCENT BLUE SECTION */
        .accent-blue-section {
            background-color: #2F2FE4;
            min-height: 800px;
            position: relative;
            overflow: hidden;
        }
