* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Bricolage Grotesque', sans-serif;
            font-optical-sizing: auto;
            overflow-x: hidden;
            background: #000;
            color: #fff;
            height: 100vh;
            width: 100vw;
        }
        
        /* Background Slideshow */
        .slideshow-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            background-size: cover;
            background-position: center;
            transition: opacity 1.5s ease-in-out;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slideshow-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }
        
        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: clamp(15px, 2vh, 25px) clamp(20px, 5vw, 50px);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: transparent;
        }
        
        .logo {
            font-size: clamp(11px, 3vw, 22px);
            font-weight: 500;
            color: #fff;
           line-height: 1.5;
            letter-spacing: 2px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(15px);
            padding: clamp(10px, 1.5vh, 15px) clamp(20px, 3vw, 30px);
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .logo span {
            font-weight: 300;
            font-size: clamp(10px, 1.5vw, 11px);
            display: block;
            margin-top: -3px;
            letter-spacing: 3px;
            opacity: 0.8;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: clamp(8px, 1.5vw, 15px);
            align-items: center;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(15px);
            padding: clamp(10px, 1.5vh, 15px) clamp(15px, 2vw, 20px);
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: clamp(12px, 1.8vw, 16px);
            transition: all 0.3s ease;
            position: relative;
            padding: clamp(6px, 1vh, 8px) clamp(12px, 2vw, 20px);
            border-radius: 25px;
        }
        
        .nav-links a:hover {
            color: #018eef;
            background: rgba(1, 142, 239, 0.2);
        }
        
        .nav-links a::after {
            display: none;
        }
        
        .user-info-nav {
            display: none;
            align-items: center;
            gap: 12px;
            padding: 6px 15px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            margin-left: clamp(8px, 1.5vw, 15px);
        }
        
        .credit-badge-nav {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 4px 12px;
            background: linear-gradient(135deg, #004799 0%, #018eef 100%);
            border-radius: 20px;
            font-size: clamp(11px, 1.5vw, 13px);
            font-weight: 700;
        }
        
        .credit-badge-nav i {
            font-size: clamp(12px, 1.8vw, 14px);
            color: #ffeb3b;
        }
        
        .plan-badge-nav {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 4px 12px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            font-size: clamp(10px, 1.5vw, 12px);
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .plan-badge-nav i {
            font-size: clamp(11px, 1.5vw, 13px);
            color: #018eef;
        }
        
        .profile-icon {
            display: none;
            width: clamp(35px, 5vw, 40px);
            height: clamp(35px, 5vw, 40px);
            background: linear-gradient(135deg, #004799 0%, #018eef 100%);
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 600;
            font-size: clamp(14px, 2vw, 16px);
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            margin-left: clamp(8px, 1.5vw, 15px);
        }
        
        .profile-icon:hover {
            transform: scale(1.1);
            box-shadow: 0 5px 20px rgba(1, 142, 239, 0.4);
        }
        
        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            font-size: clamp(20px, 4vw, 24px);
            cursor: pointer;
            padding: 8px 12px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .mobile-menu-toggle:hover {
            background: rgba(1, 142, 239, 0.2);
            border-color: #018eef;
        }
        
        /* Mobile Menu Close Button */
        .mobile-menu-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            padding: 10px 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
            display: none;
        }
        
        .mobile-menu-close:hover {
            background: rgba(255, 0, 0, 0.3);
            border-color: #ff0000;
        }
        
        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .mobile-menu-overlay.active {
            display: block;
            opacity: 1;
        }
        
        /* Hero Content */
        .hero-content {
            position: fixed;
            top: 65%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 10;
            width: 90%;
            max-width: 1000px;
            padding: 0 clamp(15px, 3vw, 30px);
        }
        
        .hero-content h1 {
            font-size: clamp(2.5rem, 7vw, 6rem);
            font-weight: 900;
            margin-bottom: clamp(15px, 2vh, 25px);
            background: linear-gradient(135deg, #fff 0%, #018eef 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: clamp(2px, 0.5vw, 5px);
            line-height: 1.1;
        }
        
        .hero-content p {
            font-size: clamp(0.85rem, 1.8vw, 1.15rem);
            font-weight: 400;
            letter-spacing: 0.5px;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: clamp(20px, 3vh, 35px);
            line-height: 1.7;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-content p strong {
            display: block;
            margin-top: clamp(12px, 2vh, 20px);
            margin-bottom: clamp(8px, 1.5vh, 15px);
            font-weight: 600;
            color: #018eef;
        }
        
        /* Hero Buttons */
        .hero-buttons {
            display: flex;
            gap: clamp(12px, 2vw, 20px);
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            margin-top: clamp(25px, 3vh, 40px);
        }
        
        .hero-btn {
            padding: clamp(10px, 1.5vh, 15px) clamp(25px, 4vw, 40px);
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            color: #fff;
            font-size: clamp(13px, 1.8vw, 16px);
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            white-space: nowrap;
        }
        
        .hero-btn:hover {
            background: rgba(1, 142, 239, 0.3);
            border-color: #018eef;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(1, 142, 239, 0.3);
        }
        
        .hero-btn.primary {
            background: rgba(0, 71, 153, 0.3);
            border-color: #004799;
        }
        
        .hero-btn.primary:hover {
            background: rgba(1, 142, 239, 0.4);
            border-color: #018eef;
        }
        
        .hero-btn.sparkle-it {
            background: linear-gradient(135deg, #004799 0%, #018eef 100%);
            border: 2px solid #018eef;
            padding: clamp(12px, 2vh, 18px) clamp(40px, 6vw, 60px);
            font-size: clamp(16px, 2.5vw, 20px);
            font-weight: 700;
            min-width: 280px;
            box-shadow: 0 10px 40px rgba(1, 142, 239, 0.3);
        }
        
        .hero-btn.sparkle-it:hover {
            background: linear-gradient(135deg, #018eef 0%, #004799 100%);
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(1, 142, 239, 0.5);
        }
        
        /* Footer */
        footer {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: clamp(15px, 2.5vh, 30px) clamp(20px, 5vw, 50px);
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 500;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            flex-wrap: wrap;
            gap: clamp(10px, 2vh, 20px);
        }
        
        .footer-links {
            display: flex;
            gap: clamp(15px, 3vw, 30px);
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: clamp(11px, 1.5vw, 14px);
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #018eef;
        }
        
        .footer-social {
            display: flex;
            gap: clamp(12px, 2vw, 20px);
        }
        
        .footer-social a {
            width: clamp(32px, 5vw, 40px);
            height: clamp(32px, 5vw, 40px);
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: clamp(12px, 2vw, 16px);
        }
        
        .footer-social a:hover {
            background: #018eef;
            transform: translateY(-3px);
        }
        
        .footer-copyright {
            color: rgba(255, 255, 255, 0.5);
            font-size: clamp(10px, 1.5vw, 14px);
        }
        
        /* Auth Modal */
        .auth-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .auth-modal.active {
            display: flex;
            opacity: 1;
        }
        
        .auth-modal-content {
            background: rgba(20, 20, 20, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: clamp(30px, 5vw, 50px);
            width: 90%;
            max-width: 450px;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }
        
        .auth-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 20px;
        }
        
        .auth-close:hover {
            background: rgba(255, 0, 0, 0.3);
            border-color: #ff0000;
        }
        
        .auth-title {
            font-size: clamp(24px, 4vw, 32px);
            font-weight: 700;
            margin-bottom: 10px;
            background: linear-gradient(135deg, #fff 0%, #018eef 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .auth-subtitle {
            font-size: clamp(14px, 2vw, 16px);
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 30px;
        }
        
        .auth-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .auth-tab {
            flex: 1;
            padding: 12px 20px;
            background: transparent;
            border: none;
            color: rgba(255, 255, 255, 0.6);
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
        }
        
        .auth-tab.active {
            color: #018eef;
            border-bottom-color: #018eef;
        }
        
        .auth-form {
            display: none;
        }
        
        .auth-form.active {
            display: block;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .form-group input {
            width: 100%;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            color: #fff;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus {
            outline: none;
            border-color: #018eef;
            background: rgba(255, 255, 255, 0.08);
        }
        
        .form-group input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
        
        .auth-submit {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #004799 0%, #018eef 100%);
            border: none;
            border-radius: 10px;
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }
        
        .auth-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(1, 142, 239, 0.4);
        }
        
        .auth-divider {
            display: flex;
            align-items: center;
            margin: 25px 0;
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
        }
        
        .auth-divider::before,
        .auth-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
        }
        
        .auth-divider span {
            padding: 0 15px;
        }
        
        .google-signin {
            width: 100%;
            padding: 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .google-signin:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #fff;
        }
        
        .error-message {
            background: rgba(255, 0, 0, 0.2);
            border: 1px solid rgba(255, 0, 0, 0.4);
            color: #ff6b6b;
            padding: 10px 15px;
            border-radius: 8px;
            margin-bottom: 15px;
            font-size: 14px;
            display: none;
        }
        
        .error-message.show {
            display: block;
        }
        
        .success-message {
            background: rgba(0, 255, 0, 0.2);
            border: 1px solid rgba(0, 255, 0, 0.4);
            color: #51cf66;
            padding: 10px 15px;
            border-radius: 8px;
            margin-bottom: 15px;
            font-size: 14px;
            display: none;
        }
        
        .success-message.show {
            display: block;
        }
        
        /* Contact Modal */
        .contact-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .contact-modal.active {
            display: flex;
            opacity: 1;
        }
        
        .contact-modal-content {
            background: rgba(20, 20, 20, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: clamp(30px, 5vw, 50px);
            width: 90%;
            max-width: 600px;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            max-height: 90vh;
            overflow-y: auto;
        }
        
        .contact-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 20px;
        }
        
        .contact-close:hover {
            background: rgba(255, 0, 0, 0.3);
            border-color: #ff0000;
        }
        
        .contact-section {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 20px;
        }
        
        .contact-section h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #018eef;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .contact-item {
            display: block;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            padding: 10px;
            margin-bottom: 8px;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-size: 15px;
        }
        
        .contact-item:hover {
            background: rgba(1, 142, 239, 0.2);
            color: #018eef;
            transform: translateX(5px);
        }
        
        .contact-item i {
            width: 20px;
            margin-right: 10px;
        }
        
        .social-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }
        
        .social-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            text-decoration: none;
            color: #fff;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .social-link:hover {
            background: rgba(1, 142, 239, 0.2);
            border-color: #018eef;
            transform: translateY(-3px);
        }
        
        .social-link i {
            font-size: 24px;
        }
        
        .social-link span {
            font-size: 11px;
            font-weight: 500;
        }
        
        @media (max-width: 480px) {
            .social-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .navbar {
                padding: 15px 20px;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                background: rgba(0, 0, 0, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 80px 40px 40px;
                width: 280px;
                height: 100vh;
                transition: right 0.3s ease;
                gap: 20px;
                border-left: 1px solid rgba(255, 255, 255, 0.1);
                z-index: 1000;
                border-radius: 0;
                justify-content: flex-start;
                align-items: flex-start;
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links.active .mobile-menu-close {
                display: block;
            }
            
            .nav-links li {
                width: 100%;
            }
            
            .nav-links a {
                display: block;
                width: 100%;
                padding: 15px 20px;
                text-align: left;
                font-size: 18px;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .hero-content {
                width: 95%;
                padding: 0 15px;
                top: 60%;
            }
            
            .hero-content h1 {
                font-size: clamp(2rem, 9vw, 3rem);
                margin-bottom: 15px;
            }
            
            .hero-content p {
                font-size: clamp(0.75rem, 3.2vw, 0.95rem);
                margin-bottom: 20px;
            }
            
            .hero-buttons {
                flex-direction: row;
                gap: 10px;
                margin-top: 20px;
            }
            
            .hero-btn {
                padding: 10px 20px;
                font-size: clamp(12px, 3.2vw, 14px);
            }
            
            footer {
                padding: 15px 20px;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 12px;
            }
        }
        
        @media (max-width: 480px) {
            .hero-content {
                top: 60%;
            }
            
            .hero-content h1 {
                font-size: clamp(1.75rem, 11vw, 2.5rem);
            }
            
            .hero-content p {
                font-size: clamp(0.7rem, 3.8vw, 0.85rem);
            }
            
            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .hero-btn {
                width: 100%;
                max-width: 250px;
            }
        }