:root {
    --bg: #05070a;
    --card-bg: rgba(255, 255, 255, 0.05);
    --accent: #8b5cf6;
    --text: #ffffff;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, sans-serif;
    margin: 0;
    line-height: 1.6;
}

.navbar { padding: 2rem; display: flex; justify-content: center; }
.logo { font-size: 1.5rem; font-weight: 800; letter-spacing: 2px; }
.logo span { color: var(--accent); }

.hero { max-width: 1000px; margin: 0 auto; text-align: center; padding: 2rem; }
h1 { font-size: 3.5rem; margin-bottom: 1rem; }
h1 span { color: var(--accent); text-shadow: 0 0 20px rgba(139, 92, 246, 0.5); }

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 3rem;
}

.game-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 24px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    background: rgba(139, 92, 246, 0.1);
}

.badge {
    position: absolute; top: 15px; right: 15px;
    background: #ef4444; font-size: 0.7rem; padding: 4px 10px; border-radius: 20px;
}