:root {
    --bg-color: #0b0b0b;
    --card-bg: #1a1a1a;
    --accent-color: #e91e63; /* Rosa vibrante/Adulto */
    --text-color: #ffffff;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
}

/* Age Gate */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0; top: 0; width: 100%; height: 100%;
    background: #000;
    display: flex; justify-content: center; align-items: center;
}
.modal-content {
    text-align: center;
    padding: 40px;
    border: 2px solid var(--accent-color);
}

/* Header & Nav */
header {
    padding: 20px 5%;
    background: rgba(0,0,0,0.8);
    position: sticky; top: 0;
}
nav { display: flex; justify-content: space-between; align-items: center; }
nav ul { list-style: none; display: flex; gap: 20px; }
nav a { color: white; text-decoration: none; font-weight: bold; }

/* Hero Section */
.hero {
    height: 70vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('hero-bg.jpg') center/cover;
}
.hero h1 { font-size: 3rem; margin-bottom: 1rem; }

/* Buttons */
.btn-primary { background: var(--accent-color); padding: 12px 25px; border-radius: 5px; text-decoration: none; color: white; }
.btn-small { border: 1px solid var(--accent-color); padding: 5px 15px; text-decoration: none; color: var(--accent-color); display: inline-block; margin-top: 10px; }

/* Game Grid */
.games-section { padding: 50px 5%; }
.game-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.game-card { background: var(--card-bg); padding: 15px; border-radius: 10px; transition: 0.3s; }
.game-card:hover { transform: translateY(-10px); border: 1px solid var(--accent-color); }
.game-img { height: 350px; background-color: #333; border-radius: 5px; margin-bottom: 15px; }