        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background: #000;
            color: #fff;
            overflow-x: hidden;
        }
        
        /* New Header Design */
        .new-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .header-top {
            background: rgba(255, 255, 255, 0.05);
            padding: 8px 0;
            text-align: center;
            font-size: 13px;
            font-weight: 600;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
        }
        
        .header-main {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 50px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-icon {
            width: 40px;
            height: 40px;
            background: #fff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            color: #000;
            font-size: 20px;
        }
        
        .logo-text {
            font-size: 20px;
            font-weight: 900;
            letter-spacing: -0.5px;
            color: #fff;
            text-decoration: none;
        }
        
        .nav-center {
            display: flex;
            gap: 5px;
        }
        
        .nav-item {
            padding: 10px 20px;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s;
            border: 1px solid transparent;
        }
        
        .nav-item:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            border-color: rgba(255, 255, 255, 0.2);
        }
        
        .nav-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .btn-login {
            padding: 10px 20px;
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .btn-login:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .btn-register {
            padding: 10px 25px;
            background: #fff;
            color: #000;
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            border-radius: 8px;
            transition: all 0.3s;
            border: 2px solid #fff;
        }
        
        .btn-register:hover {
            background: transparent;
            color: #fff;
        }
        
        .cart-icon {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .cart-icon:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        /* Hero Section with Animated Glow */
        .hero-new {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: #000;
            padding-top: 100px;
        }
        
        /* Animated Glowing Circle */
        .glow-circle {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            z-index: 1;
        }
        
        .glow-orb {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(200,200,200,0.4) 30%, rgba(100,100,100,0.2) 60%, transparent 100%);
            border-radius: 50%;
            animation: pulse 4s ease-in-out infinite;
            filter: blur(40px);
        }
        
        .glow-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 500px;
            height: 500px;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            animation: rotate 20s linear infinite;
        }
        
        .glow-ring::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.1);
            animation: pulse 3s ease-in-out infinite;
        }
        
        /* Particles */
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255,255,255,0.6);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }
        
        .particle:nth-child(1) { top: 20%; left: 30%; animation-delay: 0s; }
        .particle:nth-child(2) { top: 40%; left: 60%; animation-delay: 1s; }
        .particle:nth-child(3) { top: 60%; left: 20%; animation-delay: 2s; }
        .particle:nth-child(4) { top: 30%; left: 80%; animation-delay: 1.5s; }
        .particle:nth-child(5) { top: 70%; left: 50%; animation-delay: 0.5s; }
        .particle:nth-child(6) { top: 50%; left: 40%; animation-delay: 2.5s; }
        
        @keyframes pulse {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.1);
                opacity: 0.8;
            }
        }
        
        @keyframes rotate {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
                opacity: 0.3;
            }
            50% {
                transform: translateY(-30px);
                opacity: 1;
            }
        }
        
        /* Hero Content */
        .hero-content-new {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 900px;
            padding: 0 20px;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
        }
        
        .hero-title {
            font-size: 48px;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 25px;
            letter-spacing: -1px;
            background: linear-gradient(to bottom, #fff 0%, #999 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            white-space: nowrap;
        }
        
        .hero-subtitle {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 40px;
            font-weight: 400;
            line-height: 1.6;
        }
        
        .hero-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-hero-primary {
            padding: 16px 40px;
            background: #fff;
            color: #000;
            text-decoration: none;
            font-size: 16px;
            font-weight: 700;
            border-radius: 10px;
            transition: all 0.3s;
            border: 2px solid #fff;
            display: inline-block;
        }
        
        .btn-hero-primary:hover {
            background: transparent;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255,255,255,0.2);
        }
        
        .btn-hero-secondary {
            padding: 16px 40px;
            background: transparent;
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 700;
            border-radius: 10px;
            transition: all 0.3s;
            border: 2px solid rgba(255, 255, 255, 0.3);
            display: inline-block;
        }
        
        .btn-hero-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #fff;
            transform: translateY(-2px);
        }
        
        /* Info Section */
        .info-section {
            background: #000;
            padding: 40px;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .info-section h2 {
            font-size: 32px;
            margin-bottom: 20px;
        }
        
        .info-section p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            max-width: 800px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }
        
        .back-btn {
            padding: 12px 30px;
            background: #fff;
            color: #000;
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            border-radius: 8px;
            display: inline-block;
            transition: all 0.3s;
        }
        
        .back-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255,255,255,0.2);
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .header-main {
                padding: 15px 20px;
            }
            
            .nav-center {
                display: none;
            }
            
            .hero-title {
                font-size: 28px;
                white-space: normal;
            }
            
            .hero-subtitle {
                font-size: 16px;
            }
            
            .glow-orb {
                width: 300px;
                height: 300px;
            }
            
            .glow-ring {
                width: 350px;
                height: 350px;
            }
        }
