body {
    background: #000;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    height: 100vh;

    /* TRUE CENTERING */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* START SCREEN */
#start-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.7);
    text-align: center;
    z-index: 9999;
}

.title {
    font-size: 3rem;
    margin-bottom: 30px;
}

.start-button {
    padding: 15px 30px;
    font-size: 1.3rem;
    background: #0078ff;
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
}

.start-button:hover {
    background: #3399ff;
}

/* Hide game screen until start */
.hidden {
    display: none !important;
}

/* GAME SCREEN BECOMES FLEX CONTAINER AFTER START */
#game-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* GAME CONTAINER — 5% BIGGER */
.game-container {
    transform: scale(1.05); /* 5% bigger */
    width: 90%;
    max-width: 525px; /* slightly bigger */
    text-align: center;
}

/* QUESTION BOX */
#question-box {
    background: #222;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

/* OPTION BUTTONS */
.buttons button {
    background: #444;
    border: none;
    padding: 18px 24px;
    margin: 12px;
    border-radius: 10px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

.buttons button:hover {
    background: #666;
}

/* NEXT + DOWNLOAD BUTTONS */
.next {
    margin-top: 25px;
    padding: 12px 22px;
    background: #0078ff;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
}

.next:hover {
    background: #3399ff;
}
