/* Reset y Base */
* {margin: 0; padding: 0; box-sizing: border-box;}
html {scroll-behavior: smooth; font-size: 16px;}
body {font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.7; color: #1a1a1a; background: #f8f9fa;}

/* Variables */
:root {
  --primary: #0f6b3e;
  --secondary: #d4af37;
  --dark: #1a1a1a;
  --light: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Header */
header {background: linear-gradient(135deg, var(--primary) 0%, #0a4d2c 100%); padding: 1.5rem 0; box-shadow: var(--shadow);}
.container {max-width: 1200px; margin: 0 auto; padding: 0 20px;}
nav {display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;}
.logo {display: flex; align-items: center; gap: 12px;}
.logo img {height: 50px; width: auto;}
.logo-text {color: var(--white); font-size: 1.3rem; font-weight: 700;}
.nav-links {display: flex; gap: 2rem; list-style: none; flex-wrap: wrap;}
.nav-links a {color: var(--white); text-decoration: none; font-weight: 500; transition: color 0.3s;}
.nav-links a:hover {color: var(--secondary);}
.cta-btn {background: var(--secondary); color: var(--dark); padding: 12px 30px; border-radius: 30px; font-weight: 700; text-decoration: none; transition: transform 0.3s, box-shadow 0.3s;}
.cta-btn:hover {transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,175,55,0.4);}

/* Hero */
.hero {background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero-casino-mexico.webp') center/cover; padding: 100px 20px; text-align: center; color: var(--white);}
.hero h1 {font-size: 3rem; margin-bottom: 1rem; text-shadow: 2px 2px 4px rgba(0,0,0,0.5);}
.hero p {font-size: 1.3rem; margin-bottom: 2rem; max-width: 700px; margin-left: auto; margin-right: auto;}

/* Sections */
section {padding: 60px 20px;}
h2 {font-size: 2.5rem; color: var(--primary); margin-bottom: 2rem; text-align: center;}
h3 {font-size: 1.8rem; color: var(--primary); margin: 2rem 0 1rem;}

/* Game Cards */
.games-grid {display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px;}
.game-card {background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s;}
.game-card:hover {transform: translateY(-8px);}
.game-card img {width: 100%; height: 220px; object-fit: cover;}
.game-card-content {padding: 20px;}
.game-card h3 {font-size: 1.5rem; margin: 0 0 10px 0;}
.game-card p {color: #666; margin-bottom: 15px;}

/* Reviews */
.reviews-grid {display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-top: 40px;}
.review-card {background: var(--white); padding: 25px; border-radius: 12px; box-shadow: var(--shadow);}
.review-header {display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px;}
.review-author {font-weight: 700; color: var(--primary);}
.review-rating {color: var(--secondary); font-size: 1.2rem;}
.review-location {color: #888; font-size: 0.9rem; margin-bottom: 10px;}
.review-text {color: #555; line-height: 1.6;}
.review-date {color: #999; font-size: 0.85rem; margin-top: 10px;}

/* FAQ */
.faq-item {background: var(--white); padding: 25px; border-radius: 12px; margin-bottom: 20px; box-shadow: var(--shadow);}
.faq-question {font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-bottom: 10px;}
.faq-answer {color: #555; line-height: 1.7;}

/* Footer */
footer {background: var(--dark); color: var(--white); padding: 50px 20px 20px;}
.footer-grid {display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 30px;}
.footer-section h4 {color: var(--secondary); margin-bottom: 15px;}
.footer-section ul {list-style: none;}
.footer-section a {color: var(--white); text-decoration: none; display: block; margin-bottom: 8px; transition: color 0.3s;}
.footer-section a:hover {color: var(--secondary);}
.footer-bottom {text-align: center; padding-top: 30px; border-top: 1px solid #333; color: #999;}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {font-size: 2rem;}
  .hero p {font-size: 1.1rem;}
  h2 {font-size: 2rem;}
  .nav-links {flex-direction: column; gap: 1rem;}
}
