* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Kantumruy Pro', sans-serif;
}

body {
    background-image: url('/IMG/image.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
    text-align: center;
}

.hero {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
    margin-bottom: 20px;
}

.logo img {
    width: 200px;
}

.subtitle {
    margin: 15px 0;
    color: #555;
    font-size: 18px;
}

/* Social Buttons */
.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-item {
    position: relative;
    display: inline-block;
}

.socials a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    transition: .3s;
    text-decoration: none;
}

.socials a:hover {
    transform: scale(1.1);
}

.telegram {
    background: #0088cc;
}

.messenger {
    background: #006aff;
}

.youtube {
    background: #ff0000;
}

/* Finger animation on hover */
.finger {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffcc00;
    font-size: 24px;
    pointer-events: none;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    display: none;
}

.social-item:hover .finger {
    display: block;
    animation: tap 1.2s infinite;
}

@keyframes tap {

    0%,
    100% {
        transform: translateX(-50%) translateY(0) scale(1);
    }

    50% {
        transform: translateX(-50%) translateY(-10px) scale(1.2);
    }
}

/* Games Section */
.games {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.games-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 10px;
}

.games h2 {
    color: #1e5bb6;
    font-size: 24px;
    font-weight: 800;
}

.nav-arrows {
    display: flex;
    gap: 8px;
}

.arrow {
    background: #1e5bb6;
    color: white;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    z-index: 10;
}

.swiper {
    width: 100%;
    padding: 10px 0;
}

.game {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 3px solid #5a96ff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, .15);
    transition: transform 0.3s;
}

.game:hover {
    transform: scale(1.05);
}

.game img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
}

.game span {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 10px;
    color: #fff;
    text-transform: uppercase;
    background: linear-gradient(180deg, #7eb2ff 0%, #4a8cff 100%);
}

/* Responsive */
@media (min-width: 600px) {
    .logo img {
        width: 240px;
    }

    .subtitle {
        font-size: 20px;
    }

    .game img {
        height: 140px;
    }

    .game span {
        font-size: 12px;
        height: 45px;
    }

    .games h2 {
        font-size: 24px;
    }
}

@media (min-width: 1024px) {
    .game img {
        height: 170px;
    }

    .game span {
        font-size: 14px;
        height: 50px;
    }

    .container {
        padding: 30px;
    }
}

footer {
    margin-top: 40px;
    padding-bottom: 20px;
    font-size: 13px;
    color: #666;
    font-weight: bold;
}