/* game-container.css */

/* Container for a single game */
.classy-container {
    background: linear-gradient(to right, #1a1a1a, #333);
    /* Matches variety-section */
    border: 2px solid #00ff88;
    /* Same as variety-section */
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    margin: 1rem 0;
}

/* Ensure iframe fits inside the container */
.classy-container iframe {
    width: 100%;
    height: 500px;
    /* Adjust as needed */
    border: none;
    display: block;
}

/* Game title below the game */
.game-title {
    padding: 0.5rem 0;
    color: #f5f5dc;
    font-weight: bold;
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.2rem);
}