body {
    font-family: 'Arial', sans-serif;
    background-color: #0f0f0f;
    color: white;
    margin: 0;
    padding: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #1a1a1a;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.site-name {
    font-size: 1.5rem;
    color: #ff9e0f;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 15px;
}

.nav-link {
    color: #ff9e0f;
    text-decoration: none;
    font-size: 1rem;
}

.nav-link:hover {
    color: #ff5f5f;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

#deposit-button {
    padding: 8px 12px;
    font-size: 1rem;
    color: white;
    background-color: #ff9e0f;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#deposit-button:hover {
    background-color: #ff5f5f;
}

.balance-display {
    font-size: 1rem;
}

/* Game Cards Section */
.game-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 40px;
}

.game-card {
    text-align: center;
    background-color: #1a1a1a;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-card img {
    width: 150px;
    height: 120px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.game-card img:hover {
    transform: scale(1.05);
}

.game-card h3 {
    margin-top: 10px;
    color: white;
    font-size: 1.1rem;
}
