   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root { 
            --embrace-purple: #AA006E;
            --embrace-yellow: #FFC800;
            --embrace-light-blue: #00aaaa;
            --background-light: #f8fafc;
            --text-dark: #1f2937;
            --success-green: #10b981; 
            --error-red: #ef4444;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, var(--background-light) 0%, #e2e8f0 100%);
            min-height: 100vh;
            color: var(--text-dark);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .header {
            text-align: center;
            margin-bottom: 40px;
            background: white;
            padding: 40px 20px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, var(--embrace-purple), var(--embrace-light-blue));
            opacity: 0.05;
            z-index: 0;
        }

        .header-content {
            position: relative;
            z-index: 1;
        }

        .main-title {
            font-size: 2.5rem;
            color: var(--embrace-purple);
            margin-bottom: 15px;
            font-weight: bold;
        }

        .subtitle {
            font-size: 1.2rem;
            color: var(--text-dark);
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .description {
            background: rgba(255,255,255,0.9);
            padding: 25px;
            margin: 30px 0;
            border-radius: 15px;
            border-left: 5px solid var(--embrace-purple);
            line-height: 1.7;
            text-align: left;
        }

        .map-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .region-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 3px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .region-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(248,250,252,0.1), transparent);
            transition: left 0.5s;
        }
    
        .region-card:hover::before {
            left: 100%;
        }

        .region-card:hover {
            transform: translateY(-5px);
            border-color: var(--embrace-light-blue);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .region-title {
            font-size: 1.4rem;
            font-weight: bold;
            color: var(--embrace-purple);
            margin-bottom: 10px;
        }

        .region-countries {
            color: var(--text-dark);
            font-style: italic;
        }

        .quiz-container {
            display: none;
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .quiz-header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid #e5e7eb;
        }

        .quiz-title {
            font-size: 2rem;
            color: var(--embrace-purple);
            margin-bottom: 10px;
        }

        .progress-container {
            margin: 20px 0;
            text-align: center;
        }

        .stars-progress {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
            flex-wrap: wrap;
        }

        .star {
            width: 30px;
            height: 30px;
            font-size: 24px;
            transition: all 0.3s ease;
            cursor: default;
        }

        .star.earned {
            color: var(--embrace-yellow);
            transform: scale(1.2);
            animation: starEarn 0.5s ease;
        }

        .star.empty {
            color: #d1d5db;
        }

        @keyframes starEarn {
            0% { transform: scale(1); }
            50% { transform: scale(1.5) rotate(180deg); }
            100% { transform: scale(1.2); }
        }

        .question-card {
            display: none;
            background: #f8fafc;
            border-radius: 15px;
            padding: 30px;
            margin: 20px 0;
            border-left: 5px solid var(--embrace-purple);
        }

        .question-card.active {
            display: block;
        }

        .question-number {
            color: var(--embrace-purple);
            font-weight: bold;
            margin-bottom: 15px;
        }

        .question-text {
            font-size: 1.2rem;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .options {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .option {
            background: white;
            padding: 15px 20px;
            border-radius: 10px;
            border: 2px solid #e5e7eb;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .option:hover {
            border-color: var(--embrace-light-blue);
            background: #f0f9ff;
        }

        .option.selected {
            border-color: var(--embrace-purple);
            background: #dbeafe;
        }

        .option.correct {
            border-color: var(--success-green);
            background: #d1fae5;
        }

        .option.incorrect {
            border-color: var(--error-red);
            background: #fee2e2;
        }

        input[type="checkbox"], input[type="radio"] {
            width: 18px;
            height: 18px;
            accent-color: var(--embrace-purple);
        }

        .quiz-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 30px;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 12px 25px;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: bold;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary {
            background: var(--embrace-purple);
            color: white;
        }

        .btn-primary:hover {
            background: #1e40af;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: #6b7280;
            color: white;
        }

        .btn-secondary:hover {
            background: #4b5563;
        }

        .feedback {
            display: none;
            margin-top: 20px;
            padding: 20px;
            border-radius: 10px;
            background: #f0f9ff;
            border-left: 5px solid var(--embrace-light-blue);
        }

        .feedback.show {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .results {
            display: none;
            text-align: center;
            padding: 40px 20px;
        }

        .results.show {
            display: block;
        }

			
			
			
			
        .results.show {
            
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
			
			
        .final-score {
            font-size: 3rem;
            color: var(--embrace-purple);
            margin: 20px 0;
        }

        .eu-flag-stars {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 30px 0;
            flex-wrap: wrap;
            gap: 15px;
        }

        .flag-star {
            font-size: 40px;
            transition: all 0.3s ease;
        }

        .social-sharing {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .back-btn {
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 100;
            display: none;
        }

        .back-btn.show {
            display: block;
        }

        @media (max-width: 768px) {
            .main-title {
                font-size: 2rem;
            }
            
            .map-container {
                grid-template-columns: 1fr;
            }
            
            .quiz-actions {
                flex-direction: column;
                align-items: stretch;
            }
            
            .btn {
                justify-content: center;
            }
            
            .social-sharing {
                flex-direction: column;
                align-items: center;
            }
        }
			
			
			 

        .btn {
            padding: 12px 20px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        /* Platform-specific colors */
        .btn-linkedin {
            background: #0077B5;
            color: white;
        }

        .btn-facebook {
            background: #1877F2;
            color: white;
        }

        .btn-twitter {
            background: #1DA1F2;
            color: white;
        }

        .btn-whatsapp {
            background: #25D366;
            color: white;
        }

        .btn-telegram {
            background: #0088CC;
            color: white;
        }

        .btn-reddit {
            background: #FF4500;
            color: white;
        }

        .btn-pinterest {
            background: #BD081C;
            color: white;
        }

        .btn-tumblr {
            background: #00CF35;
            color: white;
        }

        .btn-email {
            background: #6B7280;
            color: white;
        }

        .btn-copy {
            background: var(--embrace-purple);
            color: white;
        }

        .btn-discord {
            background: #5865F2;
            color: white;
        }

        .btn-mastodon {
            background: #6364FF;
            color: white;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .social-sharing {
                grid-template-columns: 1fr;
            }
        }
