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

body {
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at 10% 20%, #0a0c1a, #03050b);
  color: #eee;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

canvas#three-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.wrapper {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 2rem 5rem;
}


.glass-card {
  background: rgba(15, 20, 35, 0.55);
  backdrop-filter: blur(12px);
  border-radius: 2rem;
  border: 1px solid rgba(0, 255, 255, 0.25);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.3),
    0 0 12px rgba(0, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.glass-card:hover {
  border-color: #0ff;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 18px #0ff;
  transform: translateY(-5px);
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: -0.5px;
}

.logo span:first-child {
  background: linear-gradient(135deg, #ffd966, #ffa500);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 8px rgba(255, 165, 0, 0.5);
}

.logo span:last-child {
  color: #0ff;
  font-size: 1.4rem;
  font-weight: 500;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 3rem 0 4rem;
}

.hero h1 {
  font-size: 3.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, #0ff, #b500ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 680px;
  opacity: 0.85;
  margin-bottom: 2rem;
}

.badge-portugal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 255, 0.15);
  padding: 0.5rem 1.2rem;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.9rem;
  backdrop-filter: blur(4px);
  border: 1px solid #0ff;
}

.advertiser-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 185, 67, 0.12);
  padding: 0.5rem 1rem;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.86rem;
  border: 1px solid rgba(255, 202, 118, 0.62);
  color: #ffe1a5;
}

.advertiser-pill i {
  color: #ffd966;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title i {
  color: #0ff;
  font-size: 2rem;
}

.operator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin: 2rem 0 3rem;
  align-items: stretch;
}

.operator-card {
  background: rgba(10, 14, 27, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 2rem;
  padding: 1.8rem 1.2rem;
  text-align: center;
  transition: 0.25s;
  border: 1px solid rgba(0, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.operator-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(0, 255, 255, 0.08) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.operator-card:hover::before {
  opacity: 1;
}

.operator-icon {
  width: 108px;
  height: 108px;
  margin: 0 auto 1rem;
  background: linear-gradient(145deg, #1e2a3a, #0b0f1c);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.1rem;
  font-weight: bold;
  color: #0ff;
  border: 1px solid #0ff;
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.5), 0 10px 24px rgba(0, 255, 255, 0.18);
  overflow: hidden;
}

.operator-name {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 0.5rem;
}

.operator-desc {
  font-size: 0.85rem;
  opacity: 0.8;
  margin: 1rem 0;
  flex-grow: 1;
}

.btn-neon {
  display: inline-block;
  background: none;
  border: 1.5px solid var(--accent, #0ff);
  color: var(--accent, #0ff);
  padding: 0.7rem 1.5rem;
  border-radius: 40px;
  font-weight: 600;
  margin-top: auto;
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
  font-size: 0.9rem;
  white-space: nowrap;
}

.btn-neon:hover {
  background: var(--accent, #0ff);
  color: #0a0c1a !important;
  box-shadow: 0 0 14px var(--accent, #0ff);
  transform: scale(1.02);
}

.feature-item {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  padding: 1rem 2rem;
  border-radius: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  border: 1px solid rgba(0, 255, 255, 0.4);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.feature-item i {
  font-size: 2rem;
  color: #ffd966;
  text-shadow: 0 0 5px #ffaa33;
}

.aviso {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  padding: 1.8rem;
  margin-top: 4rem;
  text-align: center;
  font-size: 0.8rem;
  border-left: 4px solid #0ff;
}

.intro-casino {
  margin-top: 2rem;
  border-radius: 28px;
  padding: 2.2rem;
  background: rgba(10, 14, 27, 0.48);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(95, 194, 255, 0.32);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.2rem;
  align-items: center;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.intro-casino::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 190%;
  background: radial-gradient(circle, rgba(103, 35, 255, 0.3), rgba(103, 35, 255, 0));
  pointer-events: none;
}

.intro-casino-content {
  max-width: 100%;
}

.intro-casino-eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: #89bfff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.intro-casino-content h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.1rem;
}

.intro-casino-content p {
  font-size: 1.03rem;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.9rem;
}

.intro-casino-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
}

.highlight-item {
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(143, 230, 255, 0.38);
  background: rgba(8, 21, 45, 0.55);
}

.highlight-item i {
  color: #57d1ff;
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}

.highlight-item h3 {
  font-size: 1.06rem;
  margin-bottom: 0.38rem;
  color: #fff;
}

.highlight-item p {
  font-size: 0.94rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
}

.content-section {
  margin-top: 2.2rem;
  border-radius: 22px;
  padding: 1.45rem;
  border: 1px solid rgba(96, 192, 255, 0.35);
  background: rgba(10, 14, 27, 0.45);
  backdrop-filter: blur(9px);
}

.content-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
  color: #fff;
}

.content-grid {
  display: grid;
  gap: 0.95rem;
}

.three-columns {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.payment-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.content-card {
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(117, 211, 255, 0.35);
  background: rgba(8, 19, 42, 0.52);
}

.content-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
  color: #f2f5ff;
}

.content-card p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.checklist-section {
  margin-top: 2rem;
  border-radius: 22px;
  padding: 1.45rem;
  border: 1px solid rgba(255, 205, 93, 0.4);
  background: rgba(26, 19, 4, 0.48);
}

.checklist-section h2 {
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  margin-bottom: 0.8rem;
}

.checklist-list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.checklist-list li {
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 120, 0.33);
  background: rgba(255, 186, 46, 0.08);
  line-height: 1.5;
}

.checklist-list li::before {
  content: '✓';
  color: #ffd966;
  font-weight: 800;
  margin-right: 0.55rem;
}

.faq-section {
  margin-top: 3.2rem;
}

.faq-title {
  text-align: center;
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  font-weight: 800;
  margin-bottom: 1.6rem;
  color: #ffffff;
}

.faq-title span {
  color: #7d8bff;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(10, 14, 27, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 2rem;
  border: 1px solid rgba(0, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  transition: 0.25s;
  padding: 1.2rem 1.3rem;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: transparent;
  border: none;
  text-align: left;
  color: inherit;
  cursor: pointer;
}

.faq-question h3 {
  font-size: clamp(1.05rem, 2vw, 1.9rem);
  line-height: 1.3;
  font-weight: 700;
  color: #f2f5ff;
}

.faq-toggle {
  flex-shrink: 0;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1px solid rgba(87, 209, 255, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  color: #57d1ff;
  text-shadow: 0 0 12px rgba(66, 177, 255, 0.65);
}

.faq-answer {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.58;
  max-width: 1100px;
}

.faq-answer p {
  margin: 0;
}

.compliance-section {
  margin-top: 2.2rem;
  border-radius: 22px;
  padding: 1.8rem;
  border: 1px solid rgba(125, 186, 255, 0.38);
  background: rgba(10, 14, 27, 0.44);
  backdrop-filter: blur(12px);
  box-shadow:
    inset 0 0 35px rgba(125, 186, 255, 0.08),
    0 14px 35px rgba(0, 0, 0, 0.35),
    0 0 24px rgba(32, 183, 255, 0.18);
  position: relative;
  overflow: hidden;
}

.compliance-section::before {
  content: '';
  position: absolute;
  top: -55%;
  left: -10%;
  width: 70%;
  height: 200%;
  background: radial-gradient(circle, rgba(84, 50, 255, 0.32), rgba(84, 50, 255, 0));
  pointer-events: none;
}

.compliance-section::after {
  content: '';
  position: absolute;
  right: -15%;
  bottom: -60%;
  width: 60%;
  height: 180%;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.16), rgba(0, 255, 255, 0));
  pointer-events: none;
}

.compliance-section h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.9rem;
  letter-spacing: 0.01em;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(108, 182, 255, 0.45);
  position: relative;
  z-index: 1;
}

.compliance-section p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 1000px;
  position: relative;
  z-index: 1;
}

.compliance-logos {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.compliance-logos span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  font-weight: 800;
  color: rgba(245, 248, 255, 0.92);
  opacity: 0.98;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(112, 194, 255, 0.45);
  background: rgba(7, 20, 48, 0.55);
  box-shadow: 0 0 0 1px rgba(125, 191, 255, 0.16), 0 0 16px rgba(63, 160, 255, 0.2);
}

footer {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.85rem;
  opacity: 0.85;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: #a8d9ff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-links a:hover {
  color: #0ff;
  border-color: #0ff;
}

footer p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-disclaimer {
  color: #ffd966;
  font-weight: 700;
  margin-bottom: 0.6rem;
  text-shadow: 0 0 10px rgba(255, 208, 102, 0.35);
}

.footer-advertiser {
  color: #ffe1a5;
  margin-bottom: 0.45rem;
}

@media (max-width: 700px) {
  .wrapper {
    padding: 1rem;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .operator-name {
    font-size: 1.5rem;
  }
  .intro-casino {
    grid-template-columns: 1fr;
    padding: 1.3rem;
    gap: 1.2rem;
  }
  .intro-casino-content h2 {
    font-size: 1.9rem;
  }
  .intro-casino-content p {
    font-size: 0.95rem;
  }
  .content-section,
  .checklist-section {
    padding: 1.15rem;
  }
  .faq-section {
    margin-top: 2.4rem;
  }
  .faq-item {
    padding: 1rem;
  }
  .faq-toggle {
    width: 1.9rem;
    height: 1.9rem;
    font-size: 1.3rem;
  }
  .faq-answer {
    font-size: 0.92rem;
  }
  .compliance-section {
    padding: 1.15rem;
  }
  .compliance-section h2 {
    font-size: 1.55rem;
  }
  .compliance-section p {
    font-size: 0.93rem;
  }
  .compliance-logos {
    gap: 0.8rem 1rem;
    margin-top: 1.1rem;
  }
  .compliance-logos span {
    font-size: 0.92rem;
    padding: 0.45rem 0.75rem;
  }
  footer {
    margin-top: 2.4rem;
  }
  .footer-links {
    gap: 0.5rem 1rem;
  }
  .footer-disclaimer {
    font-size: 0.82rem;
    line-height: 1.35;
  }
}
