/* Umumiy stil */
.game-single, 
.games-archive-list, 
.game-card {
    text-align: center;   /* markazlashtirish */
}

/* Single o‘yin sahifasi */
.game-single {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
}

.game-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.game-image img {
    display: block;
    margin: 0 auto 15px;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.game-size {
    font-size: 18px;
    margin: 10px 0;
}

/* Animated gradient download button */
.download-btn {
    display: inline-block;
        background: linear-gradient(270deg, #ff0000, #9400d3, #00bfff);
            background-size: 600% 600%; /* animatsiya uchun katta maydon */
                color: #fff;
                    font-size: 14px;
                        font-weight: bold;
                            padding: 6px 14px;
                                border-radius: 25px;
                                    text-transform: uppercase;
                                        text-decoration: none;
                                            transition: all 0.3s ease-in-out;
                                                box-shadow: 0 2px 5px rgba(0,0,0,0.2);
                                                    animation: gradientShift 6s ease infinite; /* animatsiya qo‘shildi */
                                                    }

                                                    /* Hoverda kattalashadi */
                                                    .download-btn:hover {
                                                        transform: scale(1.08);
                                                        }

                                                        /* Gradient animatsiyasi */
                                                        @keyframes gradientShift {
                                                            0% { background-position: 0% 50%; }
                                                                50% { background-position: 100% 50%; }
                                                                    100% { background-position: 0% 50%; }
                                                                    }
.game-downloaded {
    margin-top: 8px;
    font-size: 12px;  /* kichikroq */
    color: #aaa;
}

/* Archive sahifasi */
.games-archive-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.game-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s ease;
}
.game-card:hover {
    transform: translateY(-5px);
}

.game-card-img img {
    display: block;
    margin: 0 auto 10px;
    max-width: 150px;
    border-radius: 10px;
}

.game-card-title {
    font-size: 20px;
    margin: 10px 0;
}

.game-card-size {
    font-size: 16px;
    margin: 5px 0;