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

        body {
            font-family: 'Comic Sans MS', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #333;
            overflow-x: hidden;
        }

        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '⚔️';
            position: absolute;
            font-size: 20rem;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

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

        h1 {
            font-size: 3.5rem;
            color: white;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
            margin-bottom: 1rem;
            animation: slideDown 0.8s ease-out;
        }

        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .subtitle {
            font-size: 1.5rem;
            color: white;
            margin-bottom: 2rem;
            animation: slideDown 1s ease-out;
        }

        .cta-button {
            background: linear-gradient(45deg, #FF6B6B, #FFE66D);
            color: #333;
            padding: 1.2rem 3rem;
            font-size: 1.3rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
        }

        .quiz-section {
            background: white;
            padding: 4rem 2rem;
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .quiz-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            margin-bottom: 2rem;
            color: white;
        }

        .question {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            font-weight: bold;
        }

        .options {
            display: grid;
            gap: 1rem;
        }

        .option {
            background: white;
            color: #333;
            padding: 1.5rem;
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 3px solid transparent;
            font-size: 1.1rem;
        }

        .option:hover {
            transform: translateX(10px);
            border-color: #FFE66D;
            box-shadow: 0 5px 20px rgba(255,230,109,0.4);
        }

        .option.selected {
            background: linear-gradient(45deg, #FF6B6B, #FFE66D);
            color: white;
            font-weight: bold;
        }

        .progress-bar {
            background: rgba(255,255,255,0.3);
            height: 20px;
            border-radius: 10px;
            margin-bottom: 2rem;
            overflow: hidden;
        }

        .progress-fill {
            background: linear-gradient(90deg, #FF6B6B, #FFE66D);
            height: 100%;
            transition: width 0.5s ease;
            border-radius: 10px;
        }

        .result-card {
            background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
            color: white;
            margin-top: 2rem;
        }

        .score {
            font-size: 4rem;
            font-weight: bold;
            margin: 1rem 0;
        }

        .resources-section {
            background: linear-gradient(135deg, #FA8BFF 0%, #2BD2FF 90%);
            padding: 4rem 2rem;
            color: white;
        }

        .resource-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .resource-card {
            background: white;
            color: #333;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .resource-card:hover {
            transform: translateY(-10px);
        }

        .resource-card h3 {
            color: #667eea;
            margin-bottom: 1rem;
        }

        .badge {
            display: inline-block;
            background: linear-gradient(45deg, #FF6B6B, #FFE66D);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            margin: 0.5rem;
            font-weight: bold;
        }

        .hidden {
            display: none;
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 2rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .action-section {
            background: #1a1a2e;
            color: white;
            padding: 4rem 2rem;
            text-align: center;
        }

        .action-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .action-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 2rem;
            border-radius: 15px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .action-card:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(102,126,234,0.4);
        }

        .emoji {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .subtitle { font-size: 1.2rem; }
            .quiz-card { padding: 1.5rem; }
            .question { font-size: 1.3rem; }
        }