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

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #0F172A;
  color: #F8FAFC;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main {
  flex: 1 0 auto;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-flicker 0.15s steps(2) infinite;
}

@keyframes grain-flicker {
  0%, 100% { opacity: 0.04; }
  50% { opacity: 0.06; }
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: #38BDF8;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #F97316;
}

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

.disclosure-banner {
  background: #1E293B;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: #94A3B8;
  padding: 8px 16px;
}

.disclosure-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.disclosure-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: #38BDF8;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0F172A;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.marquee-row {
  height: 20px;
  overflow: hidden;
  background: #1E293B;
  display: flex;
  align-items: center;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-track span {
  font-size: 10px;
  color: #64748B;
  padding: 0 40px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.nav-main {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: #F8FAFC;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background 0.2s;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #F8FAFC;
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #F8FAFC;
  border-radius: 2px;
}

.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 23, 42, 0.95);
  flex-direction: column;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.3s;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #F8FAFC;
  font-size: 28px;
  cursor: pointer;
  margin-bottom: 24px;
}

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drawer-links a {
  color: #F8FAFC;
  font-size: 18px;
  padding: 12px 16px;
  border-radius: 8px;
  display: block;
}

.drawer-links a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  background: #0F172A;
  padding: 64px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 3px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  pointer-events: none;
  box-shadow: inset 0 0 60px rgba(249, 115, 22, 0.08), 0 0 40px rgba(56, 189, 248, 0.05);
}

.hero-crt {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(145deg, #1E293B 0%, #0F172A 100%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-title .light {
  color: #F8FAFC;
}

.hero-title .accent {
  color: #38BDF8;
}

.hero-subtitle {
  color: #94A3B8;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto;
}

.offers-section {
  padding: 64px 16px;
  background-image: url('/images/offers_bg/offers_bg.webp');
  background-size: cover;
  background-position: center;
  position: relative;
}

.offers-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.88);
}

.offers-inner {
  position: relative;
  z-index: 1;
}

.section-heading {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #F8FAFC;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.offer-card {
  background: linear-gradient(160deg, #2a1f3d 0%, #1a2744 50%, #1E293B 100%);
  border-radius: 20px;
  padding: 24px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.15);
}

.offer-logo-wrap {
  width: 120px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.offer-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  max-width: none;
}

.offer-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #F8FAFC;
  margin-bottom: 8px;
}

.offer-bonus-group {
  margin-bottom: 12px;
}

.offer-bonus {
  font-size: 0.95rem;
  color: #F97316;
  font-weight: 600;
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: break-word;
}

.offer-terms {
  display: block;
  font-size: 0.7rem;
  color: #94A3B8;
  margin-top: 4px;
}

.offer-desc {
  font-size: 0.8rem;
  color: #94A3B8;
  margin-bottom: 16px;
  line-height: 1.5;
}

.knob-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: linear-gradient(180deg, #F97316 0%, #ea580c 100%);
  color: #0F172A;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 0 #c2410c, 0 6px 16px rgba(249, 115, 22, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform 0.15s, box-shadow 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.knob-btn:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #c2410c, 0 4px 12px rgba(249, 115, 22, 0.25);
  color: #0F172A;
}

.knob-btn:active {
  transform: translateY(4px);
  box-shadow: 0 0 0 #c2410c;
}

.info-section {
  padding: 56px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.info-section:nth-child(even) {
  background: #1E293B;
}

.info-section:nth-child(odd) {
  background: #0F172A;
}

.info-1-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.info-1-layout .decor-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(249, 115, 22, 0.3);
}

.info-1-layout .decor-wrap img {
  max-width: 500px;
  max-height: 320px;
  width: 100%;
  object-fit: cover;
}

.info-2-layout {
  text-align: center;
}

.info-2-layout .decor-float {
  display: inline-block;
  margin: 24px auto;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #38BDF8;
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.2);
}

.info-2-layout .decor-float img {
  max-width: 280px;
  max-height: 280px;
  width: 280px;
  height: 280px;
  object-fit: cover;
}

.info-3-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.info-3-layout .decor-side {
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  transform: rotate(-3deg);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.info-3-layout .decor-side img {
  max-width: 320px;
  max-height: 240px;
  object-fit: cover;
}

.info-4-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}

.info-4-layout .decor-panel {
  background: linear-gradient(135deg, #1E293B, #0F172A);
  border-radius: 20px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.info-4-layout .decor-panel img {
  border-radius: 12px;
  max-width: 100%;
  max-height: 280px;
  object-fit: cover;
}

.info-5-layout {
  position: relative;
  padding: 40px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.08), rgba(249, 115, 22, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.info-5-layout .decor-bg {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.85;
  border-radius: 16px;
  overflow: hidden;
}

.info-5-layout .decor-bg img {
  max-width: 300px;
  max-height: 200px;
  object-fit: cover;
}

.info-5-layout .info-text {
  max-width: 55%;
  position: relative;
  z-index: 1;
}

.info-6-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.info-6-layout .payment-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.info-6-layout .chip {
  background: #1E293B;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.85rem;
  color: #38BDF8;
}

.info-7-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.info-7-layout .rtp-card {
  background: #0F172A;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.info-7-layout .rtp-value {
  font-family: Georgia, serif;
  font-size: 2rem;
  color: #F97316;
  margin-bottom: 8px;
}

.info-8-layout {
  display: flex;
  align-items: center;
  gap: 40px;
}

.info-8-layout .support-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F97316, #38BDF8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.info-9-layout {
  border-left: 4px solid #F97316;
  padding-left: 32px;
  margin-left: 16px;
}

.info-9-layout .spin-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.info-9-layout .step {
  background: #1E293B;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  font-size: 0.85rem;
}

.info-9-layout .step-num {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  color: #38BDF8;
  margin-bottom: 8px;
}

.info-10-layout {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 32px;
  border-radius: 24px;
  background: #1E293B;
  box-shadow: inset 0 0 40px rgba(56, 189, 248, 0.05);
}

.info-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.75rem;
  color: #F97316;
  margin-bottom: 16px;
}

.info-text {
  color: #94A3B8;
  font-size: 1rem;
  line-height: 1.7;
}

.footer {
  background: #0F172A;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px 16px 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 12px;
}

.footer-tagline {
  color: #64748B;
  font-size: 0.85rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}

.footer-badges a {
  display: block;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-badges a:hover {
  opacity: 1;
}

.footer-badges img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #F97316;
}

.footer-bottom {
  text-align: center;
  color: #64748B;
  font-size: 0.8rem;
}

.age-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(15, 23, 42, 0.97);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-overlay.is-visible {
  display: flex;
}

.age-modal {
  background: #1E293B;
  border-radius: 24px;
  padding: 40px;
  max-width: 440px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 60px rgba(249, 115, 22, 0.15);
}

.age-modal h2 {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #F8FAFC;
}

.age-modal p {
  color: #94A3B8;
  margin-bottom: 24px;
}

.age-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.switch-btn {
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: transform 0.15s;
}

.switch-btn.confirm {
  background: linear-gradient(180deg, #F97316, #ea580c);
  color: #0F172A;
  box-shadow: 0 4px 0 #c2410c;
}

.switch-btn.decline {
  background: #64748B;
  color: #F8FAFC;
}

.switch-btn:hover {
  transform: translateY(-2px);
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1E293B;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-inner p {
  color: #94A3B8;
  font-size: 0.85rem;
  flex: 1;
}

.legal-page {
  padding: 48px 16px 64px;
}

.legal-page h1 {
  font-family: Georgia, serif;
  font-size: 2rem;
  color: #F97316;
  margin-bottom: 24px;
}

.legal-page h2 {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  color: #F8FAFC;
  margin: 28px 0 12px;
}

.legal-page p,
.legal-page li {
  color: #94A3B8;
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal-page ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.contact-form {
  max-width: 560px;
  margin-top: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: #F8FAFC;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: #0F172A;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #F8FAFC;
  font-size: 1rem;
  font-family: inherit;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-error {
  color: #F97316;
  font-size: 0.85rem;
  margin-top: 6px;
  display: none;
}

.contact-success {
  display: none;
  background: #1E293B;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.contact-success h3 {
  color: #38BDF8;
  margin-bottom: 8px;
}

.contact-success p {
  color: #94A3B8;
}

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 16px;
}

.error-page h1 {
  font-family: Georgia, serif;
  font-size: 6rem;
  color: #F97316;
  line-height: 1;
  margin-bottom: 16px;
}

.error-page p {
  color: #94A3B8;
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.redirect-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 16px;
}

.redirect-box {
  background: #1E293B;
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 480px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.redirect-box h1 {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  color: #F8FAFC;
  margin-bottom: 16px;
}

.redirect-box p {
  color: #94A3B8;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: #F97316;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 24px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.ad-label {
  display: inline-block;
  background: #F97316;
  color: #0F172A;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.nav-simple .nav-links {
  display: none;
}

.nav-simple .nav-home {
  color: #F8FAFC;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 4px;
}

.nav-simple .nav-home:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #F8FAFC;
}

@media (max-width: 768px) {
  .marquee-row {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .mobile-drawer {
    display: flex;
  }

  .hero {
    padding: 32px 16px;
  }

  .info-1-layout,
  .info-3-layout,
  .info-4-layout,
  .info-5-layout,
  .info-7-layout,
  .info-8-layout {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .info-5-layout .decor-bg {
    position: static;
    transform: none;
    margin-top: 24px;
    text-align: center;
  }

  .info-5-layout .info-text {
    max-width: 100%;
  }

  .info-9-layout .spin-steps {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-badges {
    justify-content: center;
  }

  .decor-wrap,
  .decor-float,
  .decor-side,
  .decor-panel,
  .decor-bg {
    max-width: 100%;
    overflow: hidden;
  }

  .decor-wrap img,
  .decor-side img,
  .decor-panel img,
  .decor-bg img,
  .decor-float img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  .info-2-layout .decor-float img {
    max-height: 240px;
  }

  .info-9-layout {
    margin-left: 0;
    padding-left: 16px;
  }

  .offer-logo-wrap {
    width: 100px;
    height: 60px;
  }

  .offer-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
}

@media (max-width: 375px) {
  .info-1-layout .decor-wrap img {
    max-height: 200px;
  }

  .info-3-layout .decor-side img {
    max-height: 180px;
  }

  .info-4-layout .decor-panel img {
    max-height: 200px;
  }

  .info-5-layout .decor-bg img {
    max-height: 160px;
  }

  .info-2-layout .decor-float img {
    max-height: 200px;
  }
}
