/* Core Rig Settings */
:root {
    --bg-color: #000814;
    --gold: #ffc300;
    --blue-dark: #001d3d;
    --blue-light: #003566;
    --text-color: #ffffff;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

#game-container {
    width: 100%;
    max-width: 1000px;
    padding: 1rem;
    box-sizing: border-box;
}

/* Question Area */
#question-box {
    background: linear-gradient(to bottom, var(--blue-dark), var(--blue-light));
    border: 2px solid var(--gold);
    border-radius: 50px;
    padding: 20px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 0 15px rgba(255, 195, 0, 0.3);
}

/* Answer Grid - Mobile First (Single Column) */
#answer-grid {
    display: grid;
    grid-template-columns: 1fr; /* Stacks answers vertically on phones */
    gap: 15px;
}

.answer-btn {
    background: var(--blue-dark);
    border: 1.5px solid var(--gold);
    border-radius: 25px;
    padding: 15px;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* TABLET & DESKTOP ENHANCEMENTS */
@media screen and (min-width: 768px) {
    #answer-grid {
        grid-template-columns: 1fr 1fr; /* 2x2 Grid for tablets/PC */
    }

    #question-box {
        padding: 40px;
        font-size: 1.5rem;
    }

    .answer-btn:hover {
        background: var(--gold);
        color: var(--bg-color);
    }
}

/* Lifelines Responsive Fix */
.lifelines {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.lifelines button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--blue-light);
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 0.8rem;
}
