
body {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.header-section {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

.header-section h1 {
    font-size: 3rem;
    color: #00ffcc;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

/* गेम्स को एक लाइन में सेट करने के लिए */
.main-game-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap; /* मोबाइल पर अपने आप सेट होने के लिए */
    padding: 20px;
}

.game-card {
    width: 300px;
    border: 4px solid #00ffcc;
    border-radius: 20px;
    overflow: hidden;
    background: #0f3460;
    transition: 0.4s;
}

.game-card:hover {
    transform: translateY(-15px) scale(1.05); /* ऊपर उठेगा और बड़ा होगा */
    box-shadow: 0 0 30px #00ffcc;
}

.game-card a {
    text-decoration: none; /* नीचे की लाइन हटाने के लिए */
}

.game-card img {
    width: 100%;
    height: 250px;
    object-fit: cover; /* फोटो को पूरी तरह से फिट करने के लिए */
    display: block;
}

.label {
    background: #00ffcc;
    color: #1a1a2e;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    font-size: 1.2rem;
}