/* games_hub.css — Oyunlar (games hub) category listing styles */
.games-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - 120px);
    gap: 2.5rem;
    padding: 3rem 1rem;
    box-sizing: border-box;
}

.game-category {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: rgba(10, 14, 23, 0.45);
    border: 1px solid rgba(0, 210, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.game-category.casino-section {
    background: rgba(10, 14, 23, 0.65);
    border: 2.5px dashed var(--accent-color);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.1);
    animation: casinoSectionPulse 2.5s infinite ease-in-out;
}

.games-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.category-title {
    color: var(--accent-color);
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.game-category.casino-section .category-title {
    color: #ffb703;
    text-shadow: 0 0 10px rgba(255, 183, 3, 0.3);
}

.games-list .game-btn {
    position: relative;
    display: flex;
    align-items: center;
    width: 380px;
    max-width: 100%;
    height: 60px;
    border: 1px solid var(--accent-color);
    border-radius: 12px;
    background-color: transparent;
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.games-list .game-btn:hover {
    background-color: rgba(0, 210, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}

.games-list .game-btn i {
    font-size: 1.8rem;
    color: var(--accent-color);
    position: absolute;
    left: 20px;
    top: 16px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 3px rgba(0, 210, 255, 0.4));
    transition: all 0.3s ease;
}

.games-list .game-btn:hover i {
    filter: drop-shadow(0 0 6px rgba(0, 210, 255, 0.8));
}

.games-list .game-btn svg {
    position: absolute;
    left: 20px;
    top: 16px;
    width: 28px;
    height: 28px;
}

.games-list .game-btn span {
    width: 100%;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 400;
    padding: 0 55px;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .games-container {
        gap: 2rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .game-category {
        padding: 2rem 1.25rem;
    }
    .games-list .game-btn {
        width: 100%;
    }
}

/* Casino Style Game Buttons */
.games-list .game-btn.casino-style {
    border: 2px dashed var(--accent-color);
    color: var(--accent-color);
    box-shadow: 0 0 12px rgba(0, 210, 255, 0.1);
    background-color: rgba(0, 210, 255, 0.01);
    animation: casinoBorderPulse 2.5s infinite ease-in-out;
}

.games-list .game-btn.casino-style:hover {
    background-color: rgba(255, 183, 3, 0.08) !important;
    box-shadow: 0 0 20px rgba(255, 183, 3, 0.3) !important;
    border-color: #ffe066 !important;
    color: #ffe066 !important;
    animation: none;
}

.games-list .game-btn.casino-style svg {
    transition: filter 0.3s ease;
}

.games-list .game-btn.casino-style:hover svg {
    filter: drop-shadow(0 0 5px #ffe066) !important;
}

@keyframes casinoBorderPulse {
    0% {
        border-color: var(--accent-color);
        color: var(--accent-color);
        box-shadow: 0 0 8px rgba(0, 210, 255, 0.15);
    }
    50% {
        border-color: #ffb703;
        color: #ffb703;
        box-shadow: 0 0 20px rgba(255, 183, 3, 0.4);
    }
    100% {
        border-color: var(--accent-color);
        color: var(--accent-color);
        box-shadow: 0 0 8px rgba(0, 210, 255, 0.15);
    }
}

@keyframes casinoSectionPulse {
    0% {
        border-color: var(--accent-color);
        box-shadow: 0 0 15px rgba(0, 210, 255, 0.15);
    }
    50% {
        border-color: #ffb703;
        box-shadow: 0 0 35px rgba(255, 183, 3, 0.4);
    }
    100% {
        border-color: var(--accent-color);
        box-shadow: 0 0 15px rgba(0, 210, 255, 0.15);
    }
}
