/* 16bet - Cassino Online Premium Brasil */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%); color: #fff; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
header { background: rgba(0,0,0,0.3); padding: 20px 0; border-bottom: 2px solid #fbbf24; }
nav { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.logo { display: flex; align-items: center; gap: 15px; }
.logo img { width: 60px; height: 60px; }
.logo h1 { font-size: 2em; color: #fbbf24; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.nav-links { display: flex; gap: 30px; flex-wrap: wrap; }
.nav-links a { color: #fff; text-decoration: none; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: #fbbf24; }
.cta-button { background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #000; padding: 12px 30px; border-radius: 25px; text-decoration: none; font-weight: bold; transition: transform 0.3s; }
.cta-button:hover { transform: scale(1.05); }
.hero { text-align: center; padding: 80px 20px; background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/3010051.jpg'); background-size: cover; background-position: center; }
.hero h2 { font-size: 3em; margin-bottom: 20px; color: #fbbf24; text-shadow: 3px 3px 6px rgba(0,0,0,0.7); }
.hero p { font-size: 1.3em; margin-bottom: 30px; }
.section { padding: 60px 20px; }
.section-title { font-size: 2.5em; text-align: center; margin-bottom: 40px; color: #fbbf24; }
.games-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.game-card { background: rgba(255,255,255,0.1); border-radius: 15px; overflow: hidden; transition: transform 0.3s; border: 2px solid rgba(251,191,36,0.3); }
.game-card:hover { transform: translateY(-10px); border-color: #fbbf24; }
.game-card img { width: 100%; height: 200px; object-fit: cover; }
.game-card-content { padding: 20px; }
.game-card h3 { color: #fbbf24; margin-bottom: 10px; }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.info-card { background: rgba(255,255,255,0.1); padding: 30px; border-radius: 15px; border-left: 4px solid #fbbf24; }
.info-card h3 { color: #fbbf24; margin-bottom: 15px; }
.review-card { background: rgba(255,255,255,0.1); padding: 25px; border-radius: 15px; margin-bottom: 20px; }
.review-header { display: flex; justify-content: space-between; margin-bottom: 15px; }
.stars { color: #fbbf24; }
footer { background: rgba(0,0,0,0.5); padding: 40px 20px; margin-top: 60px; border-top: 2px solid #fbbf24; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.footer-section h3 { color: #fbbf24; margin-bottom: 15px; }
.footer-section a { color: #fff; text-decoration: none; display: block; margin-bottom: 10px; }
.footer-section a:hover { color: #fbbf24; }
@media (max-width: 768px) { .hero h2 { font-size: 2em; } .nav-links { gap: 15px; } }
