/* slot crazy v2 - 全新深绿色+金色墨西哥主题 CSS */

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

:root {
  --verde-esmeralda: #0F5132;
  --verde-medio: #198754;
  --verde-claro: #20C997;
  --oro: #FFD700;
  --oro-oscuro: #DAA520;
  --crema: #FFF8DC;
  --marron: #8B4513;
  --negro: #1A1A1A;
  --blanco: #FFFFFF;
  --sombra: rgba(15, 81, 50, 0.3);
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.8;
  color: var(--negro);
  background: linear-gradient(135deg, var(--crema) 0%, var(--blanco) 100%);
  min-height: 100vh;
}

/* Navegación */
header {
  background: linear-gradient(180deg, var(--verde-esmeralda) 0%, var(--verde-medio) 100%);
  padding: 1.5rem 0;
  box-shadow: 0 4px 12px var(--sombra);
  border-bottom: 3px solid var(--oro);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--oro);
}

.brand-name {
  font-size: 2rem;
  font-weight: bold;
  color: var(--oro);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  font-family: 'Georgia', serif;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.nav-menu a {
  color: var(--blanco);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.nav-menu a:hover {
  background: var(--oro);
  color: var(--verde-esmeralda);
  transform: translateY(-2px);
}

.cta-button {
  background: var(--oro);
  color: var(--verde-esmeralda);
  padding: 0.8rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  border: 2px solid var(--oro);
}

.cta-button:hover {
  background: var(--oro-oscuro);
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

.mobile-menu-toggle {
  display: none;
  background: var(--oro);
  color: var(--verde-esmeralda);
  border: none;
  padding: 0.8rem 1.2rem;
  font-size: 1.5rem;
  border-radius: 8px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 3rem;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15,81,50,0.85) 0%, rgba(25,135,84,0.75) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--blanco);
  max-width: 900px;
  padding: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: var(--oro);
  text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
  font-family: 'Georgia', serif;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Sections */
section {
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--verde-esmeralda);
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: bold;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--oro) 0%, var(--oro-oscuro) 100%);
  border-radius: 2px;
}

.section-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--negro);
  margin-bottom: 2rem;
}

/* Game Cards */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.game-card {
  background: var(--blanco);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px var(--sombra);
  transition: all 0.3s ease;
  border: 3px solid var(--verde-claro);
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px var(--sombra);
  border-color: var(--oro);
}

.game-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.game-info {
  padding: 1.5rem;
}

.game-title {
  font-size: 1.8rem;
  color: var(--verde-esmeralda);
  margin-bottom: 1rem;
  font-weight: bold;
}

.game-description {
  font-size: 1rem;
  color: var(--negro);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.game-button {
  display: inline-block;
  background: var(--oro);
  color: var(--verde-esmeralda);
  padding: 0.8rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid var(--oro);
}

.game-button:hover {
  background: var(--oro-oscuro);
  transform: scale(1.05);
}

/* Info Boxes */
.info-box {
  background: var(--blanco);
  border-left: 5px solid var(--oro);
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px var(--sombra);
}

.info-box h3 {
  color: var(--verde-esmeralda);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

/* Payment Methods */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.payment-item {
  background: var(--blanco);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 12px var(--sombra);
  border: 2px solid var(--verde-claro);
  transition: all 0.3s ease;
}

.payment-item:hover {
  border-color: var(--oro);
  transform: translateY(-5px);
}

.payment-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  object-fit: contain;
}

.payment-name {
  font-size: 1.3rem;
  color: var(--verde-esmeralda);
  font-weight: bold;
  margin-bottom: 0.5rem;
}

/* FAQ */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--blanco);
  margin-bottom: 1.5rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px var(--sombra);
  border: 2px solid var(--verde-claro);
}

.faq-question {
  background: var(--verde-medio);
  color: var(--blanco);
  padding: 1.5rem;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--verde-esmeralda);
}

.faq-answer {
  padding: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.review-card {
  background: var(--blanco);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 12px var(--sombra);
  border-left: 5px solid var(--oro);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.reviewer-name {
  font-weight: bold;
  color: var(--verde-esmeralda);
  font-size: 1.2rem;
}

.review-rating {
  color: var(--oro);
  font-size: 1.3rem;
}

.review-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.review-date {
  font-size: 0.9rem;
  color: #666;
}

/* Footer */
footer {
  background: linear-gradient(180deg, var(--verde-esmeralda) 0%, var(--verde-medio) 100%);
  color: var(--blanco);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
  border-top: 3px solid var(--oro);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--oro);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: var(--blanco);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--oro);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.9rem;
}

.license-badge {
  width: 100px;
  height: auto;
  margin-top: 1rem;
}

/* Breadcrumb */
.breadcrumb {
  background: var(--blanco);
  padding: 1rem 2rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--sombra);
}

.breadcrumb a {
  color: var(--verde-medio);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--oro);
}

.breadcrumb span {
  color: var(--negro);
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  .nav-menu.active {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .payment-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* Lazy Loading */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
  opacity: 1;
}
