* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Emprint', 'Segoe UI', Arial, sans-serif;
}

@font-face {
    font-family: 'EMprint';
    src: url('../fonts/EMprint-Semibold.ttf') format('truetype');
}

body {
    background: #111;
    color: #fff;
    font-family: 'Segoe UI', Arial, sans-serif;
    min-height: 100vh;
}

.f2r-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 24px 8px;
    background-image: url('../assets/bg.png');
    background-size: cover;
    background-position: center;
}

.top-logo {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 200px;
    margin-bottom: 100px;
}

.top-logo img {
    width: 100%;
    max-width: 500px;
}

.top-logo p {
    font-size: 5rem;
    width: 90%;
    color: #fff;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.f2r-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
    border-radius: 16px;
    width: 100%;
}

.f2r-input {
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: #fff;
    color: #000;
    font-size: 3rem;
    outline: none;
    transition: background 0.2s;
    width: 90%;
}

.f2r-btn {
    border: none;
    border-radius: 8px;
    font-size: 3rem;
    margin-top: 20px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.f2r-btn-primary {
    background: #FE000C;
    font-size: 3.5rem;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: bold;
    width: 50%;
    height: 120px;
}


.f2r-btn-option {
    background: #333;
    color: #fff;
    margin-bottom: 10px;
    width: 100%;
    font-weight: 500;
    padding: 15px;
}

.f2r-btn-option:hover {
    background: #444;
}

.f2r-question-block {
    margin-top: 25%;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.5);
    width: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.f2r-question-title {
    font-size: 1.3rem;
    margin-bottom: 18px;
    text-align: center;
    color: #00c853;
}


.img-container-question {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 24px;
}

.f2r-question-img {
    width: 100%;

}

.f2r-question-text {
    font-size: 2.4rem;
    margin-bottom: 24px;
    text-align: center;
    font-weight: bold;
    color: #000;
    margin-top: -170px;
}

.f2r-options {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.f2r-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.f2r-modal {
    background: #181818;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.7);
    text-align: center;
    width: 90vw;
}

.f2r-modal-title {
    font-size: 5rem;
    margin-bottom: 12px;
    color: #FE000C;
}

.f2r-modal-text {
    font-size: 3rem;
    margin-bottom: 24px;
}

.f2r-modal-btn {
    width: 100%;
    margin-top: 12px;
}
