﻿
body {
    background: linear-gradient(to bottom right, #fdfdfd, #eaeaea);
    color: #333;
}

.game-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 30px;
    max-width: 900px;
    margin: auto;
}

.game-card {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .game-card:hover {
        transform: scale(1.05);
    }

/* Individual card themes */
.mines {
    background: #2a8dfc;
}

.aviator {
    background: #e23737;
}

.cricket {
    background: #3cb043;
}

.limbo {
    background: #1d2a5c;
}

.aviator-alt {
    background: #000000;
}

.plinko {
    background: #64b5f6;
}

@media (max-width: 768px) {
    .game-menu {
        grid-template-columns: repeat(2, 1fr);
    }
}



.bottom-menu {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to right, #ffffff, #f0f0f0); /* Light gradient */
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 999;
    border-top: 1px solid #ccc;
}

.menu-item {
    color: #555;
    text-align: center;
    flex: 1;
    font-size: 12px;
    text-decoration: none;
}

    .menu-item i {
        font-size: 20px;
        display: block;
        margin-bottom: 5px;
    }

    /* Highlight active item */
    .menu-item.active {
        color: #007bff; /* Soft blue */
    }

    /* Center icon styling */
    .menu-item.center {
        transform: scale(1.3);
        color: #222;
    }

@media (max-width: 600px) {
    .menu-item span {
        font-size: 10px;
    }

    .menu-item i {
        font-size: 18px;
    }
}