/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0f0c29;
    color: white;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(15, 12, 41, 0.9);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #00d2ff;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Bungee', cursive;
    font-size: 2rem;
    color: #fff;
}

.logo span {
    color: #00d2ff;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #00d2ff;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://picsum.photos/1920/600?grayscale');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h2 {
    font-family: 'Bungee', cursive;
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px #00d2ff;
}

/* Grid de Jogos */
.section-title {
    margin: 40px 0;
    text-align: center;
    font-family: 'Bungee', cursive;
    font-size: 2.5rem;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.game-card {
    background: #24243e;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.4);
    border: 2px solid #00d2ff;
}

.game-img {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.game-card h3 {
    padding: 15px;
    text-align: center;
    font-size: 1.2rem;
}

/* Área de Vídeos */
.video-section {
    margin-bottom: 80px;
}

.video-banner {
    background: linear-gradient(90deg, #3a1c71, #d76d77, #ffaf7b);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 0 30px rgba(215, 109, 119, 0.5);
}

.video-info h2 {
    font-family: 'Bungee', cursive;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.btn-video {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 40px;
    background: #fff;
    color: #3a1c71;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-video:hover {
    background: #0f0c29;
    color: #fff;
    transform: scale(1.1);
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    background: #0a081a;
    border-top: 1px solid #24243e;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero h2 { font-size: 2rem; }
    .logo { font-size: 1.5rem; }
}