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

:root {
  color-scheme: dark;
  --bg: #0a0c12;
  --panel: rgba(18, 22, 40, 0.72);
  --panel-strong: #101524;
  --line: rgba(245, 176, 66, 0.24);
  --gold: #f5b042;
  --gold-2: #ffd966;
  --text: #eef2ff;
  --muted: #b9c3e6;
  --blue-muted: #8892b0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  font-family: Inter, Outfit, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(145deg, #0a0c12 0%, #10141f 100%);
}

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

p {
  color: var(--muted);
  line-height: 1.6;
}

.floating-bill {
  position: fixed;
  z-index: 1;
  pointer-events: none;
  color: var(--gold);
  font-size: 2rem;
  opacity: 0.1;
  animation: floatBill 18s infinite linear;
}

.bill-1 { left: 5%; animation-duration: 22s; animation-delay: 0s; }
.bill-2 { left: 15%; animation-duration: 19s; animation-delay: 3s; }
.bill-3 { left: 35%; animation-duration: 25s; animation-delay: 1s; }
.bill-4 { left: 70%; animation-duration: 27s; animation-delay: 0.5s; }
.bill-5 { left: 88%; animation-duration: 18s; animation-delay: 7s; }

@keyframes floatBill {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.15; }
  90% { opacity: 0.15; }
  100% { transform: translateY(-20vh) rotate(15deg); opacity: 0; }
}

.container {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 1.875rem);
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.logo,
.nav-links,
.stats,
.payout-header,
.footer-links {
  display: flex;
  align-items: center;
}

.logo {
  gap: 0.75rem;
}

.logo-icon {
  display: inline-flex;
  width: 2.45rem;
  height: 2.45rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  color: #0a0c12;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  filter: drop-shadow(0 0 8px rgba(245, 197, 24, 0.4));
}

.logo h1 {
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  font-weight: 900;
  letter-spacing: 0;
  background: linear-gradient(135deg, #fff8e7, var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 2rem);
}

.nav-links a {
  color: #cdd9ff;
  font-weight: 650;
}

.nav-links a:hover {
  color: var(--gold-2);
}

.btn-outline-gold,
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  border-radius: 40px;
  font-weight: 900;
  white-space: nowrap;
}

.btn-outline-gold {
  padding: 0 1.25rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-gold {
  padding: 0 2rem;
  border: 0;
  color: #0a0c12;
  background: linear-gradient(105deg, var(--gold) 0%, var(--gold-2) 100%);
  box-shadow: 0 10px 20px -8px rgba(245, 176, 66, 0.3);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.9fr);
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) 0 2.5rem;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.9rem;
  border-radius: 40px;
  color: #ffdd77;
  background: rgba(255, 215, 0, 0.12);
  font-size: 0.85rem;
  font-weight: 850;
}

.hero h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.6rem, 6vw, 4.7rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h2 span,
.section-title span {
  color: var(--gold);
  border-bottom: 3px solid var(--gold);
}

.hero-desc {
  max-width: 36rem;
  margin-bottom: 2rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.hero-button {
  min-height: 3.35rem;
}

.stats {
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat-item {
  min-width: 10rem;
  padding: 0.75rem 1.35rem;
  border: 1px solid rgba(245, 176, 66, 0.3);
  border-radius: 28px;
  background: rgba(20, 25, 45, 0.6);
}

.stat-item strong {
  display: block;
  color: var(--gold);
  font-size: 1.8rem;
}

.stat-item span {
  color: var(--muted);
}

.hero-right {
  padding: 1.25rem;
  border-radius: 60px;
  background: radial-gradient(ellipse at 30% 40%, rgba(245, 176, 66, 0.15), transparent 70%);
  text-align: center;
}

.mock-slot {
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(245, 176, 66, 0.2);
  border-radius: 48px;
  background: #0e1222;
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.reel-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.6rem, 2vw, 1.25rem);
  margin-bottom: 1.5rem;
}

.reel {
  display: flex;
  min-height: clamp(6rem, 12vw, 7.5rem);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  color: var(--gold);
  background: #1a1f30;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5), 0 5px 10px rgba(0, 0, 0, 0.3);
}

.reel strong {
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 1;
}

.reel span {
  margin-top: 0.25rem;
  font-size: 0.8rem;
}

.cash-prize {
  display: inline-block;
  padding: 0.65rem 1.2rem;
  border-radius: 40px;
  color: #f7edd7;
  background: rgba(1, 1, 1, 0.44);
  font-size: 1.1rem;
  font-weight: 900;
}

.section-title {
  margin: clamp(4rem, 8vw, 5rem) 0 2.5rem;
  text-align: center;
  font-size: clamp(2rem, 4.4vw, 2.7rem);
  line-height: 1.08;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.feature-card {
  min-height: 17rem;
  padding: 1.8rem 1.5rem;
  border: 1px solid rgba(255, 200, 100, 0.15);
  border-radius: 32px;
  background: var(--panel);
  text-align: center;
}

.feature-icon {
  display: inline-flex;
  width: 3.7rem;
  height: 3.7rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border-radius: 1rem;
  color: #0a0c12;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  font-size: 1.45rem;
  font-weight: 900;
}

.feature-card h3,
.withdrawal-band h3,
.company-cards h3 {
  margin-bottom: 0.8rem;
  color: var(--text);
  font-size: 1.45rem;
}

.payout-section {
  margin: 3.5rem 0;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  border: 1px solid #2a2f42;
  border-radius: 56px;
  background: linear-gradient(120deg, #0b0f1a, #111622);
}

.payout-header {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.payout-header h2 {
  margin-bottom: 0.5rem;
  color: var(--text);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.payout-header span {
  padding: 0.45rem 0.8rem;
  border-radius: 60px;
  color: var(--gold-2);
  background: rgba(245, 176, 66, 0.12);
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 42rem;
  border-collapse: collapse;
}

th,
td {
  padding: 0.9rem 0.75rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  text-align: left;
}

th {
  color: var(--gold);
  font-weight: 800;
}

td {
  color: #dbe3ff;
}

.table-note {
  margin-top: 1.25rem;
  font-size: 0.9rem;
}

.rewards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.withdrawal-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
  padding: clamp(1.4rem, 4vw, 2rem);
  border-radius: 48px;
  background: var(--panel-strong);
}

.withdrawal-band article span {
  display: block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 2.6rem;
}

.company-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  margin: 4rem 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(245, 176, 66, 0.2);
  border-radius: 56px;
  background: linear-gradient(135deg, rgba(245, 176, 66, 0.08), rgba(20, 25, 45, 0.75));
}

.company-kicker {
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.company-copy h2,
.contact-section h2,
.cta-section h2 {
  margin-bottom: 1rem;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.company-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.company-cards article,
.contact-section address {
  padding: 1.25rem;
  border: 1px solid rgba(255, 200, 100, 0.15);
  border-radius: 24px;
  background: rgba(18, 22, 40, 0.72);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(20rem, 1fr);
  gap: 2rem;
  align-items: start;
  margin: 3rem 0;
}

address {
  font-style: normal;
}

address p {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.16);
}

address p:last-child {
  border-bottom: 0;
}

address strong {
  color: var(--text);
}

address span,
address a {
  color: var(--muted);
  text-align: right;
}

address a {
  color: #ffdf8c;
  font-weight: 800;
}

.cta-section {
  margin: 4rem 0;
  padding: clamp(2rem, 5vw, 3.75rem) clamp(1.25rem, 4vw, 2.5rem);
  border-radius: 60px;
  background: radial-gradient(ellipse at 70% 20%, rgba(245, 176, 66, 0.13), #020617);
  text-align: center;
}

.cta-icon {
  margin-bottom: 1rem;
  color: var(--gold-2);
  font-size: 3rem;
}

.cta-section p {
  max-width: 39rem;
  margin: 0 auto 1.5rem;
}

.cta-button {
  min-height: 3.5rem;
  font-size: 1.08rem;
}

.responsible {
  margin-top: 2.35rem;
  font-size: 0.8rem;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding: 2.5rem 0 1.875rem;
  border-top: 1px solid #2a2f42;
  color: var(--blue-muted);
  font-size: 0.9rem;
}

.footer-links {
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-links a {
  color: var(--blue-muted);
}

@media (max-width: 1000px) {
  .nav-links {
    width: 100%;
    justify-content: center;
  }

  .hero,
  .company-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .navbar {
    justify-content: center;
  }

  .nav-links {
    gap: 0.75rem;
  }

  .nav-links > a:not(.btn-outline-gold):not(.btn-gold) {
    display: none;
  }

  .btn-outline-gold,
  .nav-cta {
    width: 100%;
  }

  .hero-right {
    border-radius: 32px;
    padding: 0;
  }

  .mock-slot,
  .payout-section,
  .company-section,
  .cta-section {
    border-radius: 32px;
  }

  .features-grid,
  .rewards-grid,
  .withdrawal-band,
  .company-cards {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  address p {
    display: block;
  }

  address span,
  address a {
    display: block;
    margin-top: 0.3rem;
    text-align: left;
    overflow-wrap: anywhere;
  }
}
