/*Full page styling*/
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #000000;
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

/*Main Container*/
#gameContainer {
    background: #0a0a0a;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #222222;
    width: 100%;
    max-width: 420px;
    text-align: center;
}

h1 {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #00e5ff;
    margin-bottom: 30px;
}

/*Form Layout*/
#setup-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/*Inputs and Dropdowns*/
input, select {
    background: #111111;
    border: 1px solid #222222;
    color: white;
    padding: 12px;
    border-radius: 4px;
    outline: none;
}

input:focus {
    border-color: #444;
}

/*Primary Button*/
button {
    background: #ffffff;
    color: #000;
    font-weight: 700;
    padding: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.2s ease;
}

button:hover {
    background: #00e5ff;
}

/*Quiz Card UI*/
.card {
    background: #111111;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #222222;
    margin-bottom: 20px;
}

#questionDisplay {
    font-size: 4rem;
    font-weight: 200;
    margin: 0;
}

/*Results Table*/
table {
    width: 100%;
    margin-top: 25px;
    border-collapse: collapse;
}

th {
    color: #444;
    font-size: 0.65rem;
    text-transform: uppercase;
    padding-bottom: 10px;
    border-bottom: 1px solid #222222;
}

td {
    padding: 12px 5px;
    border-bottom: 1px solid #111;
    font-size: 0.9rem;
}

/*Row Coloring*/
.correct-row { 
    color: #00ff88;
}

.incorrect-row { 
    color: #ff3366;
}

/*Restart Button*/
#restartBtn {
    background: #111111;
    color: #999999;
    border: 1px solid #333333;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 25px;
    width: 100%;
    font-weight: 600;
    transition: all 0.3s ease;
}

#restartBtn:hover {
    background: #222222;
    color: #ffffff;
    border-color: #666666;
}