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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.game-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.game-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.game-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.game-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.game-card p {
    margin-bottom: 15px;
    opacity: 0.9;
    line-height: 1.4;
}

.game-features {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.game-features span {
    text-align: left;
}

.footer {
    margin-top: 40px;
    opacity: 0.7;
    font-style: italic;
}

@media (max-width: 768px) {
    body {
        padding: 15px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .game-card {
        padding: 20px;
        margin: 0 auto;
        max-width: 400px;
    }
    
    .game-icon {
        font-size: 3rem;
    }
    
    .game-card h3 {
        font-size: 1.3rem;
    }
    
    .game-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .game-card {
        padding: 15px;
        max-width: 320px;
    }
    
    .game-icon {
        font-size: 2.5rem;
    }
    
    .game-card h3 {
        font-size: 1.2rem;
        margin: 10px 0;
    }
    
    .game-card p {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .game-features {
        gap: 5px;
    }
    
    .game-features span {
        font-size: 0.75rem;
    }
}
