/* ===== PAGE HERO ===== */
.page-hero {
    padding: 8rem 1.5rem 3rem;
    text-align: center;
}
.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-bottom: 0.5rem;
}
.page-hero p {
    color: var(--text-dim);
    font-size: 1.1rem;
}

/* ===== GAME GRID ===== */
.game-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* ===== GAME CARD ===== */
.game-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid rgba(123, 170, 200, 0.06);
    transition: border-color 0.3s, transform 0.2s;
}
.game-card:hover {
    border-color: color-mix(in srgb, var(--game-accent) 40%, transparent);
    transform: translateY(-2px);
}

/* ===== GAME ICON ===== */
.game-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--game-accent) 12%, transparent);
    color: var(--game-accent);
}
.game-icon svg {
    width: 32px;
    height: 32px;
}

/* ===== GAME INFO ===== */
.game-info h3 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}
.game-info p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.6rem;
}

/* ===== STATUS BADGES ===== */
.game-status {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    letter-spacing: 0.02em;
}
.status-active {
    background: rgba(90, 143, 60, 0.15);
    color: #7bc45a;
}
.status-soon {
    background: rgba(201, 149, 60, 0.15);
    color: #c9953c;
}

/* ===== OTHER GAMES (no status badge, slightly muted) ===== */
.game-card-other {
    border-color: rgba(123, 170, 200, 0.03);
}

/* ===== NAV ACTIVE ===== */
.nav-links a.active {
    color: var(--white);
}

/* ===== SERVER CONTACT ===== */
.server-contact p {
    color: var(--text-dim);
    font-size: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .game-grid {
        grid-template-columns: 1fr;
    }
    .page-hero {
        padding: 7rem 1.25rem 2rem;
    }
}
