* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url("background.png") center / cover no-repeat fixed;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

.site-logo {
    display: block;
    position: fixed;
    top: 20px;
    left: 20px;
    width: 350px;
    object-fit: contain;
    pointer-events: none;
    z-index: 10;
}

.page {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
}

.site-footer {
    padding: 0 24px 16px;
}

.card {
    width: 100%;
    max-width: 700px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

h1 {
    margin-top: 0;
    color: #333;
    text-align: center;
}

.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 32px;
}

.question {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 24px;
    color: #222;
}

.answers {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.answer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.2s;
}

.answer:hover {
    border-color: #667eea;
    background: #f5f7ff;
}

.answer input {
    transform: scale(1.2);
}

button,
.button {
    display: inline-block;
    border: none;
    background: #667eea;
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
}

button:hover,
.button:hover {
    background: #5569d8;
}

.actions {
    margin-top: 30px;
    text-align: center;
}

.score {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #667eea;
    margin: 24px 0;
}

.progress {
    margin-bottom: 24px;
    color: #666;
    font-size: 14px;
}

.legal-note {
    margin: 0 auto;
    max-width: 900px;
    color: #000;
    background: rgba(255, 255, 255, 0.5);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-style: italic;
    line-height: 1.5;
    text-align: center;
    overflow-wrap: anywhere;
}

@media (max-width: 768px) {
    .site-logo {
        position: static;
        width: 100%;
        padding: 20px 24px 0;
    }
}
