/* ==================== INFO SCHWEIZ STYLES ==================== */

.schweiz-content {
    max-width: 900px;
    margin: 0 auto;
}

.info-section {
    background: white;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.info-section h3 {
    color: #d52b1e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-section ul {
    list-style: none;
    padding-left: 0;
}

.info-section ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.info-section ul li:before {
    content: "•";
    color: #d52b1e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.info-section ol {
    padding-left: 1.5rem;
}

.info-section ol li {
    padding: 0.5rem 0;
}

/* Kantone Grid */
.kantone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.kanton-card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.2s;
}

.kanton-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.kanton-abk {
    background: #d52b1e;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0 auto 0.5rem;
}

.kanton-card h4 {
    color: #333;
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.kanton-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Quiz Styles */
.quiz-progress {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.quiz-progress p {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.quiz-question {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.quiz-question h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

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

.quiz-option {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}

.quiz-option:hover:not(:disabled) {
    background: #e9ecef;
    border-color: #d52b1e;
    transform: translateX(5px);
}

.quiz-option:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.quiz-option.correct-answer {
    background: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.quiz-option.wrong-answer {
    background: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

.quiz-feedback {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
}

.quiz-feedback.correct {
    background: #d4edda;
    border-left: 4px solid #28a745;
    color: #155724;
}

.quiz-feedback.wrong {
    background: #f8d7da;
    border-left: 4px solid #dc3545;
    color: #721c24;
}

.quiz-results {
    background: white;
    padding: 3rem 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

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

.quiz-results h2 {
    color: #333;
    margin-bottom: 2rem;
}

.result-score {
    margin: 2rem 0;
}

.score-circle {
    display: inline-block;
    background: linear-gradient(135deg, #d52b1e 0%, #a02318 100%);
    color: white;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(213, 43, 30, 0.3);
}

.score-number {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
}

.score-total {
    font-size: 1.2rem;
    opacity: 0.9;
}

.score-percentage {
    font-size: 2rem;
    color: #d52b1e;
    font-weight: bold;
    margin-top: 1rem;
}

.result-message {
    font-size: 1.2rem;
    color: #666;
    margin: 2rem 0;
}

.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background: #d52b1e;
    color: white;
}

.btn-primary:hover {
    background: #a02318;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.back-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.2s;
}

.back-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .kantone-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .quiz-question {
        padding: 1.5rem;
    }
    
    .quiz-results {
        padding: 2rem 1rem;
    }
    
    .score-circle {
        width: 120px;
        height: 120px;
    }
    
    .score-number {
        font-size: 2.5rem;
    }
}
