@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

/* Basic page styling */
body {
    margin: 0;
    padding: 0;
    background-color: #0A0A0A; /* Rich Black background */
    font-family: 'Open Sans', sans-serif;
    color: #F5F5DC;           /* Off White text */
    line-height: 1.5;
}

/* Headings */
h1, h2, h3 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #F5F5DC; /* Off White headings */
    text-align: center;
}

/* Container to center everything, with a dark background and bronze border */
.container {
    max-width: 700px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #0A0A0A;
    border: 1px solid #8B4513; /* Dark Bronze border */
    border-radius: 4px;
}

/* Each functional area is a .section-block for spacing and layout clarity */
.section-block {
    margin: 2rem 0;
    text-align: center; /* Center items in each block */
}

/* Labels and inputs for a tidy form-like structure */
label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    text-align: left; /* Label text left-aligned within its block */
    margin-left: auto;
    margin-right: auto;
    max-width: 300px;  /* So it doesn't span entire container if short text */
}

/* Basic input and button styling */
textarea, input[type="text"], input[type="number"], select, button {
    font-size: 1rem;
    padding: 0.5rem;
    border: 1px solid #8B4513; /* Dark Bronze border */
    border-radius: 4px;
    background-color: #0A0A0A;
    color: #F5F5DC;
    box-sizing: border-box;
}

/* Make inputs narrower so they look better with centered blocks */
input[type="number"],
input[type="text"] {
    width: 60%;
    display: block;
    margin: 0.5rem auto; 
}

button {
    background-color: #B8860B; /* Golden Bronze for primary buttons */
    color: #0A0A0A;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid #8B4513;
    border-radius: 4px;
}

button:hover {
    background-color: #DAA520; /* Lighter Gold hover */
}

/* For the player links that appear after roles/agenda assignment */
#playerLinks a {
    color: #DAA520;    /* Lighter Gold for links */
    text-decoration: none;
    display: block;
    margin: 0.5rem 0;
}

/* Scenario images: triple size but constrained within container width */
.scenarioCard {
    width: 600px;      
    max-width: 100%;   /* fit within .container if narrower */
    display: block;
    margin: 1rem auto;
}

/* Timer displayed 4x bigger than normal */
#countdown {
    font-size: 4rem;   /* 4 times normal */
    color: #DAA520;    /* Lighter Gold for timer text */
    text-align: center;
    margin-top: 1rem;
}

/* Container for power cards area, if needed; or just inline-block paragraphs */
#powerDisplay p {
    margin: 1rem 0;
}

#resetResponse {
    margin-top: 1rem;
    font-weight: 600;
    color: #DAA520; /* Show reset success text in Lighter Gold */
}
