/* --- CHANGED FONT --- */
:root {
    --bg-dark: #0f0c29;
    --bg-gradient: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    --primary: #ffd700; 
    --primary-hover: #ffaa00;
    --text: #ffffff;
    --glass: rgba(255, 255, 255, 0.1);
}

body {
    margin: 0;
    /* Теперь Roboto везде */
    font-family: 'Roboto', sans-serif; 
    color: var(--text);
    background: var(--bg-gradient);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

h1, h2 {
    /* Убрали Cinzel, теперь Roboto, но жирнее */
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* ... (Остальные стили для контейнера, кнопок и сетки остаются те же) ... */
/* Просто скопируй старые стили сюда, если они не конфликтуют.
   Ниже ТОЛЬКО НОВЫЕ СТИЛИ для Селектов */

.quiz-container {
    width: 90%;
    max-width: 500px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.step { display: none; animation: fadeIn 0.5s ease; }
.step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* BUTTONS */
.btn {
    display: block; width: 100%; padding: 15px; background: var(--primary); color: #000;
    border: none; border-radius: 50px; font-size: 18px; font-weight: bold; cursor: pointer;
    transition: 0.3s; text-transform: uppercase; margin-top: 20px;
}
.btn:hover { background: var(--primary-hover); transform: scale(1.02); }
.option-btn {
    width: 100%; padding: 14px; margin-bottom: 10px; background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2); color: white; border-radius: 8px; cursor: pointer;
    text-align: left; transition: 0.2s; font-size: 16px; font-family: 'Roboto', sans-serif;
}
.option-btn:hover { background: rgba(255, 215, 0, 0.2); border-color: var(--primary); }
.options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* INPUTS & SELECTS (NEW) */
.input-field {
    width: 100%; padding: 15px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.3); color: white; font-size: 16px; box-sizing: border-box; margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
}

/* Контейнер для трех селектов */
.date-selectors {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.input-select {
    flex: 1; /* Растягиваем равномерно */
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.3);
    color: white;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    -webkit-appearance: none; /* Убираем стандартную стрелку браузера */
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    text-align: center;
}

/* Кастомная стрелочка для селектов не обязательна, но желательна. 
   Пока оставим простой стиль, чтобы не грузить картинками */
.input-select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0,0,0,0.5);
}

/* Progress Bar & Loader (Same as before) */
.progress-container { position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: rgba(255,255,255,0.1); border-radius: 20px 20px 0 0; overflow: hidden; }
.progress-bar { height: 100%; background: var(--primary); width: 0%; transition: width 0.3s ease; }
.loader-content { text-align: center; }
.spinner { width: 50px; height: 50px; border: 5px solid rgba(255,255,255,0.1); border-top: 5px solid var(--primary); border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto 20px auto; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.pulse-btn { animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); } }
.tg-btn { display: block; text-align: center; color: #0088cc; text-decoration: none; margin-top: 15px; font-weight: bold; }
.trust-icons { display: flex; justify-content: space-around; margin-top: 20px; font-size: 0.8em; opacity: 0.7; }