/* The Noun in Question - Game Styles */

/* Override main.css body overflow:hidden — this page needs normal scrolling */
body {
    overflow: auto;
}

.game-title {
    font-family: 'Avenir Next', Arial, sans-serif;
    font-weight: 800;
    color: #006400;
    text-align: center;
    line-height: 1.1;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1em;
}

.title-line {
    font-size: clamp(2rem, 6vw, 3.5rem);
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.title-in {
    font-size: clamp(0.9rem, 2.5vw, 1.4rem);
    font-weight: 500;
    color: #2c7a2c;
    letter-spacing: 4px;
}

.players-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin: 1rem 0;
}

.players-icon {
    width: clamp(48px, 10vw, 72px);
    height: auto;
}

.players-label {
    font-size: clamp(0.75rem, 2vw, 1rem);
    color: #888;
    font-family: 'Avenir Next', Arial, sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
}
