/* Base layout */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5fbff;
  color: #082032;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.noise-layer {
  pointer-events: none;
  position: fixed;
  inset: -40px;
  opacity: 0.13;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='noStitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  z-index: 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  position: relative;
  z-index: 1;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.logo-img {
  width: 150px;
  height: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #99a5ff;
}

.logo-main {
  font-weight: 700;
  font-size: 13px;
  color: #ffffff;
}

.logo-sub {
  opacity: 0.8;
}

.main-nav {
  display: flex;
  gap: 10px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  position: relative;
  padding: 6px 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: #f19c1a;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.12s ease;
}

.nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.1));
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: -1;
}

.nav-link:hover {
  transform: translateY(-1px);
  background: #e18d12;
}

.nav-link:hover::before {
  opacity: 1;
}

.nav-link--accent {
  background: linear-gradient(120deg, #f5c75c, #ff7b39);
  color: #050814;
  font-weight: 600;
}

.header-actions {
  display: flex;
  gap: 8px;
}

.btn {
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(90deg, #ffb400, #ffdf40);
  color: #4b2200;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(255, 180, 0, 0.45);
}

.btn-outline {
  background: transparent;
  color: #00a6d1;
  border: 1px solid #00c9ff;
  font-weight: 700;
  box-shadow: 0 0 10px rgba(0, 201, 255, 0.4);
}

.btn-lg {
  padding: 12px 26px;
  font-size: 13px;
}

.btn-xl {
  padding: 16px 40px;
  font-size: 14px;
}

.btn-primary:hover {
  filter: brightness(1.08);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 32px 0 80px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 -40%;
  background: radial-gradient(circle at 10% -20%, rgba(0, 201, 255, 0.32), transparent 60%),
    radial-gradient(circle at 90% -10%, rgba(255, 180, 0, 0.3), transparent 60%),
    radial-gradient(circle at 50% 120%, rgba(0, 229, 184, 0.3), transparent 60%);
  opacity: 1;
  z-index: -2;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-bg-orbit {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 224, 255, 0.22);
  filter: blur(0.3px);
  z-index: -1;
}

.hero-bg-orbit--left {
  top: 40px;
  left: -180px;
}

.hero-bg-orbit--right {
  bottom: -120px;
  right: -140px;
}

.hero-copy h1 {
  font-size: clamp(26px, 3.1vw, 36px);
  line-height: 1.08;
  margin: 14px 0 16px;
}

.hero-highlight {
  display: inline-block;
  background: linear-gradient(120deg, #00c9ff, #00e5b8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 520px;
  font-size: 14px;
  color: #305273;
  line-height: 1.7;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 201, 255, 0.8);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #00c9ff;
  background: rgba(255, 255, 255, 0.96);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px 0 18px;
  align-items: center;
}

.hero-ghost {
  background: transparent;
  border: none;
  color: #00a6d1;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  opacity: 0.85;
}

.hero-ghost-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffb400, #ffdf40);
  box-shadow: 0 0 8px rgba(255, 180, 0, 0.9);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.meta-pill {
  padding: 8px 10px;
  border-radius: 11px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  min-width: 0;
}

.meta-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9bb8cf;
}

.meta-value {
  font-size: 12px;
  color: #082032;
}

/* Hero side cards */
.hero-side {
  position: relative;
}

.floating-card {
  position: relative;
  border-radius: 18px;
  padding: 14px 16px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 52, 96, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(18px);
}

.floating-card--top {
  transform: translateX(8%) translateY(-4px) rotate(-2.3deg);
}

.floating-card--middle {
  margin-top: 16px;
  transform: translateX(-3%) rotate(1.8deg);
}

.floating-card--bottom {
  margin-top: 18px;
  transform: translateX(4%) rotate(-1.2deg);
  background: linear-gradient(135deg, #fff4d0, #ffe499);
}

.floating-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #00a6d1;
  margin-bottom: 10px;
}

.floating-label--gold {
  color: #ffb400;
}

.floating-match {
  display: grid;
  gap: 8px;
}

.match-teams {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 13px;
}

.match-odds {
  display: flex;
  gap: 8px;
}

.match-odds span,
.match-odds .match-odd-link {
  flex: 1;
  text-align: center;
  font-size: 12px;
  padding: 6px 0;
  border-radius: 12px;
  background: #f5fbff;
  border: 1px solid rgba(0, 166, 209, 0.35);
  color: #082032;
}

.match-odds .match-odd-link:hover {
  background: #e1f4ff;
}

.match-tag {
  font-size: 11px;
  color: #9bb8cf;
}

.floating-games {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.floating-games li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.game-badge,
.game-badge--live {
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  background: rgba(0, 201, 255, 0.1);
  border: 1px solid rgba(0, 201, 255, 0.5);
}

.game-badge--live {
  background: rgba(255, 61, 110, 0.14);
  border-color: rgba(255, 61, 110, 0.7);
  color: #000000;
}

.floating-progress-label {
  font-size: 12px;
  margin-bottom: 6px;
}

.floating-progress-bar {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: #e1f4ff;
  overflow: hidden;
}

.floating-progress-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  background: linear-gradient(90deg, #ffb400, #ffdf40);
}

.floating-progress-text {
  font-size: 11px;
  color: #ffecc4;
  margin-top: 8px;
}

/* Split sport section */
.split-section {
  max-width: 1180px;
  margin: -8px auto 70px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
}

.split-panel h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.split-panel h2 span {
  color: #00a6d1;
}

.split-panel p {
  font-size: 14px;
  color: #305273;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 14px;
}

.feature-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: flex-start;
}

.bullet-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle, #00c9ff, #00e5b8);
  box-shadow: 0 0 10px rgba(0, 201, 255, 0.6);
  margin-top: 5px;
}

.feature-list p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #567aa3;
}

.ticket {
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 20px 40px rgba(15, 52, 96, 0.12);
}

.ticket--live {
  margin-top: 16px;
  background: #ffffff;
}

.ticket-header,
.ticket-footer {
  padding: 10px 14px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ticket-header {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9bb8cf;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.ticket-id {
  font-size: 11px;
  color: #b7cfe3;
}

.ticket-status {
  font-size: 11px;
  color: #00c9ff;
}

.ticket-body {
  padding: 10px 14px;
  font-size: 13px;
}

.ticket-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
}

.ticket-row--highlight {
  border-radius: 10px;
  padding: 7px 8px;
  margin-top: 4px;
  background: rgba(0, 201, 255, 0.08);
}

.ticket-odd {
  color: #ffb400;
  font-weight: 600;
}

.ticket-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  color: #567aa3;
}

.ticket-total {
  font-weight: 700;
  color: #00c9ff;
}

.ticket-body--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.ticket-label {
  font-size: 11px;
  color: #9bb8cf;
}

.ticket-number {
  font-size: 14px;
  font-weight: 600;
}

.ticket-number--green {
  color: #2ecc71;
}

.ticket-number--orange {
  color: #ffb469;
}

/* Casino section */
.casino-section {
  position: relative;
  padding: 58px 0 70px;
}

.casino-section::before {
  content: "";
  position: absolute;
  inset: 12% -30vw 0;
  background: radial-gradient(circle at top, rgba(0, 201, 255, 0.18), transparent 60%),
    linear-gradient(140deg, #e4f8ff, #f7fdff);
  z-index: -1;
  transform: skewY(-3deg);
}

.casino-header {
  max-width: 1180px;
  margin: 0 auto 26px;
  padding: 0 20px;
}

.casino-header h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.casino-header h2 span {
  color: #00c9ff;
}

.casino-header p {
  font-size: 14px;
  color: #567aa3;
  max-width: 620px;
}

.casino-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.casino-card {
  position: relative;
  border-radius: 18px;
  padding: 16px 16px 18px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.02);
  box-shadow: 0 16px 38px rgba(15, 52, 96, 0.12);
  overflow: hidden;
}

.casino-card--slot {
  background: radial-gradient(circle at 0 0, rgba(0, 215, 255, 0.18), transparent 60%),
    #ffffff;
}

.casino-card--live {
  background: radial-gradient(circle at 0 0, rgba(255, 137, 102, 0.18), transparent 60%),
    #ffffff;
}

.casino-card--poker {
  background: radial-gradient(circle at 0 0, rgba(176, 123, 255, 0.18), transparent 60%),
    #ffffff;
}

.casino-card::before {
  content: "";
  position: absolute;
  inset: -40% 40% 40% -40%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent);
  transform: rotate(-4deg);
  mix-blend-mode: screen;
}

.casino-card-tag {
  position: relative;
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 201, 255, 0.12);
  border: 1px solid rgba(0, 201, 255, 0.6);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.casino-card-tag--live {
  background: rgba(255, 61, 110, 0.22);
  border-color: rgba(255, 61, 110, 0.7);
}

.casino-card-tag--purple {
  background: rgba(170, 120, 255, 0.22);
  border-color: rgba(170, 120, 255, 0.7);
}

.casino-card h3 {
  position: relative;
  margin: 10px 0 8px;
  font-size: 17px;
  color: #06111f;
}

.casino-card p {
  position: relative;
  font-size: 13px;
  color: #24364a;
}

.casino-meta-row {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 12px;
  color: #06111f;
}

.card-link {
  position: relative;
  display: inline-flex;
  margin-top: 12px;
  font-size: 12px;
  color: #00a6d1;
}

.card-link::after {
  content: "›";
  margin-left: 6px;
}

/* Bonus diagonal section */
.bonus-diagonal {
  position: relative;
  padding: 60px 0 70px;
}

.bonus-diagonal::before {
  content: "";
  position: absolute;
  inset: 10% -40vw 0;
  background: linear-gradient(145deg, #e4f8ff, #ffffff);
  transform: skewY(4deg);
  z-index: -2;
}

.bonus-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 38px;
  align-items: center;
}

.bonus-copy h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.bonus-copy h2 span {
  color: #ffb400;
}

.bonus-copy p {
  font-size: 14px;
  color: #567aa3;
  max-width: 560px;
}

.bonus-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.bonus-list li {
  font-size: 13px;
  color: #305273;
}

.bonus-list span {
  display: block;
  color: #9bb8cf;
  margin-top: 2px;
}

.bonus-cards {
  display: grid;
  gap: 12px;
}

.bonus-card {
  border-radius: 18px;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 16px 34px rgba(15, 52, 96, 0.12);
  font-size: 13px;
}

.bonus-card--welcome {
  background: radial-gradient(circle at 0 0, rgba(255, 180, 0, 0.2), transparent 60%),
    #ffffff;
}

.bonus-card--missions {
  border-color: rgba(0, 201, 255, 0.5);
}

.bonus-card--cashback {
  border-color: rgba(255, 180, 0, 0.6);
}

.bonus-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9bb8cf;
}

.bonus-value {
  font-size: 26px;
  font-weight: 700;
  margin-top: 4px;
  color: #ffb400;
}

.bonus-desc {
  font-size: 12px;
  margin-top: 4px;
  color: #567aa3;
}

.bonus-progress span {
  font-size: 12px;
  color: #567aa3;
}

.bonus-bar {
  margin-top: 6px;
  height: 6px;
  border-radius: 999px;
  background: #e1f4ff;
  overflow: hidden;
}

.bonus-bar-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #00c9ff, #00e5b8);
}

.bonus-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffb400, #ffdf40);
  color: #4b2200;
  font-weight: 700;
  margin-top: 6px;
}

/* FAQ */
.faq-section {
  max-width: 1180px;
  margin: 40px auto 70px;
  padding: 0 20px;
}

.faq-header h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.section-cta {
  margin-bottom: 16px;
  text-align: center;
}

.faq-header h2 span {
  color: #00c9ff;
}

.faq-header p {
  font-size: 14px;
  color: #567aa3;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
  margin-top: 20px;
}

.faq-item h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.faq-item p {
  font-size: 13px;
  color: #567aa3;
  line-height: 1.7;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #1095b5;
  color: #ffffff;
  padding: 26px 0 30px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-logo-text {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #ffffff;
  margin-bottom: 4px;
}

.footer-logo-img {
  width: 150px;
  height: auto;
  margin-bottom: 6px;
}

.footer-desc {
  font-size: 12px;
  color: #ffffff;
}

.footer-links {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #ffffff;
}

.footer-links a:hover {
  color: #f19c1a;
}

.footer-bottom {
  margin-top: 8px;
  font-size: 11px;
  color: #ffffff;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: flex-start;
}

.footer-brand {
  max-width: 420px;
}

.footer-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #f5f7ff;
  margin: 0 0 6px;
}

.footer-security {
  font-size: 12px;
  color: #ffffff;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 6px 0 4px;
}

.footer-badge {
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  background: rgba(4, 199, 255, 0.08);
  border: 1px solid rgba(0, 201, 255, 0.45);
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
}

.footer-badge:hover {
  background: #ffffff;
  color: #1095b5;
}

.footer-mini {
  font-size: 11px;
  color: #ffffff;
  margin: 4px 0 0;
}

.footer-bottom-row {
  margin-top: 18px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-responsible {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 11px;
}

.footer-responsible-label {
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #f5f7ff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.footer-responsible-text {
  color: #ffffff;
}

@media (max-width: 960px) {
  .footer-top {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .footer-security {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .footer-top {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-bottom-row {
    align-items: flex-start;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    flex-wrap: wrap;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-side {
    margin-top: 12px;
  }

  .split-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .casino-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bonus-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .header-inner {
    justify-content: space-between;
  }

  .main-nav {
    display: none;
  }

  .hero {
    padding-top: 20px;
  }

  .casino-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}


