
        :root {
            --color-bg: #1a1412;
            --color-surface: #2d2420;
            --color-text: #f5efe6;
            --color-primary: #c4956a;
            --color-secondary: #8b4d6b;
        }

        body {
            background-color: var(--color-bg);
            color: var(--color-text);
            font-family: 'Outfit', sans-serif;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            margin: 0;
            padding: 20px;
        }

        .font-display { font-family: 'Cormorant Garamond', serif; }

        /* --- THE GLOW & ZOOM CARD --- */
        .section-content {
            background: var(--color-surface);
            border-radius: 24px;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(196, 149, 106, 0.15);
            max-width: 450px;
            width: 100%;
            text-align: center;
            
            /* The Smooth Transition */
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        
        /* THE HOVER EFFECT: ZOOM + GLOW */
        .section-content:hover {
            transform: translateY(-12px) scale(1.06); /* Lifts and Zooms */
            border-color: var(--color-primary);
            box-shadow: 0 0 40px 10px rgba(196, 149, 106, 0.4); /* The Golden Glow */
            cursor: pointer;
        }

        /* Shimmer Effect on Hover */
        .section-content::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.05), transparent);
            transform: rotate(45deg);
            transition: 0.8s;
            pointer-events: none;
        }

        .section-content:hover::after {
            left: 100%;
            top: 100%;
        }

        /* --- UI ELEMENTS --- */
        .qr-frame {
            background: #fff;
            padding: 10px;
            border-radius: 16px;
            display: inline-block;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .qr-image {
            width: 180px;
            height: 180px;
            object-fit: contain;
            display: block;
        }

        .code-box {
            background: rgba(0,0,0,0.3);
            border: 1px dashed var(--color-primary);
            padding: 1rem;
            border-radius: 12px;
            margin: 1.5rem 0;
            position: relative;
            transition: background 0.3s;
        }

        .code-box:hover {
            background: rgba(196, 149, 106, 0.1);
        }

        .quiz-code {
            font-size: 2.2rem;
            letter-spacing: 5px;
            color: var(--color-primary);
            font-weight: 700;
        }

        .btn-launch {
            background: linear-gradient(135deg, var(--color-primary), #e2b38a);
            color: var(--color-bg);
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: transform 0.3s ease;
        }

        .btn-launch:hover {
            transform: scale(1.05);
            filter: brightness(1.1);
        }

        .footer-link {
            display: inline-block;
            margin-top: 2rem;
            opacity: 0.5;
            text-decoration: none;
            font-size: 0.9rem;
            transition: 0.3s;
        }

        .footer-link:hover { opacity: 1; color: var(--color-primary); }
    