
        /* Reset with minimal namespace */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* Liberty Font Face */
        @font-face {
            font-family: "Liberty";
            src: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/907368/liberty.otf');
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #ffffff;
            color: #0a0a0a;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Top Announcement Bar */
        .vogue-announcement {
            background: #0a0a0a;
            color: #ffffff;
            padding: 8px 0;
            overflow: hidden;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            height: 35px;
            display: flex;
            align-items: center;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .vogue-announcement.hidden {
            transform: translateY(-100%);
        }
        
        .vogue-announcement-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            height: 100%;
            display: flex;
            align-items: center;
        }
        
        .vogue-running-text {
            position: absolute;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 40px;
            font-size: 10px;
            font-weight: 400;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            padding-left: 20px;
        }
        
        .vogue-star {
            color: #ffffff;
            font-size: 10px;
            opacity: 0.8;
            margin: 0 10px;
        }
        
        .vogue-highlight {
            color: #ffffff;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        /* Main Navbar */
        .vogue-navbar {
            background-color: #ffffff;
            position: fixed;
            top: 35px;
            width: 100%;
            z-index: 999;
            padding: 0 20px;
            border-bottom: 1px solid #eaeaea;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.98);
            height: 70px;
            display: flex;
            align-items: center;
        }
        
        .vogue-navbar.scrolled {
            top: 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
            border-bottom: 1px solid transparent;
        }
        
        .vogue-nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            height: 100%;
        }
        
        /* Desktop Navigation */
        .vogue-nav {
            display: flex;
            gap: 40px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .vogue-nav a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            font-size: 12px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding: 8px 0;
        }
        
        .vogue-nav a:hover {
            color: #0a0a0a;
        }
        
        .vogue-nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            background: #0a0a0a;
            bottom: 0;
            left: 0;
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .vogue-nav a:hover:after {
            width: 100%;
        }
        
        /* Logo */
        .vogue-logo {
            z-index: 1002;
            display: flex;
            align-items: center;
            height: 100%;
        }
        
        .vogue-logo img {
            width: 110px;
            height: auto;
            display: block;
        }
        
        /* Header icons */
        .vogue-icons {
            display: flex;
            gap: 15px;
            align-items: center;
            z-index: 1002;
        }
        
        .vogue-icon {
            background: none;
            border: none;
            color: #333;
            font-size: 20px;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
            padding: 8px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
        }
        
        .vogue-icon:hover {
            color: #0a0a0a;
            background: #f5f5f5;
            transform: translateY(-2px);
        }
        
        .vogue-cart-badge {
            position: absolute;
            top: 2px;
            right: 2px;
            background: #0a0a0a;
            color: white;
            font-size: 10px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }
        
        /* Hamburger Menu */
        .vogue-hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1002;
            width: 40px;
            height: 40px;
            position: relative;
            margin-left: 10px;
        }
        
        .vogue-hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background-color: #0a0a0a;
            position: absolute;
            left: 8px;
            transition: all 0.3s ease;
        }
        
        .vogue-hamburger span:nth-child(1) {
            top: 14px;
        }
        
        .vogue-hamburger span:nth-child(2) {
            top: 20px;
        }
        
        .vogue-hamburger span:nth-child(3) {
            top: 26px;
        }
        
        .vogue-hamburger.active span:nth-child(1) {
            transform: rotate(45deg);
            top: 20px;
        }
        
        .vogue-hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .vogue-hamburger.active span:nth-child(3) {
            transform: rotate(-45deg);
            top: 20px;
        }
        
        /* Mobile Menu Overlay */
        .vogue-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(10, 10, 10, 0.95);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }
        
        .vogue-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Mobile Menu */
        .vogue-mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            max-width: 320px;
            height: 100vh;
            background: #ffffff;
            z-index: 999;
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            overflow-y: auto;
        }
        
        .vogue-mobile-menu.active {
            transform: translateX(0);
        }
        
        .vogue-mobile-header {
            padding: 100px 25px 20px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .vogue-mobile-nav {
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        
        .vogue-mobile-nav a {
            color: #333;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            padding: 18px 0;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .vogue-mobile-nav a:hover {
            color: #0a0a0a;
            padding-left: 10px;
            background: #f9f9f9;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .vogue-nav {
                display: none;
            }
            
            .vogue-hamburger {
                display: block;
            }
            
            .vogue-icons {
                gap: 10px;
            }
        }
        
        @media (max-width: 768px) {
            .vogue-navbar {
                padding: 0 15px;
                height: 60px;
            }
            
            .vogue-running-text {
                font-size: 9px;
                gap: 25px;
            }
            
            .vogue-logo img {
                width: 100px;
            }
            
            .vogue-icons {
                gap: 8px;
            }
            
            .vogue-icon {
                font-size: 18px;
                padding: 6px;
                width: 36px;
                height: 36px;
            }
            
            .vogue-hamburger {
                width: 36px;
                height: 36px;
            }
            
            .vogue-hamburger span {
                width: 20px;
                left: 8px;
            }
        }
        
        @media (max-width: 576px) {
            .vogue-announcement {
                height: 35px;
            }
            
            .vogue-navbar {
                top: 35px;
                padding: 0 12px;
                height: 65px;
            }
            
            .vogue-logo img {
                width: 90px;
            }
            
            .vogue-icons {
                gap: 5px;
            }
            
            .vogue-icon {
                font-size: 16px;
                padding: 5px;
                width: 34px;
                height: 34px;
            }
            
            .vogue-mobile-menu {
                max-width: 280px;
            }
            
            .vogue-mobile-header {
                padding: 90px 20px 15px;
            }
            
            .vogue-mobile-nav a {
                font-size: 15px;
                padding: 16px 0;
            }
        }

        /* Hero Section */
        .hero-section {
            width: 100%;
            height: 100vh;
            position: relative;   
            top: 0;
            left: 0;
            z-index: 1;
            overflow: hidden;
        }
        
        /* Background Video */
        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            opacity: 1;
        }
        
        Hero Content
        .hero-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 3;
            text-align: center;
            display: flex;
            flex-flow: column;
            justify-content: center;
            align-items: center;
        }
        
        /* Animated Text Effect */
        .text {
            font-family: 'Liberty', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-weight: 100;
            font-size: 7rem;
            letter-spacing: -0.25em;
            display: flex;
            flex-flow: row;
            justify-content: center;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        .letter {
            color: #d9fdff;
            text-shadow: 0 0 2rem #ff0000;
            display: inline-block;
        }

        .letter-2 {
            transform: translate(-0.2rem, 1rem) rotate(10deg);
            animation: flicker 2s ease-in-out infinite alternate;
        }

        @keyframes flicker {
            0% {
                opacity: 1;
                transform: translate(-0.2rem, 1rem) rotate(10deg);
            }
            5% {
                opacity: 1;
                transform: translate(-0.2rem, 1rem) rotate(10deg);
            }
            5.5% {
                opacity: 0;
                transform: translate(-0.2rem, 1rem) rotate(10deg);
            }
            6% {
                opacity: 1;
                transform: translate(-0.2rem, 1rem) rotate(10deg);
            }
            6.5% {
                opacity: 1;
                transform: translate(-0.2rem, 1rem) rotate(10deg);
            }
            7% {
                opacity: 0;
                transform: translate(-0.2rem, 1rem) rotate(10deg);
            }
            8% {
                opacity: 1;
                transform: translate(-0.2rem, 1rem) rotate(10deg);
            }
            50% {
                opacity: 1;
                transform: translate(-0.2rem, 1rem) rotate(13deg);
            }
            100% {
                opacity: 1;
                transform: translate(-0.2rem, 1rem) rotate(10deg);
            }
        }

        /* Responsive text sizes */
        @media (max-width: 1200px) {
            .text {
                font-size: 6rem;
            }
        }
        
        @media (max-width: 992px) {
            .text {
                font-size: 5rem;
            }
        }
        
        @media (max-width: 768px) {
            .text {
                font-size: 4rem;
            }
        }
        
        @media (max-width: 576px) {
            .text {
                font-size: 3.5rem;
            }
        }
        
        @media (max-width: 400px) {
            .text {
                font-size: 2.8rem;
            }
        }
        
        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 4;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            color: #d9fdff;
            font-weight: 500;
            font-size: 0.9rem;
            cursor: pointer;
            text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
        }
        
        .scroll-line {
            width: 1px;
            height: 50px;
            background: linear-gradient(to bottom, #00f0ff, transparent);
            animation: scrollLine 2s ease-in-out infinite;
        }

        @keyframes scrollLine {
            0%, 100% {
                height: 30px;
                opacity: 0.5;
            }
            50% {
                height: 50px;
                opacity: 1;
            }
        }
        
        /* Content Section */
        .content-section {
            position: relative;
            z-index: 2;
            background: #ffffff;
            margin-top: 100vh;
            padding-top: 80px;
        }

        
    