            :root {
                --bg-dark: #0f172a;
                --bg-light: #1e293b;
                --accent-gold: #fbbf24;
                --accent-glow: #f59e0b;
                --text-primary: #f8fafc;
                --text-secondary: #94a3b8;
                --glass-bg: rgba(255, 255, 255, 0.05);
                --glass-border: rgba(255, 255, 255, 0.1);
            }

            * {
                box-sizing: border-box;
                margin: 0;
                padding: 0;
            }

            body {
                font-family: 'Inter', sans-serif;
                background-color: var(--bg-dark);
                color: var(--text-primary);
                height: 100vh;
                overflow: hidden; /* Prevent scrollbars */
                display: flex;
                align-items: center;
                justify-content: center;
                position: relative;
            }

            /* Animated Background */
            .background-gradient {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: radial-gradient(circle at 50% 50%, #1e293b 0%, #0f172a 100%);
                z-index: -2;
            }

            /* Subtle Floating Orbs for depth */
            .orb {
                position: absolute;
                border-radius: 50%;
                filter: blur(80px);
                opacity: 0.4;
                z-index: -1;
                animation: float 10s infinite ease-in-out;
            }

            .orb-1 {
                width: 400px;
                height: 400px;
                background: #4338ca;
                top: -100px;
                left: -100px;
                animation-delay: 0s;
            }

            .orb-2 {
                width: 300px;
                height: 300px;
                background: #be123c;
                bottom: -50px;
                right: -50px;
                animation-delay: 5s;
            }

            /* Main Content Container */
            main {
                text-align: center;
                padding: 2rem;
                max-width: 800px;
                z-index: 10;
                opacity: 0;
                animation: fadeIn 1.5s ease-out forwards;
            }

            /* Quote Styling */
            .quote-section {
                margin-bottom: 3rem;
            }

            h2 {
                font-family: 'Playfair Display', serif;
                font-size: 2.5rem;
                font-weight: 600;
                font-style: italic;
                line-height: 1.4;
                color: var(--text-primary);
                text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
                margin-bottom: 1rem;
            }

            h3 {
                font-family: 'Inter', sans-serif;
                font-size: 1.1rem;
                font-weight: 300;
                color: var(--accent-gold);
                letter-spacing: 0.05em;
                text-transform: uppercase;
                margin-bottom: 2rem;
            }

            /* Divider */
            hr {
                background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
                border: none;
                height: 1px;
                margin: 0 auto 3rem auto;
                width: 60px;
                opacity: 0.6;
            }

            /* Start Button */
            #Start-btn {
                display: inline-block;
                text-decoration: none;
                background: var(--glass-bg);
                border: 1px solid var(--glass-border);
                color: var(--text-primary);
                padding: 1rem 2.5rem;
                font-size: 1rem;
                font-weight: 600;
                border-radius: 50px;
                cursor: pointer;
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
                transition: all 0.3s ease;
                text-transform: uppercase;
                letter-spacing: 1px;
                position: relative;
                overflow: hidden;
            }

            #Start-btn::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
                transition: 0.5s;
            }

            #Start-btn:hover {
                transform: translateY(-3px);
                box-shadow: 0 8px 25px rgba(251, 191, 36, 0.2);
                border-color: var(--accent-gold);
                color: var(--accent-gold);
            }

            #Start-btn:hover::before {
                left: 100%;
            }

            #Start-btn:active {
                transform: translateY(-1px);
            }

            /* Animations */
            @keyframes fadeIn {
                from { opacity: 0; transform: translateY(20px); }
                to { opacity: 1; transform: translateY(0); }
            }

            @keyframes float {
                0% { transform: translate(0, 0); }
                50% { transform: translate(20px, -20px); }
                100% { transform: translate(0, 0); }
            }

            /* Responsive */
            @media (max-width: 768px) {
                h2 { font-size: 1.8rem; }
                h3 { font-size: 0.9rem; }
                .welcome-text { font-size: 1.2rem; }
                main { padding: 1.5rem; }
                .orb-1 { width: 250px; height: 250px; }
                .orb-2 { width: 200px; height: 200px; }
            }
