/* 15win - CSS全新设计 - 翠绿金配色奢华巴西风格 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* 顶部容器 - 非sticky */
.topo-container {
  background: linear-gradient(135deg, #0d5c3d 0%, #1a8f5f 100%);
  padding: 1.5rem 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.logo-area {
  text-align: center;
  margin-bottom: 1.2rem;
}

.logo-area img {
  max-width: 280px;
  height: auto;
}

/* 导航栏 */
.nav-principal {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-principal ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-principal a {
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.1);
}

.nav-principal a:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.btn-cta {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%) !important;
  color: #0d5c3d !important;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(212,175,55,0.4);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(212,175,55,0.6);
}

/* Hero Banner */
.hero-banner {
  background: linear-gradient(135deg, #1a8f5f 0%, #0d5c3d 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  line-height: 1.3;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.btn-hero {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #0d5c3d;
  padding: 1rem 2.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(212,175,55,0.5);
  transition: all 0.3s ease;
}

.btn-hero:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(212,175,55,0.7);
}

/* 主内容区 */
.conteudo-principal {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 20px;
}

article {
  background: #fff;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

h2 {
  color: #0d5c3d;
  font-size: 2rem;
  margin-bottom: 1.2rem;
  border-left: 5px solid #d4af37;
  padding-left: 1rem;
}

h3 {
  color: #1a8f5f;
  font-size: 1.5rem;
  margin-top: 1.8rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.2rem;
  text-align: justify;
}

ul, ol {
  margin-left: 2rem;
  margin-bottom: 1.2rem;
}

li {
  margin-bottom: 0.6rem;
}

strong {
  color: #0d5c3d;
  font-weight: 700;
}

/* 差异化网格 */
.grid-diferenciais {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.diferencial-item {
  background: linear-gradient(135deg, #f8fdf9 0%, #e8f5ec 100%);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid #d4af37;
  transition: all 0.3s ease;
}

.diferencial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(13,92,61,0.15);
}

.diferencial-item h3 {
  color: #0d5c3d;
  margin-top: 0;
  font-size: 1.4rem;
}

/* 游戏网格 */
.grid-jogos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.jogo-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.jogo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.jogo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.jogo-card h3 {
  color: #0d5c3d;
  padding: 1rem 1.5rem 0.5rem;
  margin: 0;
}

.jogo-card p {
  padding: 0 1.5rem;
  font-size: 0.95rem;
}

.btn-jogo {
  display: block;
  background: linear-gradient(135deg, #1a8f5f 0%, #0d5c3d 100%);
  color: #fff;
  text-align: center;
  padding: 0.8rem;
  margin: 1rem 1.5rem 1.5rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-jogo:hover {
  background: linear-gradient(135deg, #0d5c3d 0%, #1a8f5f 100%);
  transform: translateY(-2px);
}

/* Bonus列表 */
.bonus-lista, .pagamento-lista, .suporte-lista {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.bonus-item, .pagamento-item, .suporte-item {
  background: linear-gradient(135deg, #fffef8 0%, #fef9e7 100%);
  padding: 2rem;
  border-radius: 12px;
  border-left: 5px solid #d4af37;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.bonus-item h3, .pagamento-item h3, .suporte-item h3 {
  color: #0d5c3d;
  margin-top: 0;
}

/* FAQ */
.faq-item {
  background: #f8fdf9;
  padding: 1.8rem;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #1a8f5f;
}

.faq-item h3 {
  color: #0d5c3d;
  margin-top: 0;
  font-size: 1.2rem;
}

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

.avaliacao-card {
  background: linear-gradient(135deg, #fff 0%, #f8fdf9 100%);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-top: 4px solid #d4af37;
}

.avaliacao-estrelas {
  font-size: 1.5rem;
  color: #d4af37;
  margin-bottom: 1rem;
}

.avaliacao-autor {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #666;
}

/* 作者信息 */
.autor-card {
  background: linear-gradient(135deg, #e8f5ec 0%, #f0f9f3 100%);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid #1a8f5f;
}

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg, #1a8f5f 0%, #0d5c3d 100%);
  color: #fff;
  padding: 3rem;
  text-align: center;
  border-radius: 12px;
  margin: 3rem 0;
}

.cta-box h3 {
  color: #fff;
  font-size: 2rem;
  margin-top: 0;
}

.btn-cta-grande {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #0d5c3d;
  padding: 1.2rem 3rem;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(212,175,55,0.5);
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.btn-cta-grande:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(212,175,55,0.7);
}

/* 页脚 */
.rodape {
  background: linear-gradient(135deg, #0d5c3d 0%, #0a4a2f 100%);
  color: #fff;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

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

.rodape-secao h3 {
  color: #d4af37;
  margin-bottom: 1rem;
}

.rodape-secao ul {
  list-style: none;
  margin: 0;
}

.rodape-secao li {
  margin-bottom: 0.5rem;
}

.rodape-secao a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.rodape-secao a:hover {
  opacity: 1;
  text-decoration: underline;
}

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

/* 内页样式 */
.pagina-interna {
  line-height: 1.8;
}

.pagina-interna h1 {
  color: #0d5c3d;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid #d4af37;
  padding-bottom: 1rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .nav-principal ul {
    flex-direction: column;
    align-items: center;
  }
  
  .grid-diferenciais,
  .grid-jogos,
  .avaliacoes-grid {
    grid-template-columns: 1fr;
  }
  
  article {
    padding: 1.5rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
}
