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

body {
  background: #0a0a1a;
  font-family: 'Inter', sans-serif;
  color: #eee;
  line-height: 1.5;
  overflow-x: hidden;
}

.card-glow:hover {
  box-shadow:
    0 0 15px #ff44c6,
    0 10px 25px -5px rgba(0, 0, 0, 0.6);
  transform: translateY(-5px);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  background: rgba(5, 5, 20, 0.85);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 255, 255, 0.3);
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 18px 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: 'Orbitron', monospace;
  background: linear-gradient(135deg, #ff44cc, #00ffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
}

.logo span {
  color: #00ffff;
  text-shadow: 0 0 5px cyan;
}

.nav-menu {
  display: flex;
  gap: 28px;
  font-weight: 600;
}

.nav-menu a {
  text-decoration: none;
  color: #ddd;
  transition: 0.2s;
  font-size: 0.95rem;
}

.nav-menu a:hover {
  color: #ff66cc;
  text-shadow: 0 0 4px #ff66cc;
}

.btn-neon {
  display: inline-block;
  background: linear-gradient(90deg, #ff00cc, #3333ff);
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  transition: 0.2s;
  box-shadow: 0 0 5px #ff00cc;
  border: none;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
}

.btn-neon:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px #ff44cc;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0 40px;
  gap: 30px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 3.2rem;
  font-family: 'Orbitron', monospace;
  background: linear-gradient(135deg, #fff, #ff66cc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 550px;
}

.section-title {
  font-size: 2.2rem;
  font-family: 'Orbitron', monospace;
  margin: 48px 0 32px 0;
  text-align: center;
  position: relative;
}

.section-title:after {
  content: '';
  width: 100px;
  height: 3px;
  background: #ff44cc;
  display: block;
  margin: 12px auto 0;
  border-radius: 10px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: rgba(29, 29, 102, 0.8);
  backdrop-filter: blur(5px);
  border-radius: 32px;
  padding: 24px;
  border: 1px solid rgba(0, 255, 255, 0.3);
  transition: 0.25s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.card-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-title {
  font-size: 1.3rem;
}

.card-header img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 16px;
  padding: 6px;
}

.rating {
  color: gold;
  font-weight: bold;
}

.bonus {
  background: #ff33661a;
  padding: 8px 12px;
  border-radius: 24px;
  margin: 12px 0;
  font-size: 0.9rem;
  border-left: 3px solid #ff66cc;
}

.payment-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 15px 0;
  align-items: center;
}

.payment-icons i {
  font-size: 26px;
  color: #ddd;
}

.btn-jogue {
  display: block;
  text-align: center;
  background: #bd16d6;
  padding: 12px;
  border-radius: 40px;
  margin-top: 20px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  transition: 0.2s;
  border: 1px solid cyan;
  margin-top: auto;
}

.compare-table {
  background: #0e0e20;
  border-radius: 28px;
  overflow-x: auto;
  padding: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 16px 12px;
  text-align: left;
  border-bottom: 1px solid #2a2a4a;
}

th {
  font-family: 'Orbitron', sans-serif;
  color: #ff66cc;
}

.faq-item {
  background: #111122;
  margin-bottom: 16px;
  border-radius: 20px;
  overflow: hidden;
}

.faq-question {
  background: #1e1e36;
  padding: 18px 24px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: #bbb;
}

.faq-item.active .faq-answer {
  padding: 20px 24px;
  max-height: 300px;
}

.swiper {
  padding: 20px 0 40px;
}

.review-card {
  background: #15152e;
  border-radius: 28px;
  padding: 24px;
  text-align: center;
}

.review-card i {
  font-size: 42px;
  color: #ff44cc;
}

.regulators {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.regulator-item {
  background: rgba(16, 16, 38, 0.8);
  border: 1px solid rgba(0, 255, 255, 0.25);
  border-radius: 24px;
  padding: 18px;
  text-align: center;
}

.regulator-item a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  margin-bottom: 12px;
  opacity: 0.85;
  transition: 0.2s;
}

.regulator-item a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.regulator-item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.regulator-item p {
  color: #c7c7d4;
  font-size: 0.92rem;
}

.regulators img {
  height: 55px;
  filter: brightness(0.8) contrast(1.2);
}

.regulators img.logo-no-bg {
  mix-blend-mode: screen;
}

.responsible {
  background: linear-gradient(95deg, #ff336620, #00000080);
  border-radius: 60px;
  padding: 28px;
  text-align: center;
  border: 2px solid #ff66aa;
  margin: 30px 0;
}

footer {
  border-top: 1px solid cyan;
  margin-top: 60px;
  padding: 40px 0 30px;
  background: #050510;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-bottom: 25px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
}

.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  color: #888;
}

@media (max-width: 760px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }

  .header-flex {
    flex-direction: column;
    gap: 15px;
  }

  .nav-menu {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (min-width: 1100px) {
  .platform-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .platform-grid .card {
    grid-column: span 2;
  }

  .platform-grid .card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .platform-grid .card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}
