/* --- GAME SECTION --- */
.game-section {
    background-color: var(--primary-color);
}

.game-section .section-title {
    color: white;
}

.game-section .section-subtitle {
    color: var(--text-color);
}

.game-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    aspect-ratio: 16 / 9;
    background: #002a33 url('game-map.png') no-repeat center center/cover;
}

#stereotype-game {
    display: block;
    width: 100%;
    height: 100%;
    cursor: crosshair;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 87, 91, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    z-index: 10;
    transition: opacity 0.5s ease, backdrop-filter 0.5s ease;
}

.game-overlay h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.game-overlay p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.game-overlay .cta-button {
    font-size: 1.2rem;
    padding: 15px 40px;
}

