/* Games Page Specific Styles */

/* Games Header */
.games-header {
    padding: 2rem 0 4rem;
    color: white;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.games-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Games Filter */
.games-filter {
    text-align: center;
    margin-bottom: 3rem;
}

.filter-note {
    color: #ffd700;
    font-weight: bold;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

/* Full Games Grid */
.games-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.game-card.featured {
    border: 3px solid #ffd700;
    background: rgba(255, 215, 0, 0.1);
    position: relative;
}

.game-card.featured::before {
    content: "⭐ FEATURED";
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ffd700;
    color: #1a1a2e;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.game-content {
    padding: 1rem 0;
}

.game-description {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.game-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Responsible Gaming Section */
.responsible-gaming {
    padding: 4rem 0;
    background: rgba(220, 38, 38, 0.1);
    border-top: 3px solid #dc2626;
    margin-top: 3rem;
}

.responsibility-notice {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.responsibility-notice h3 {
    color: #ffd700;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.responsibility-notice p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.gaming-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.principle {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.principle-icon {
    font-size: 2rem;
}

.principle span:last-child {
    font-weight: bold;
    color: #ffd700;
}

/* Mobile Responsive for Games Page */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }

    .games-grid-full {
        grid-template-columns: 1fr;
        padding: 0 0.5rem;
    }

    .games-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .gaming-principles {
        grid-template-columns: 1fr;
    }

    .game-card.featured::before {
        top: -5px;
        right: 10px;
        font-size: 0.7rem;
        padding: 3px 10px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .games-grid-full {
        gap: 1rem;
    }

    .game-card {
        padding: 1.5rem;
    }

    .responsibility-notice h3 {
        font-size: 1.2rem;
    }
}
