/* Swisslify v2.0.1 - Swiss Classic Theme */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #DC0018 0%, #A50014 100%);
    min-height: 100vh;
    padding: 20px;
}

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

.header {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.header h1 {
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.subtitle {
    color: rgba(255,255,255,0.95);
    font-size: 16px;
    font-weight: 400;
}

.build-info {
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    margin-top: 5px;
}

.card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    padding: 30px;
    margin-bottom: 20px;
}

.btn {
    width: 100%;
    padding: 16px;
    background: #DC0018;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(220, 0, 24, 0.3);
}

.btn:hover {
    background: #B50015;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(220, 0, 24, 0.4);
}

.btn:active {
    transform: translateY(0);
}

select {
    width: 100%;
    padding: 10px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: border-color 0.2s;
}

select:hover {
    border-color: #DC0018;
}

select:focus {
    outline: none;
    border-color: #DC0018;
}

.option {
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.option:hover {
    border-color: #DC0018;
    background: #FFF5F5;
}

.option.selected {
    border-color: #DC0018;
    background: #FEE2E2;
}

.option.correct {
    border-color: #10B981;
    background: #D1FAE5;
}

.option.wrong {
    border-color: #EF4444;
    background: #FEE2E2;
}

.image-warning {
    background: #FEF3C7;
    border: 2px solid #F59E0B;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 20px;
    display: none;
    align-items: center;
    gap: 10px;
}

.hidden {
    display: none !important;
}

/* Progress Bar */
#progressBar {
    background: #DC0018;
}

/* Theme Badge */
#themeBadge {
    background: #FEE2E2;
    color: #991B1B;
}

@media (max-width: 640px) {
    body {
        padding: 10px;
    }
    .card {
        padding: 20px;
    }
    .header h1 {
        font-size: 24px;
    }
}
