:root {
    --primary: #FC8B36;
    --primary-hover: hsl(185, 73%, 47%);
    --secondary: white;
    --interactive: rgba(255, 255, 255, 1);
    --content-primary: #0e0f0c;
    --background: #2D54B2;
    --cell-background: #3766D8;
    --background-neutral: rgba(255, 255, 255, 0.9);
}

/* css reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--content-primary);
    font-weight: 400;
    color: var(--secondary);
    background-color: var(--background);
    background-image: linear-gradient(135deg, var(--cell-background) 25%, transparent 25%),
        linear-gradient(225deg, var(--cell-background) 25%, transparent 25%),
        linear-gradient(45deg, var(--cell-background) 25%, transparent 25%),
        linear-gradient(315deg, var(--cell-background) 25%, var(--background) 25%);
    background-position:
        24px 0,
        24px 0,
        0 0,
        0 0;
    background-size: 24px 24px;
    background-repeat: repeat;
}

.game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0px;
    gap: 20px;
    color: var(--content-primary);
    background-color: var(--background-neutral);
}

.header-title span {
    font-size: 1.5rem;
    letter-spacing: -.02em;
    color: var(--content-primary);
}

.header-title {
    padding-top: 8px;
    font-size: 2rem;
    text-align: center;
    font-weight: 900;
    color: var(--primary);
    line-height: normal;
}

.stats-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.round-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    border: 2px solid white;
    border-top: 0;
    border-radius: 0px 0px 24px 24px;
    padding: 10px 32px;
    background-color: rgba(0, 0, 0, 0.2);
}

.score {
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 10px;
}

.choices {
    margin: 20px 0;
    text-align: center;
}

.round-result {
    margin: 10px 0;
}

.final-result {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

button {
    font-size: 18px;
    line-height: 1.6;
    min-width: 160px;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 10px;
    background-color: var(--interactive);
    cursor: pointer;
    transition: background-color 0.3s;
}

button span {
    font-size: 4.5rem;
}

button:hover {
    background-color: var(--primary-hover);
}

button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

button.selected {
    background-color: var(--secondary);
}