/* --- GLOBAL STYLES --- */
body {
    margin: 0;
    background-color: #d6edff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* --- FLEX CONTAINER FIX --- */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 40px 20px 60px; /* reduces top & bottom space */
    box-sizing: border-box;
}

/* --- HEADINGS --- */
h1 {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 15px; /* tighter */
    text-align: center;
}

/* --- BUTTON BASE STYLE --- */
.btn {
    background-color: #a6b3c2;
    border: 5px solid #5a6470;
    padding: 16px 40px;
    width: 400px;
    margin: 8px auto;
    font-size: 1.05em;
    font-weight: 600;
    border-radius: 10px;
    display: block;
    cursor: pointer;
    transition: background-color 0.15s ease, transform 0.1s ease;
    text-align: center;
}

.btn:hover {
    background-color: #87bfff;
    transform: scale(1.02);
    border: 5px solid #52a0ff;
}

/* --- RULES BOX --- */
.rules-box {
    background-color: #a6b3c2;
    padding: 20px 30px;
    border-radius: 10px;
    width: 70%;
    line-height: 1.5;
    margin: 15px auto;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.rules-box ul {
    list-style-type: square;
    padding-left: 20px;
    margin-top: 5px;
    margin-bottom: 10px;
}

/* --- GAME PAGE STYLES --- */
#players-list {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    margin-bottom: 10px;
}

.player-box {
    background-color: #d6d8d8;
    border: 2px solid #5b5f63;
    border-radius: 10px;
    padding: 12px 40px;
    margin: 6px;
    font-weight: 600;
    width: 250px;
    text-align: center;
}

#player-input {
    padding: 12px;
    border-radius: 10px;
    border: 2px solid #5b5f63;
    font-size: 1em;
    text-align: center;
    width: 250px;
    display: block;
    margin: 8px auto 12px auto;
}

/* --- BUTTON VARIANTS --- */
.add-btn {
    background-color: #007bff;
    color: white;
    border-color: #005fcc;
}

.add-btn:hover {
    background-color: #0069d9;
}

.start-btn {
    background-color: #555;
    color: white;
}

.start-btn:hover {
    background-color: #333;
}

/* --- IMPOSTOR INFO BOX --- */
#impostor-info p {
    font-size: 1.1em;
    margin: 6px 0;
    text-align: center;
}
