:root {
  /* EXACT COLOR SCHEME FROM USER SCREENSHOT */
  --bg-body: #102642;
  --bg-card: #17385c;
  --bg-card-alt: #1a4269;
  --border-card: rgba(0, 210, 255, 0.25);
  --border-glow: rgba(0, 210, 255, 0.5);

  --text-white: #ffffff;
  --text-main: #d0e3f7;
  --text-muted: #82a5c4;

  --blue-accent: #0073e6;
  --cyan-accent: #00d2ff;
  --green-main: #4eb824;
  --green-hover: #5cd32d;

  /* LARGER BORDER RADIUS FOR ALL ELEMENTS */
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
}

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

body {
  background-color: var(--bg-body);
  background-image:
    radial-gradient(
      circle at 10% 10%,
      rgba(0, 210, 255, 0.12) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(0, 115, 230, 0.15) 0%,
      transparent 40%
    );
  background-attachment: fixed;
  color: var(--text-main);
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 1.6;
  padding-bottom: 70px;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* PULSATING CYAN WAVES ANIMATION FOR TEXT CTAs */
@keyframes pulse-cyan-wave {
  0% {
    box-shadow:
      0 0 0 0 rgba(0, 210, 255, 0.75),
      0 4px 15px rgba(78, 184, 36, 0.4);
  }
  70% {
    box-shadow:
      0 0 0 18px rgba(0, 210, 255, 0),
      0 6px 20px rgba(78, 184, 36, 0.6);
  }
  100% {
    box-shadow:
      0 0 0 0 rgba(0, 210, 255, 0),
      0 4px 15px rgba(78, 184, 36, 0.4);
  }
}

/* AUTHENTIC LOGO */
.brand-logo {
  display: inline-flex;
  align-items: center;
  font-style: italic;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -1px;
  user-select: none;
}

.brand-logo .logo-1x {
  color: #ffffff;
}
.brand-logo .logo-bet {
  color: #00d2ff;
}

/* HEADER */
.top-header {
  background: rgba(16, 38, 66, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-card);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header-auth {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.5px;
}

.btn-green-hdr {
  background: linear-gradient(180deg, #5cd32d 0%, #389e18 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(78, 184, 36, 0.35);
}
.btn-green-hdr:hover {
  background: linear-gradient(180deg, #6bf033 0%, #44b31d 100%);
  transform: translateY(-1px);
}

.btn-blue-hdr {
  background: linear-gradient(180deg, #0088ff 0%, #0055b8 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 115, 230, 0.35);
}
.btn-blue-hdr:hover {
  background: linear-gradient(180deg, #1aa0ff 0%, #0066d6 100%);
  transform: translateY(-1px);
}

/* ALL IN-TEXT CTA BUTTONS: GREEN WITH PULSATING CYAN WAVES */
.btn-cta-pulse {
  background: linear-gradient(180deg, #5cd32d 0%, #328f14 100%);
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  padding: 15px 34px;
  font-size: 14px;
  letter-spacing: 0.5px;
  animation: pulse-cyan-wave 2s infinite;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-cta-pulse:hover {
  background: linear-gradient(180deg, #6ef238 0%, #3ca818 100%);
  transform: translateY(-2px) scale(1.02);
}

/* HERO BANNER */
.hero-banner {
  background: linear-gradient(135deg, #17385c 0%, #112a4a 100%);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 46px 28px;
  margin: 24px 0 32px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 650px;
  height: 220px;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 210, 255, 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-title {
  color: var(--text-white);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 12px;
  text-align: center;
  position: relative;
}

.hero-subtext {
  color: var(--text-main);
  font-size: 15px;
  margin: 0 auto 28px auto;
  max-width: 680px;
  line-height: 1.6;
  text-align: center;
  position: relative;
}

/* GLASS CARDS WITH LARGER BORDER RADIUS */
.section {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.section:hover {
  border-color: var(--border-glow);
  box-shadow: 0 12px 35px rgba(0, 210, 255, 0.15);
}

h1,
h2 {
  color: var(--text-white);
  font-size: 22px;
  font-weight: 800;
  margin: 8px 0 20px 0;
  line-height: 1.35;
  text-align: center;
  position: relative;
}

h2.section-h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-accent), var(--cyan-accent));
  margin: 10px auto 0 auto;
  border-radius: 3px;
}

p.paragraph {
  color: var(--text-main);
  margin-bottom: 14px;
  line-height: 1.7;
}

/* GRIDS WITH LARGER ROUNDED TILES */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 16px 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 16px 0;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 16px 0;
}

.feature-tile {
  background: var(--bg-card-alt);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: all 0.25s ease;
}

.feature-tile:hover {
  border-color: var(--cyan-accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 210, 255, 0.2);
}

.feature-tile-title {
  color: var(--text-white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-tile-desc {
  color: var(--text-main);
  font-size: 13px;
  line-height: 1.5;
}

/* ROUNDED TABLES */
.table-container {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px;
  background: var(--bg-card-alt);
}

.custom-table th {
  background: rgba(0, 115, 230, 0.35);
  color: var(--text-white);
  font-weight: 700;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-card);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.custom-table td {
  padding: 12px 18px;
  border-bottom: 1px solid rgba(0, 210, 255, 0.1);
  color: var(--text-main);
}

.custom-table tr:last-child td {
  border-bottom: none;
}

.custom-table tr:hover td {
  background: rgba(0, 210, 255, 0.08);
  color: var(--text-white);
}

/* BULLET LISTS */
.general-ul {
  list-style: none;
  margin: 14px 0 20px 0;
  padding: 0;
}

.general-ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--text-main);
  line-height: 1.6;
}

.general-ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--cyan-accent);
  border-radius: 3px;
  box-shadow: 0 0 10px var(--cyan-accent);
}

/* STEP BOXES WITH ROUNDED BADGES */
.step-box {
  background: var(--bg-card-alt);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.step-badge {
  background: linear-gradient(135deg, var(--blue-accent), var(--cyan-accent));
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0, 210, 255, 0.4);
}

.cta-center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 28px 0;
}

/* CLICKABLE BONUS CARDS WITH LARGE ROUNDING */
.bonus-card {
  background: linear-gradient(135deg, #1a4269 0%, #122f4e 100%);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 115px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.bonus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
  transition: left 0.5s ease;
}

.bonus-card:hover::before {
  left: 100%;
}

.bonus-card:hover {
  border-color: var(--cyan-accent);
  box-shadow: 0 10px 28px rgba(0, 210, 255, 0.3);
  transform: translateY(-4px);
}

.bonus-card-title {
  color: var(--text-white);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 8px;
}

.bonus-card-btn {
  color: var(--cyan-accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* FAQ CARDS */
.faq-card {
  background: var(--bg-card-alt);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-bottom: 14px;
}

h3.faq-title {
  color: var(--text-white);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 10px;
  text-align: center;
  line-height: 1.4;
}

/* FOOTER WITH ROUNDED PAYMENT BADGES IN CENTER */
.site-footer {
  background: rgba(10, 26, 48, 0.95);
  border-top: 1px solid var(--border-card);
  padding: 40px 0 24px 0;
  margin-top: 60px;
}

.footer-block-title {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 16px;
}

.badges-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.badge-item {
  background: var(--bg-card-alt);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  color: var(--text-main);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 210, 255, 0.15);
  padding-top: 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}

/* STICKY BOTTOM BAR FOR MOBILE */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 26, 48, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-card);
  padding: 10px 16px;
  z-index: 1000;
  display: none;
}

.mobile-sticky-inner {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.mobile-sticky-inner .btn-action {
  flex: 1;
}

@media (max-width: 900px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 24px;
  }
  .mobile-sticky-bar {
    display: block;
  }
}

.logo img {
  display: block;
  max-width: 100%;
  height: auto;
}
