/* Reset and base styles */
body {
    margin: 0;
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    background: #f4f6fa;
    color: #222;
}

.banner {
    background: #111;
    width: 100%;
    padding: 32px 0 24px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.logo {
    width: 260px;
    height: auto;
    filter: drop-shadow(0 2px 8px #0008);
}

.content {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 24px;
}

.about {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 32px 28px 24px 28px;
    margin-bottom: 40px;
}

.featured h2 {
    margin-bottom: 24px;
    font-size: 2rem;
    font-weight: 700;
    color: #111;
}

.games-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.game-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 24px 20px 28px 20px;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.18s, box-shadow 0.18s;
}
.game-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 24px rgba(0,0,0,0.13);
}
.game-card img {
    width: 100%;
    max-width: 220px;
    border-radius: 12px;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.game-card h3 {
    margin: 0 0 16px 0;
    font-size: 1.2rem;
    color: #222;
    text-align: center;
}
.play-btn {
    background: linear-gradient(90deg, #111 60%, #444 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: background 0.18s, transform 0.18s;
}
.play-btn:hover {
    background: linear-gradient(90deg, #222 60%, #666 100%);
    transform: scale(1.06);
}

.more-games {
    margin-top: 48px;
    font-size: 1.1rem;
    color: #444;
    text-align: center;
}

.site-footer {
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
    color: #888;
    background: none;
    margin: 32px 0 18px 0;
    padding: 0;
    letter-spacing: 0.5px;
}

/* Status label styles for game cards */
.alpha-status {
    background: #ffe5e5;
    color: #b30000;
    padding: 6px 0;
    border-radius: 6px;
    margin-bottom: 12px;
    font-weight: 700;
}

.beta-status {
    background: #e5f3ff;
    color: #0057b3;
    padding: 6px 0;
    border-radius: 6px;
    margin-bottom: 12px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .games-grid {
        flex-direction: column;
        align-items: center;
    }
    .content {
        padding: 0 8px;
    }
}
