:root {
  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --text: #0F172A;
  --muted: #64748B;
  --primary: #334155;
  --secondary: #E2E8F0;
  --accent: #475569;
  --border: rgba(15,23,42,0.1);
  --offer-bg: #1a1a1a;
  --offer-border: #2a2a2a;
  --offer-bonus: #ffd700;
  --offer-cta-bg: #22c55e;
  --offer-cta-text: #ffffff;
  --nav-dark: #0F172A;
  --max-w: 1280px;
  --font: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --glass: rgba(255, 255, 255, 0.72);
  --glass-strong: rgba(255, 255, 255, 0.88);
  --glass-soft: rgba(255, 255, 255, 0.6);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 70% 50% at 0% -10%, rgba(71, 85, 105, 0.12), transparent 55%),
    radial-gradient(ellipse 55% 40% at 100% 0%, rgba(51, 65, 85, 0.1), transparent 50%),
    linear-gradient(165deg, var(--bg) 0%, #eef2f7 48%, #f8fafc 100%);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "glassmorphism frosted blur translucent floating cards modern";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  font-size: 0;
  opacity: 0.55;
  background-image:
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 42px,
      rgba(15, 23, 42, 0.025) 42px,
      rgba(15, 23, 42, 0.025) 43px
    );
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 78%, rgba(71, 85, 105, 0.08) 0%, transparent 42%),
    radial-gradient(circle at 88% 55%, rgba(51, 65, 85, 0.07) 0%, transparent 38%);
}

body.nav-open {
  overflow: hidden;
}

main {
  flex: 1 0 auto;
  position: relative;
  z-index: 1;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

a:hover {
  color: var(--accent);
}

.disclosure-wrap {
  position: relative;
  z-index: 50;
  width: 100%;
  background: var(--secondary);
}

.disclosure-banner {
  display: block;
  width: 100%;
  margin: 0;
  padding: 6px 16px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
}

.site-header {
  position: static;
  z-index: 40;
  background: var(--nav-dark);
  border-bottom: 3px solid var(--accent);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 24px;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  flex-shrink: 0;
}

.brand-lockup:hover {
  color: var(--secondary);
}

.brand-lockup img {
  width: 40px;
  height: 41px;
  object-fit: contain;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}

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

.burger-btn {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}

.burger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: min(300px, 86vw);
  height: 100%;
  background: var(--nav-dark);
  z-index: 100;
  padding: 88px 0 32px;
  transform: translateX(-105%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}

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

.mobile-nav a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 24px;
  border-left: 3px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-left-color: var(--accent);
  color: #fff;
}

.hero {
  background: var(--surface);
  position: relative;
  z-index: 1;
}

.hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  font-weight: 800;
  color: #000;
  line-height: 1.1;
  text-align: left;
  border-bottom: 4px solid #000;
  padding-bottom: 16px;
  margin-bottom: 18px;
}

.hero-sub {
  text-align: right;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin-left: auto;
}

.offers-section {
  position: relative;
  padding: 56px 24px;
  background-image: linear-gradient(rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.82)), url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.offers-intro {
  max-width: var(--max-w);
  margin: 0 auto 32px;
  text-align: center;
  color: #fff;
}

.offers-intro h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.offers-intro p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 640px;
  margin: 0 auto;
}

.offers-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.offer-card {
  background: var(--offer-bg);
  border: 1px solid var(--offer-border);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
}

.offer-logo {
  width: 200px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 10px;
  box-sizing: border-box;
}

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

.offer-name {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
}

.offer-bonus-group {
  text-align: center;
}

.offer-bonus {
  color: var(--offer-bonus);
  font-weight: 700;
  font-size: clamp(0.78rem, 2.2vw, 1.05rem);
  margin: 0;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.offer-terms {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  margin-top: 4px;
}

.offer-cta {
  display: block;
  margin-top: auto;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--offer-cta-bg);
  color: var(--offer-cta-text);
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.offer-cta:hover {
  color: var(--offer-cta-text);
  filter: brightness(1.08);
  transform: scale(1.02);
}

.info-section {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 24px;
  z-index: 1;
}

.info-section h2 {
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
}

.info-section p {
  color: var(--text);
  margin-bottom: 12px;
}

.glassmorphism-panel,
.frosted-panel,
.translucent-surface,
.floating-card {
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}

.frosted-panel {
  background: var(--glass-strong);
  opacity: 0.92;
}

.translucent-surface {
  background: var(--glass-soft);
  opacity: 0.85;
}

.floating-card {
  opacity: 0.78;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.modern-glass {
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
}

.section-cta {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 22px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.section-cta:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.decor-wrap {
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
}

.decor-img {
  max-width: 100%;
  max-height: 320px;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

.site-footer {
  position: relative;
  z-index: 1;
  background: var(--nav-dark);
  color: rgba(255, 255, 255, 0.82);
  padding: 48px 24px 32px;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-brand-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.footer-brand .brand-name {
  color: #fff;
}

.footer-legal-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  max-width: 720px;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
}

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

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}

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

.footer-company {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
}

.footer-disclosure {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 960px;
}

.footer-disclosure p {
  margin-bottom: 10px;
}

.footer-disclosure a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}

.footer-dgoj {
  margin-top: 20px;
  font-size: 11px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  max-width: 960px;
}

.footer-updated {
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: var(--glass-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  padding: 32px 28px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
}

.modal-box h2 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.modal-box p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 11px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--text);
}

.btn-secondary:hover {
  background: #cbd5e1;
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 180;
  display: none;
  padding: 16px;
  background: transparent;
}

#cookie-banner.active {
  display: block;
}

.cookie-inner {
  max-width: 920px;
  margin: 0 auto;
  background: var(--glass-strong);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -8px 30px rgba(15, 23, 42, 0.12);
}

.cookie-inner p {
  flex: 1 1 280px;
  font-size: 0.9rem;
  color: var(--text);
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin: 28px 0 10px;
}

.legal-content p,
.legal-content li {
  color: var(--text);
  margin-bottom: 10px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.contact-form {
  margin-top: 28px;
  padding: 24px;
  max-width: 520px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

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

.email-error {
  display: none;
  color: #b91c1c;
  font-size: 0.85rem;
  margin: -8px 0 12px;
}

.email-error.visible {
  display: block;
}

.form-success {
  display: none;
  padding: 20px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 10px;
  color: var(--text);
  margin-top: 20px;
}

.form-success.visible {
  display: block;
}

.redirect-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
}

.ad-label {
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.spinner {
  width: 44px;
  height: 44px;
  border: 3px solid var(--secondary);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.redirect-notes {
  max-width: 480px;
  font-size: 0.9rem;
  color: var(--muted);
}

.redirect-notes a {
  text-decoration: underline;
}

.page-404 {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px;
  gap: 16px;
}

.page-404 h1 {
  font-size: 3rem;
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .hero-inner {
    padding: 36px 24px;
  }

  .hero h1 {
    text-align: center;
    border-bottom: none;
    border-top: 4px solid #000;
    padding-top: 16px;
    padding-bottom: 0;
  }

  .hero-sub {
    text-align: center;
    margin: 16px auto 0;
  }

  .offers-section {
    background-attachment: scroll;
  }
}

@media (max-width: 640px) {
  .footer-brand-row {
    flex-direction: column;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .btn {
    flex: 1;
  }

  .offer-logo {
    width: 160px;
    height: 64px;
  }

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

  .decor-img {
    max-width: 100%;
    max-height: 200px;
  }

  .band-mosaic {
    max-width: 100%;
    min-height: 140px;
  }
}
