        body {
            background-color: #001b2e;
            color: #ffffff;
            overflow-x: hidden;
            font-family: 'Source Sans Pro', sans-serif;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
        }

        /* Hero Canvas Background */
        #hero-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            opacity: 0.35;
            pointer-events: none;
        }

        /* Scroll Reveal Animation */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Gradients & Glasses */
        .text-gradient {
            background: linear-gradient(to right, #d4af37, #fffde7, #d4af37);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% auto;
            animation: shine 5s linear infinite;
        }

        @keyframes shine {
            to { background-position: 200% center; }
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(212, 175, 55, 0.15);
            transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .glass-card:hover {
            border-color: rgba(212, 175, 55, 0.4);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
            transform: translateY(-4px);
        }

        /* Buttons */
        .btn-gold {
            background: linear-gradient(135deg, #d4af37 0%, #b5952f 100%);
            color: #001b2e;
            transition: all 0.3s ease;
        }
        
        .btn-gold:hover {
            box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
            transform: scale(1.03);
        }
        
        /* Organizer & Event Logos */
        .logo-box {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            transition: all 0.3s ease;
        }

        /* Navigation */
        #navbar {
            transition: all 0.4s ease;
        }
        #navbar.scrolled {
            background: rgba(0, 27, 46, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
            padding-top: 0.8rem;
            padding-bottom: 0.8rem;
        }
