/**
 * Quiz Styles - Football IQ Score
 * Styles for quiz start, question, and result pages
 */

/* ===================================
   QUIZ START PAGE
   =================================== */

body.quiz-start {
    min-height: 100vh;
    background: url('/assets/images/bg-for-web.jpg') center center / cover no-repeat fixed;
    display: flex;
    flex-direction: column;
}

body.quiz-start main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.quiz-start-container {
    width: 100%;
    max-width: 700px;
    margin: 2rem auto;
    padding: 0 15px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quiz-start-card {
    position: relative;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 8px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.quiz-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    font-size: 24px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    line-height: 1;
}

.quiz-close-btn:hover {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border-color: #dc3545;
    text-decoration: none;
    transform: scale(1.05);
}

.quiz-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.quiz-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.quiz-title {
    font-family: 'colleged', Georgia, serif;
    font-size: 52px;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: normal;
}

.quiz-subtitle {
    font-size: 22px;
    color: #fddc00;
    font-weight: 500;
    margin: 0 0 1.5rem 0;
    letter-spacing: 0.5px;
}

.quiz-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2.5rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.start-button {
    display: inline-block;
    font-family: 'redzone', Arial, sans-serif;
    font-size: 28px;
    color: #111;
    background: #fddc00;
    padding: 18px 60px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(253, 220, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.start-button:hover {
    background: #ffe44d;
    box-shadow: 0 6px 16px rgba(253, 220, 0, 0.6);
    transform: translateY(-2px);
    text-decoration: none;
}

.start-button:focus {
    text-decoration: none;
    outline: none;
}

.start-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(253, 220, 0, 0.4);
}

/* ===================================
   QUIZ START RESPONSIVE
   =================================== */

@media (max-width: 768px) {
    .quiz-start-card {
        padding: 2rem 1.5rem;
    }

    .quiz-icon {
        width: 60px;
        height: 60px;
    }

    .quiz-title {
        font-size: 36px;
    }

    .quiz-subtitle {
        font-size: 18px;
    }

    .quiz-description {
        font-size: 15px;
    }

    .start-button {
        font-size: 24px;
        padding: 15px 45px;
    }
}

@media (max-width: 480px) {
    .quiz-start-card {
        padding: 1.5rem 1rem;
    }

    .quiz-close-btn {
        top: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .quiz-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .quiz-title {
        font-size: 32px;
    }

    .quiz-subtitle {
        font-size: 16px;
    }

    .start-button {
        font-size: 22px;
        padding: 14px 40px;
    }
}

/* ===================================
   QUIZ QUESTION PAGE
   =================================== */

body.quiz-question {
    min-height: 100vh;
    background: url('/assets/images/bg-for-web.jpg') center center / cover no-repeat fixed;
    padding: 0;
}

/* Minimal Quiz Header - Menu Only */
.quiz-minimal-header {
    position: fixed;
    top: 2rem;
    right: 1.5rem;
    z-index: 1000;
}

.quiz-minimal-header .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transition: background 0.3s ease;
}

.quiz-minimal-header .menu-toggle:hover {
    background: rgba(0, 0, 0, 0.3);
}

.quiz-minimal-header .menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.quiz-minimal-header .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.quiz-minimal-header .menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.quiz-minimal-header .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Fullscreen Navigation Overlay */
.quiz-minimal-header nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
}

.quiz-minimal-header nav.active {
    display: flex;
}

.quiz-minimal-header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
    text-align: center;
}

.quiz-minimal-header nav ul li {
    margin: 0 0 2rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.quiz-minimal-header nav.active ul li {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation */
.quiz-minimal-header nav.active ul li:nth-child(1) { transition-delay: 0.1s; }
.quiz-minimal-header nav.active ul li:nth-child(2) { transition-delay: 0.15s; }
.quiz-minimal-header nav.active ul li:nth-child(3) { transition-delay: 0.2s; }
.quiz-minimal-header nav.active ul li:nth-child(4) { transition-delay: 0.25s; }
.quiz-minimal-header nav.active ul li:nth-child(5) { transition-delay: 0.3s; }

.quiz-minimal-header nav ul li a {
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    letter-spacing: 0.3px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
}

.quiz-minimal-header nav ul li a:hover,
.quiz-minimal-header nav ul li a:active {
    color: #fddc00;
    text-decoration: none;
}

.question-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem 0;
}

/* Quiz question page footer - transparent background with readable text */
body.quiz-question footer {
    background: transparent;
    position: relative;
    padding: 1rem;
    margin-top: 1.5rem;
    border-top: none;
}

body.quiz-question footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

body.quiz-question footer a {
    color: rgba(255, 255, 255, 0.5);
}

body.quiz-question footer a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.question-card {
    background: rgba(0, 0, 0, 0.75);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
}

.question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
    position: relative;
}

.question-number {
    display: inline-block;
    background: #fddc00;
    color: #111;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 0 0 auto;
}

.timer-display {
    font-family: 'scoreboard', Arial, sans-serif;
    font-size: 36px;
    color: #fddc00;
    font-weight: normal;
    letter-spacing: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    transition: color 0.3s ease;
}

.timer-display.warning {
    color: #ff4444;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

.question-text {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Answer Options */
.answer-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.answer-option {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 60px;
}

.answer-option:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(253, 220, 0, 0.5);
    transform: translateX(4px);
}

.answer-option.selected {
    background: rgba(253, 220, 0, 0.15);
    border-color: #fddc00;
    border-width: 3px;
}

.answer-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fddc00;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.answer-option.selected .answer-letter {
    background: #fddc00;
    color: #111;
}

.answer-text {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.4;
    flex: 1;
}

.answer-radio {
    display: none;
}

/* Ad Placeholder */
.ad-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 2rem 1rem;
    text-align: center;
    margin-bottom: 2rem;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-placeholder p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Submit Button */
.submit-section {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.btn-submit {
    font-family: 'redzone', Arial, sans-serif;
    font-size: 18px;
    padding: 1rem 3rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 220px;
    background: #fddc00;
    color: #111;
    box-shadow: 0 4px 12px rgba(253, 220, 0, 0.4);
}

.btn-submit:hover {
    background: #ffe44d;
    box-shadow: 0 6px 16px rgba(253, 220, 0, 0.6);
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-submit:focus {
    text-decoration: none;
    outline: 2px solid #fddc00;
    outline-offset: 2px;
}

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

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Keyboard Hints */
.keyboard-hints {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===================================
   QUIZ QUESTION RESPONSIVE
   =================================== */

@media (max-width: 768px) {
    body.quiz-question {
        padding: 1rem 0.5rem;
    }

    .question-card {
        padding: 1.5rem 1.25rem;
    }

    .question-text {
        font-size: 18px;
    }

    .answer-option {
        padding: 0.875rem 1rem;
        min-height: 52px;
    }

    .answer-text {
        font-size: 16px;
    }

    .answer-letter {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .btn-submit {
        font-size: 16px;
        padding: 0.875rem 2.5rem;
        width: 100%;
        max-width: 400px;
    }

    .timer-display {
        font-size: 28px;
        position: static;
        transform: none;
        left: auto;
    }
}

@media (max-width: 480px) {
    .question-card {
        padding: 1.25rem 1rem;
    }

    .question-text {
        font-size: 17px;
    }

    .answer-option {
        padding: 0.75rem 0.875rem;
    }
}

/* ===================================
   QUIZ RESULTS PAGE
   =================================== */

body.quiz-result {
    min-height: 100vh;
    background: url('/assets/images/bg-for-web.jpg') center center / cover no-repeat fixed;
    display: flex;
    flex-direction: column;
}

body.quiz-result main {
    flex: 1;
    padding: 2rem 1rem;
}

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

.results-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Score Card (Left Column) */
.score-card {
    background: rgba(0, 0, 0, 0.85);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 2rem;
}

.score-card h2 {
    font-family: 'colleged', Georgia, serif;
    font-size: 28px;
    color: #fddc00;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.score-display {
    background: rgba(253, 220, 0, 0.1);
    border: 3px solid #fddc00;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.score-number {
    font-family: 'scoreboard', Arial, sans-serif;
    font-size: 72px;
    color: #fddc00;
    line-height: 1;
    font-weight: normal;
}

.score-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Player card and badge styling in left column */
.player-card-section,
.badge-section {
    margin: 1.5rem 0;
    text-align: center;
}

.player-card-section img,
.badge-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.player-card-image {
    max-width: 250px;  /* Leave some breathing room in 302px container */
    width: 100%;
    height: auto;
}

.result-badge {
    max-width: 200px;  /* Badges should be smaller than player cards */
    width: 100%;
    height: auto;
}

.badge-section h3 {
    font-family: 'colleged', Georgia, serif;
    font-size: 20px;
    color: #fddc00;
    margin-bottom: 1rem;
    font-weight: normal;
}

.share-section {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.share-section h3 {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.share-button {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    cursor: pointer;
}

.share-button--copy {
    background: #fddc00;
    color: #111;
    border: none;
}

.share-button--copy:hover {
    background: #ffe44d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 220, 0, 0.4);
}

/* Results Content (Right Column) */
.results-content {
    background: rgba(0, 0, 0, 0.75);
    border-radius: 8px;
    padding: 3rem 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.results-headline {
    font-family: 'Roboto Slab', Georgia, serif;
    font-size: 36px;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 2rem;
    font-weight: 600;
}

.results-headline .highlight {
    color: #fddc00;
    font-weight: 700;
}

.player-comparison {
    background: rgba(253, 220, 0, 0.1);
    border-left: 4px solid #fddc00;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.player-comparison h3 {
    font-size: 18px;
    color: #fddc00;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.player-comparison p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 15px;
}

.player-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-value {
    font-family: 'scoreboard', Arial, sans-serif;
    font-size: 48px;
    color: #fddc00;
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.player-bio {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 2.5rem;
}

.player-bio p {
    margin-bottom: 1rem;
}

.cta-section {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-section h3 {
    font-family: 'colleged', Georgia, serif;
    font-size: 24px;
    color: #fddc00;
    margin-bottom: 1.5rem;
    font-weight: normal;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    font-family: 'redzone', Arial, sans-serif;
    font-size: 16px;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.cta-button--primary {
    background: #fddc00;
    color: #111;
    box-shadow: 0 4px 12px rgba(253, 220, 0, 0.4);
}

.cta-button--primary:hover {
    background: #ffe44d;
    box-shadow: 0 6px 16px rgba(253, 220, 0, 0.6);
    transform: translateY(-2px);
}

.cta-button--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button--secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   QUIZ RESULTS RESPONSIVE
   =================================== */

@media (max-width: 991px) {
    .results-grid {
        grid-template-columns: 1fr;
    }

    .score-card {
        position: relative;
        top: 0;
    }

    .results-headline {
        font-size: 30px;
    }

    .player-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-value {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    body.quiz-result main {
        padding: 1.5rem 0.5rem;
    }

    .results-content {
        padding: 2rem 1.5rem;
    }

    .score-card {
        padding: 1.5rem 1rem;
    }

    .score-display {
        width: 150px;
        height: 150px;
    }

    .score-number {
        font-size: 60px;
    }

    .results-headline {
        font-size: 24px;
    }

    .stat-value {
        font-size: 36px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }

    .share-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .results-headline {
        font-size: 20px;
    }

    .player-bio {
        font-size: 15px;
    }
}

/* ===================================
   TEXT INPUT STYLING
   =================================== */

.text-input-container {
    margin: 30px auto;
    max-width: 600px;
}

.text-answer {
    width: 100%;
    padding: 15px 20px;
    font-size: 18px;
    line-height: 1.4;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    box-sizing: border-box;
}

.text-answer:focus {
    outline: none;
    border-color: #fddc00;
    box-shadow: 0 0 0 3px rgba(253, 220, 0, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.text-answer::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

.text-answer.error-highlight,
.answer-options.error-highlight {
    animation: shake 0.5s;
}

.text-answer.error-highlight {
    border-color: #dc3545 !important;
}

.answer-options.error-highlight .answer-option {
    border-color: #dc3545;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* ===================================
   RESTART BUTTON IN HEADER
   =================================== */

.question-header {
    position: relative;
}

.restart-form {
    display: inline-block;
    margin-left: 0;
    flex: 0 0 auto;
}

.question-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex: 0 0 auto;
}

.restart-btn {
    padding: 8px 16px;
    font-size: 14px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.restart-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fddc00;
    border-color: #fddc00;
}

.restart-btn:before {
    content: "↻";
    font-size: 16px;
    display: inline-block;
}

.exit-btn {
    padding: 8px 16px;
    font-size: 18px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    line-height: 1;
}

.exit-btn:hover {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border-color: #dc3545;
    text-decoration: none;
}

@media (max-width: 768px) {
    .text-answer {
        font-size: 16px;
        padding: 12px 16px;
    }

    .restart-btn {
        padding: 5px 10px;
        font-size: 12px;
    }

    .exit-btn {
        padding: 5px 10px;
        font-size: 16px;
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .question-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .restart-form {
        position: absolute;
        top: 0;
        right: 0;
    }

    .restart-btn:before {
        content: "↻";
        font-size: 18px;
    }

    .restart-btn {
        padding: 4px;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        justify-content: center;
        font-size: 0;
    }

    .exit-btn {
        padding: 4px;
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
}
