/**
 * Games Landing Page Styles
 *
 * Games landing page with game options and type information.
 * Includes responsive grid layout.
 */

/* ===== Games Landing Page ===== */

.games-landing-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.games-header {
    text-align: center;
    margin-bottom: 4rem;
}

.games-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.games-header p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.game-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.game-option-card {
    padding: 2.5rem 1.5rem;
    text-align: center;
    cursor: pointer;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all 0.3s;
    background: var(--color-card-bg);
}

.game-option-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.game-option-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.game-option-card h3 {
    margin-bottom: 0.75rem;
}

.game-option-card p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.game-option-card .btn {
    width: 100%;
}

.game-types-info {
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
}

.game-types-info h3 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.game-types-list {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.game-type-item {
    text-align: center;
}

.game-type-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.game-type-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.game-type-desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

@media (max-width: 968px) {
    .game-options-grid {
        grid-template-columns: 1fr;
    }
}
