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

body {
    font-family: system-ui, -apple-system, sans-serif;
    background: #f5f5f5;
    padding: 20px;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
}

h1 {
    text-align:center;
    margin-bottom: 10px;
    color: #333;
}

p {
    color: #666;
    margin-bottom: 20px;
}

.stats {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 18px;
}

.stats div {
    padding: 10px;
    background: #f9f9f9;
    border-radius: 4px;
}

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

.btn {
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn:hover {
    border-color: #333;
}

.btn.selected {
    background: #333;
    color: white;
    border-color: #333;
}

input, textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

textarea {
    min-height: 80px;
    resize: vertical;
}

button[type="submit"] {
    padding: 12px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}

button[type="submit"]:hover:not(:disabled) {
    background: #0052a3;
}

button[type="submit"]:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.cf-turnstile {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

.msg {
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.msg.success {
    background: #d4edda;
    color: #155724;
}

.msg.error {
    background: #f8d7da;
    color: #721c24;
}
