/* 888win - Estilo Global (Verde Esmeralda + Dourado) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #e0e0e0;
  background: linear-gradient(135deg, #0a3d2c 0%, #1a1a1a 100%);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navegação (NÃO sticky) */
.main-nav {
  background: linear-gradient(90deg, #0f5132 0%, #1a6b47 100%);
  padding: 15px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  position: relative;
}

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

.logo-link img {
  height: 60px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  flex-wrap: wrap;
}

.nav-menu a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #fff;
}

.btn-play {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #0f5132;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 81, 50, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #fff;
  padding: 20px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  color: #ffd700;
}

.hero-subtitle {
  font-size: 24px;
  margin-bottom: 10px;
}

.hero-bonus {
  font-size: 20px;
  color: #ffed4e;
  margin-bottom: 25px;
}

.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #0f5132;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.btn-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.7);
}

/* Breadcrumb */
.breadcrumb {
  background: #1a1a1a;
  padding: 10px 0;
}

.breadcrumb ol {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  list-style: none;
  display: flex;
  gap: 10px;
}

.breadcrumb a {
  color: #ffd700;
  text-decoration: none;
}

/* Main Content */
.main-content {
  padding: 60px 0;
}

section {
  margin-bottom: 80px;
}

h2 {
  font-size: 36px;
  color: #ffd700;
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

h3 {
  font-size: 24px;
  color: #ffed4e;
  margin-bottom: 15px;
}

p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.8;
}

/* Feature Grid */
.features-grid,
.games-grid,
.payment-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card,
.game-card,
.payment-option,
.review-card {
  background: rgba(26, 107, 71, 0.2);
  border: 2px solid #0f5132;
  border-radius: 15px;
  padding: 25px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover,
.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.feature-card img,
.game-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Responsible Gaming */
.responsible-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.responsible-item {
  background: rgba(15, 81, 50, 0.3);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #ffd700;
}

.age-warning {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #ff6b6b;
  margin-top: 30px;
}

/* About Us */
.about-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.about-content img {
  flex: 1;
  min-width: 300px;
  border-radius: 15px;
}

.about-text {
  flex: 2;
  min-width: 300px;
}

.about-text ul {
  list-style: none;
  padding-left: 0;
}

.about-text li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

/* License */
.license-info {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-top: 30px;
  flex-wrap: wrap;
}

.license-info img {
  width: 200px;
  height: auto;
  border-radius: 10px;
}

.license-text ul {
  list-style: none;
  padding-left: 0;
}

.license-text li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

.license-text li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffd700;
  font-weight: bold;
}

/* Support Channels */
.support-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.support-channel {
  background: rgba(15, 81, 50, 0.3);
  padding: 25px;
  border-radius: 10px;
  border: 2px solid #0f5132;
}

/* FAQ */
.faq-item {
  background: rgba(26, 107, 71, 0.2);
  border-left: 4px solid #ffd700;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.faq-item h3 {
  color: #ffd700;
  margin-bottom: 10px;
}

/* Reviews */
.review-card {
  background: rgba(15, 81, 50, 0.3);
  border: 2px solid #0f5132;
}

.review-header {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  align-items: center;
}

.review-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-info {
  flex: 1;
}

.reviewer-location {
  display: block;
  color: #aaa;
  font-size: 14px;
}

.rating {
  color: #ffd700;
  font-size: 18px;
  margin-top: 5px;
}

.review-date {
  display: block;
  margin-top: 10px;
  color: #888;
  font-size: 14px;
}

/* Author Box */
.author-box {
  background: rgba(26, 107, 71, 0.3);
  border: 2px solid #ffd700;
  border-radius: 15px;
  padding: 30px;
  margin-top: 50px;
  display: flex;
  gap: 25px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.author-box img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #ffd700;
}

.author-info {
  flex: 1;
  min-width: 300px;
}

.author-info h3 {
  color: #ffd700;
  margin-bottom: 5px;
}

/* Footer */
.site-footer {
  background: linear-gradient(90deg, #0a3d2c 0%, #0f5132 100%);
  color: #e0e0e0;
  padding: 50px 0 20px;
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h4 {
  color: #ffd700;
  margin-bottom: 15px;
  font-size: 18px;
}

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

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #ffd700;
}

.age-restriction {
  color: #ff6b6b;
  font-weight: bold;
  margin-top: 15px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 215, 0, 0.3);
  padding-top: 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.footer-bottom p {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-bonus {
    font-size: 16px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .nav-menu {
    gap: 15px;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .license-info {
    flex-direction: column;
  }
  
  .author-box {
    flex-direction: column;
    text-align: center;
  }
  
  .author-box img {
    margin: 0 auto;
  }
}
