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

body {
  font-family: 'Inter', sans-serif;
  background: #0a0c10;
  color: #eef2ff;
  line-height: 1.5;
  scroll-behavior: smooth;
}

.bg-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, #0f172a, #030712);
  z-index: -2;
}
.bg-glow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 800" opacity="0.08"><path fill="none" stroke="%23ffffff" stroke-width="1" d="M0 400 L800 400 M400 0 L400 800 M200 200 L600 600 M200 600 L600 200"/><circle cx="400" cy="400" r="120" stroke="white" fill="none"/><polygon points="400,280 500,360 460,480 340,480 300,360" stroke="white" fill="none"/></svg>');
  background-repeat: repeat;
  pointer-events: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.entity-highlight {
  background: rgba(255, 184, 71, 0.16);
  border: 1px solid rgba(255, 184, 71, 0.65);
  color: #ffd88c;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 0 1px rgba(255, 184, 71, 0.25), 0 8px 20px rgba(0, 0, 0, 0.25);
}
.entity-highlight strong {
  color: #fff6de;
}
.logo {
  font-size: 1.9rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffd966, #ffa500);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
}
.logo span {
  font-size: 1rem;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #ffb347;
  font-weight: 500;
}
.cta-btn {
  background: linear-gradient(95deg, #f5b042, #e67e22);
  border: none;
  padding: 12px 28px;
  border-radius: 48px;
  font-weight: 700;
  font-size: 1rem;
  color: #0a0c10;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
  text-decoration: none;
  display: inline-block;
}
.cta-btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(95deg, #ffbe5e, #f39c12);
  box-shadow: 0 12px 28px rgba(230, 126, 34, 0.5);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 60px 0 40px;
  gap: 40px;
}
.hero-content {
  flex: 1.2;
}
.hero-badge {
  background: rgba(255, 165, 0, 0.15);
  display: inline-block;
  padding: 6px 14px;
  border-radius: 40px;
  color: #ffb347;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 165, 0, 0.3);
}
.entity-chip {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 14px;
  border-radius: 40px;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 184, 71, 0.45);
  color: #ffd88c;
  font-size: 0.86rem;
}
.entity-chip strong {
  color: #fff2cc;
}
.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #edf2ff;
}
.hero p {
  font-size: 1.2rem;
  color: #b9c3dd;
  max-width: 550px;
  margin-bottom: 28px;
}
.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}
.stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.stat i {
  color: #f1c40f;
  font-size: 1.3rem;
}
.hero-image {
  flex: 1;
  text-align: center;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin: 60px 0 30px;
  position: relative;
}
.section-title span {
  background: linear-gradient(120deg, #ffd966, #ff9500);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin: 40px 0;
}
.entity-banner {
  margin: 0 auto 24px;
  max-width: 980px;
  text-align: center;
  background: linear-gradient(90deg, rgba(255, 166, 0, 0.2), rgba(245, 176, 65, 0.08));
  border: 1px solid rgba(255, 184, 71, 0.45);
  border-radius: 16px;
  padding: 12px 18px;
  color: #ffe1a6;
  font-size: 0.92rem;
}
.entity-banner strong {
  color: #fff6df;
}
.feature-card {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 32px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s;
}
.feature-card:hover {
  border-color: #f39c12;
  transform: translateY(-5px);
  background: rgba(30, 41, 59, 0.7);
}
.feature-card i {
  font-size: 2.8rem;
  color: #f1c40f;
  margin-bottom: 18px;
}
.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.testimonials {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 48px;
  padding: 40px 20px;
  margin: 40px 0;
}
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}
.testimonial-card {
  background: #111827;
  border-radius: 28px;
  padding: 28px;
  width: 300px;
  flex: 1 1 280px;
  border: 1px solid #2d3748;
  transition: all 0.2s;
}
.testimonial-card:hover {
  border-color: #f5b042;
}
.content-block {
  background: rgba(10, 16, 30, 0.75);
  border: 1px solid rgba(255, 184, 71, 0.25);
  border-radius: 28px;
  padding: 28px 26px;
  margin: 34px 0;
}
.content-block.alt {
  background: rgba(17, 24, 39, 0.85);
  border-color: rgba(245, 176, 66, 0.4);
}
.content-block h2 {
  font-size: 1.8rem;
  margin-bottom: 14px;
  color: #fff5dc;
}
.content-block p {
  color: #d2d8e8;
  margin-bottom: 12px;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 30px 0 40px;
}
.info-card {
  background: rgba(2, 6, 23, 0.75);
  border: 1px solid rgba(255, 184, 71, 0.25);
  border-radius: 22px;
  padding: 22px 18px;
}
.info-card h3 {
  font-size: 1.1rem;
  color: #ffdf9b;
  margin-bottom: 10px;
}
.info-card p {
  color: #c8d0e4;
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.faq-section {
  margin: 40px 0;
  padding: 30px 24px;
  border-radius: 30px;
  border: 1px solid rgba(255, 184, 71, 0.28);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.8), rgba(2, 6, 23, 0.95));
}
.faq-section h2 {
  text-align: center;
  margin-bottom: 18px;
  font-size: 1.9rem;
  color: #fff3d1;
}
.faq-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.faq-item {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 184, 71, 0.25);
  border-radius: 16px;
  padding: 16px 14px;
}
.faq-item h4 {
  color: #ffe1a1;
  margin-bottom: 8px;
  font-size: 1rem;
}
.faq-item p {
  color: #d7def0;
  font-size: 0.92rem;
}
.compliance-box {
  margin: 36px 0;
  padding: 24px 22px;
  border-radius: 20px;
  border: 1px solid rgba(255, 184, 71, 0.4);
  background: rgba(15, 23, 42, 0.72);
}
.compliance-box h2 {
  margin-bottom: 12px;
  font-size: 1.5rem;
  color: #fff0cd;
}
.compliance-box ul {
  padding-left: 18px;
}
.compliance-box li {
  margin-bottom: 8px;
  color: #d5dcef;
}
.ranking-section {
  margin: 36px 0;
}
.ranking-section h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: #fff0cd;
}
.ranking-section > p {
  color: #cfd7ea;
  margin-bottom: 18px;
}
.rank-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.rank-card {
  background: rgba(2, 6, 23, 0.78);
  border: 1px solid rgba(255, 184, 71, 0.3);
  border-radius: 16px;
  padding: 16px 14px;
}
.rank-card h3 {
  color: #ffe3a6;
  margin-bottom: 8px;
}
.rank-card p {
  font-size: 0.92rem;
  color: #d1d9eb;
  margin-bottom: 6px;
}
.bonus-terms {
  margin: 34px 0 44px;
  padding: 26px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 184, 71, 0.3);
  background: rgba(17, 24, 39, 0.72);
}
.bonus-terms h2 {
  font-size: 1.7rem;
  margin-bottom: 12px;
  color: #fff0cd;
}
.bonus-terms > p {
  color: #d2d9ea;
  margin-bottom: 16px;
}
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.bonus-item {
  border: 1px solid rgba(255, 184, 71, 0.25);
  border-radius: 14px;
  padding: 14px 12px;
  background: rgba(30, 41, 59, 0.45);
}
.bonus-item h4 {
  color: #ffe4aa;
  margin-bottom: 6px;
}
.bonus-item p {
  color: #d4dbed;
  font-size: 0.9rem;
}
.stars {
  color: #ffb347;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: #d1d5db;
}
.user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.user-avatar {
  background: #f39c12;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.responsible {
  background: linear-gradient(135deg, #0f172a, #020617);
  border-radius: 48px;
  padding: 40px;
  margin: 50px 0;
  text-align: center;
  border: 1px solid rgba(255, 165, 0, 0.3);
}
.responsible-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.responsible-icons i {
  font-size: 2.8rem;
  color: #e67e22;
}
.btn-jugar {
  background: linear-gradient(135deg, #28a745, #1f8b4c);
  box-shadow: 0 8px 18px rgba(40, 167, 69, 0.3);
  margin-top: 20px;
  display: inline-block;
  padding: 14px 42px;
  font-size: 1.2rem;
  border: none;
  color: white;
}
.btn-jugar:hover {
  background: linear-gradient(135deg, #34ce57, #28a745);
  transform: translateY(-1px);
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0 30px;
  margin-top: 40px;
  font-size: 0.85rem;
  text-align: center;
  color: #9ca3af;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}
.legal {
  font-size: 0.75rem;
  max-width: 800px;
  margin: 15px auto;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .entity-highlight {
    width: 100%;
    justify-content: center;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .content-block {
    padding: 22px 18px;
  }
  .content-block h2 {
    font-size: 1.45rem;
  }
  .faq-section {
    padding: 24px 16px;
  }
  .compliance-box,
  .bonus-terms {
    padding: 20px 16px;
  }
  .ranking-section h2,
  .bonus-terms h2 {
    font-size: 1.45rem;
  }
  .container {
    padding: 0 20px;
  }
}
button,
a.cta-btn {
  cursor: pointer;
}
