 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Space Grotesk", sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            max-width: 600px;
            width: 100%;
            padding: 40px;
        }

        .header {
            text-align: center;
            margin-bottom: 30px;
        }

        .header h1 {
            font-size: 28px;
            margin-bottom: 15px;
            color: #1f2937;
        }

        .pill {
            display: inline-block;
            background: #e5e7eb;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px;
            color: #4b5563;
            margin: 5px;
        }

        .language-pill {
            background: #dbeafe;
            color: #1e40af;
        }

        .start-section,
        #quizContent {
            animation: fadeIn 0.3s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .start-row {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        select,
        input[type="text"],
        input[type="email"] {
            flex: 1;
            min-width: 150px;
            padding: 12px;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            font-family: "Space Grotesk", sans-serif;
            font-size: 14px;
            transition: border-color 0.2s;
        }

        select:focus,
        input[type="text"]:focus,
        input[type="email"]:focus {
            outline: none;
            border-color: #667eea;
        }

        .primary {
            padding: 12px 24px;
            background: #667eea;
            color: white;
            border: none;
            border-radius: 8px;
            font-family: "Space Grotesk", sans-serif;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: background 0.2s;
        }

        .primary:hover:not(:disabled) {
            background: #5568d3;
        }

        .primary:disabled {
            background: #cbd5e1;
            cursor: not-allowed;
        }

        .email-status {
            font-size: 13px;
            color: #6b7280;
            margin-top: 10px;
            text-align: center;
        }

        #question {
            font-size: 18px;
            font-weight: 600;
            color: #1f2937;
            margin: 20px 0;
            line-height: 1.6;
        }

        .progress {
            font-size: 13px;
            color: #6b7280;
            text-align: center;
            margin-bottom: 15px;
        }

        #options {
            list-style: none;
            margin: 25px 0;
        }

        #options li {
            margin-bottom: 12px;
        }

        .option {
            width: 100%;
            padding: 15px;
            background: #f9fafb;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            text-align: left;
            cursor: pointer;
            font-family: "Space Grotesk", sans-serif;
            font-size: 14px;
            transition: all 0.2s;
        }

        .option:hover {
            border-color: #667eea;
            background: #f3f4f6;
        }

        .option.selected {
            background: #dbeafe;
            border-color: #667eea;
            font-weight: 600;
            color: #1e40af;
        }

        .actions {
            display: flex;
            gap: 10px;
            margin-top: 30px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .score {
            width: 100%;
            text-align: center;
            padding: 15px;
            background: #f0fdf4;
            border-radius: 8px;
            color: #15803d;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .note {
            width: 100%;
            text-align: center;
            font-size: 13px;
            color: #6b7280;
            margin-bottom: 15px;
        }

        .email-collect {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            flex-wrap: wrap;
        }

        .email-collect input {
            flex: 1;
            min-width: 200px;
        }

        .hidden {
            display: none !important;
        }

        table {
            font-size: 13px;
            color: #374151;
        }

        table th {
            color: #1f2937;
            font-weight: 600;
        }

        table td {
            padding: 10px;
        }

        @media (max-width: 600px) {
            .card {
                padding: 25px;
            }

            .header h1 {
                font-size: 22px;
            }

            .start-row {
                flex-direction: column;
            }

            select,
            input[type="text"],
            input[type="email"] {
                min-width: unset;
            }

            .actions {
                flex-direction: column;
            }

            .primary {
                width: 100%;
            }