/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    background-attachment: fixed;
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

/* Navigation Bar */
.navbar {
    background: #0f1419;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid #ff6b6b;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b6b;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ff6b6b;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* Hero */
.hero {
    text-align: center;
    padding: 50px 20px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 12px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.hero h1 {
    font-size: 48px;
    text-transform: uppercase;
}

/* GRID (2x2 layout) */
.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Game Card */
.game-card {
    background: rgba(255, 107, 107, 0.05);
    padding: 30px 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 107, 0.2);
    text-align: center;
    transition: 0.3s;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 107, 0.5);
}

/* ICON */
.game-icon {
    font-size: 60px;
    margin-bottom: 15px;
    filter: grayscale(100%) brightness(0);
}

.game-card h2 {
    color: #ff6b6b;
    font-size: 22px;
    text-transform: uppercase;
}

.game-card p {
    color: #b0b0b0;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Button */
.play-button {
    display: inline-block;
    padding: 12px 35px;
    background: linear-gradient(135deg, #ff6b6b, #e94560);
    color: white;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Footer */
.footer {
    text-align: center;
    padding: 25px;
    margin-top: 40px;
    background: #0f1419;
    border-top: 2px solid #ff6b6b;
}

/* Responsive */
@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
}
