:root {
  --bg: #052E16;
  --surface: #064E3B;
  --text: #F0FDF4;
  --muted: #4ADE80;
  --primary: #22C55E;
  --secondary: #14532D;
  --accent: #86EFAC;
  --border: rgba(255, 255, 255, 0.1);
  --font-serif: Georgia, "Times New Roman", Times, serif;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(34, 197, 94, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(20, 83, 45, 0.5) 0%, transparent 55%),
    linear-gradient(165deg, var(--bg) 0%, #031a0e 50%, var(--secondary) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.012) 2px,
      rgba(255, 255, 255, 0.012) 3px
    );
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

main {
  flex: 1;
}

.luxury-finish {
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.4s ease, background 0.4s ease;
}

a:hover {
  color: var(--primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.disclosure-banner {
  font-size: 11px;
  text-align: center;
  max-width: fit-content;
  margin: 6px auto;
  padding: 6px 20px;
  border: 1px solid var(--muted);
  border-radius: 4px;
  color: var(--text);
  line-height: 1.4;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 46, 22, 0.97);
  backdrop-filter: blur(8px);
  height: 54px;
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-header__logo img {
  height: 32px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.site-nav__link {
  color: var(--text);
  font-size: 0.8rem;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

.site-nav__link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent);
}

.site-nav__sep {
  color: var(--muted);
  font-size: 0.75rem;
  opacity: 0.5;
  user-select: none;
}

.burger-btn {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.1rem;
}

.mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(300px, 85vw);
  height: 100vh;
  background: var(--surface);
  z-index: 200;
  padding: 70px 24px 24px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  border-left: 1px solid var(--border);
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 199;
}

.mobile-drawer__overlay.is-open {
  display: block;
}

.mobile-drawer__link {
  display: block;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.mobile-drawer__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
}

.site-footer {
  background: var(--secondary);
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
  margin-top: auto;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.site-footer__brand img {
  height: 36px;
  margin-bottom: 12px;
}

.site-footer__brand p {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 280px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.site-footer__links a {
  font-size: 0.85rem;
  color: var(--accent);
}

.site-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.site-footer__badges a {
  display: block;
}

.site-footer__badges img {
  height: 48px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.4s ease;
}

.site-footer__badges img:hover {
  opacity: 1;
}

.site-footer__legal {
  font-size: 11px;
  color: rgba(240, 253, 244, 0.65);
  line-height: 1.6;
  margin-top: 20px;
  max-width: 900px;
}

.site-footer__copy {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 24px;
  opacity: 0.7;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(5, 46, 22, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate.is-hidden {
  display: none;
}

.age-gate__panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 32px;
  max-width: 440px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.age-gate__panel h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--accent);
}

.age-gate__panel p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.age-gate__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.45s ease, transform 0.3s ease;
  letter-spacing: 0.03em;
}

.btn--primary {
  background: var(--primary);
  color: var(--bg);
}

.btn--primary:hover {
  background: var(--accent);
}

.btn--secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.06);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner__text {
  font-size: 0.85rem;
  color: var(--muted);
  flex: 1;
  min-width: 240px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--accent);
}

.legal-content h2 {
  font-size: 1.25rem;
  margin: 28px 0 12px;
  color: var(--primary);
}

.legal-content h3 {
  font-size: 1.05rem;
  margin: 20px 0 10px;
}

.legal-content p {
  margin-bottom: 14px;
  color: rgba(240, 253, 244, 0.88);
}

.legal-content ul {
  margin: 12px 0 16px 24px;
}

.legal-content li {
  margin-bottom: 8px;
  color: rgba(240, 253, 244, 0.88);
}

.contact-form {
  margin-top: 32px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  max-width: 560px;
}

.contact-form__group {
  margin-bottom: 18px;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--accent);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form__error {
  color: #f87171;
  font-size: 0.8rem;
  margin-top: 6px;
  display: none;
}

.contact-form__error.is-visible {
  display: block;
}

.contact-form__success {
  display: none;
  padding: 24px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid var(--primary);
  border-radius: 8px;
  text-align: center;
  color: var(--accent);
}

.contact-form__success.is-visible {
  display: block;
}

@media (max-width: 960px) {
  .site-nav {
    display: none;
  }

  .burger-btn {
    display: block;
  }

  .mobile-drawer {
    display: block;
  }
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 48px;
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;
  gap: 32px;
}

.hero__text h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
  color: var(--accent);
  letter-spacing: 0.03em;
}

.hero__text p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__circle {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
  box-shadow:
    0 0 0 8px rgba(34, 197, 94, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.35);
  animation: precision-glow 6s ease-in-out infinite;
}

@keyframes precision-glow {
  0%, 100% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.08), 0 20px 60px rgba(0, 0, 0, 0.35); }
  50% { box-shadow: 0 0 0 12px rgba(134, 239, 172, 0.12), 0 24px 72px rgba(0, 0, 0, 0.4); }
}

.offers-section {
  position: relative;
  padding: 64px 24px;
  background-image: url('/images/offers_bg/offers_bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 46, 22, 0.92) 0%, rgba(6, 78, 59, 0.88) 100%);
}

.offers-section__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.offers-section h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--accent);
}

.offers-section__subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 40px;
  font-size: 0.95rem;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.offer-card {
  background: #1a1a2e;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.offer-card__header {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(0, 0, 0, 0.25);
}

.offer-card__logo-wrap {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 8px;
  background: #fff;
  padding: 6px;
}

.offer-card__logo-wrap img,
.offer-card__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  max-width: none;
}

.offer-card__name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #fff;
}

.offer-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-card__bonus {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fbbf24;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.35;
}

.offer-card__terms {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  display: block;
}

.offer-card__desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.offer-card__cta {
  margin-top: auto;
  padding-top: 12px;
}

.offer-card__btn {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  background: linear-gradient(135deg, #e94560, #c73659);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: opacity 0.4s ease;
}

.offer-card__btn:hover {
  opacity: 0.9;
  color: #fff;
}

.info-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px;
}

.info-section h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--accent);
}

.info-section p {
  color: rgba(240, 253, 244, 0.85);
  margin-bottom: 14px;
}

.info-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: var(--surface);
  border: 1px solid var(--primary);
  border-radius: 4px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.45s ease;
}

.info-cta:hover {
  background: rgba(34, 197, 94, 0.15);
  color: var(--primary);
}

.info-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--surface);
  border-radius: 8px;
  padding: 40px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.info-1::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/images/decorative/decor_2.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  pointer-events: none;
}

.info-1__badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
}

.info-1__badge {
  padding: 16px;
  background: rgba(5, 46, 22, 0.6);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--accent);
}

.info-2 {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.info-2__quote {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--primary);
  padding: 24px;
  border-left: 3px solid var(--primary);
  border-right: 3px solid var(--primary);
  margin-bottom: 24px;
  font-style: italic;
}

.info-2__list {
  list-style: none;
  text-align: left;
  display: inline-block;
}

.info-2__list li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: rgba(240, 253, 244, 0.85);
}

.info-2__list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.info-3 {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: center;
}

.info-3__img-wrap {
  max-width: 280px;
}

.info-3__img-wrap img {
  max-width: 280px;
  max-height: 320px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.info-4__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.info-4__card {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.info-4__card h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.info-4__card p {
  font-size: 0.88rem;
}

.info-5 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.info-5__col {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.info-5__col--pros {
  background: rgba(34, 197, 94, 0.08);
}

.info-5__col--cons {
  background: rgba(248, 113, 113, 0.06);
}

.info-5__col h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.info-5__col ul {
  list-style: none;
}

.info-5__col li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: rgba(240, 253, 244, 0.85);
}

.info-5__visual {
  grid-column: 1 / -1;
  text-align: center;
}

.info-5__visual img {
  max-width: 400px;
  max-height: 280px;
  margin: 0 auto;
  border-radius: 8px;
  opacity: 0.85;
}

.info-6__games {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 16px 0;
  margin-top: 16px;
  scrollbar-width: thin;
}

.info-6__game {
  flex: 0 0 auto;
  min-width: 140px;
  padding: 20px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--accent);
}

.info-7 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.info-7__steps {
  counter-reset: step;
}

.info-7__step {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.info-7__step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.info-7__img img {
  max-width: 360px;
  max-height: 300px;
  border-radius: 12px;
  border: 2px solid var(--border);
}

.info-8 {
  position: relative;
  padding: 40px;
  border-radius: 8px;
  overflow: hidden;
}

.info-8::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.4) 0%, rgba(5, 46, 22, 0.2) 100%);
  opacity: 0.5;
}

.info-8__mosaic {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.info-8__tile {
  padding: 24px;
  background: rgba(6, 78, 59, 0.85);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.info-8__tile h3 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1rem;
}

.info-9__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.info-9__table th,
.info-9__table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.info-9__table th {
  background: var(--surface);
  color: var(--accent);
  font-family: var(--font-serif);
}

.info-9__table tr:hover td {
  background: rgba(34, 197, 94, 0.05);
}

.info-10__timeline {
  position: relative;
  padding-left: 32px;
  margin-top: 24px;
}

.info-10__timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary);
}

.info-10__item {
  position: relative;
  margin-bottom: 28px;
  padding-left: 24px;
}

.info-10__item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--bg);
}

.info-10__item h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.luxury-precision {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
}

.horology-detail {
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
}

.watches-inspired {
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 32px;
  }

  .hero__text p {
    margin: 0 auto;
  }

  .hero__circle {
    width: 150px;
    height: 150px;
  }

  .hero__visual {
    order: -1;
  }

  .info-1 {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .info-3 {
    grid-template-columns: 1fr;
  }

  .info-3__img-wrap {
    margin: 0 auto;
  }

  .info-4__grid {
    grid-template-columns: 1fr;
  }

  .info-5 {
    grid-template-columns: 1fr;
  }

  .info-7 {
    grid-template-columns: 1fr;
  }

  .info-8__mosaic {
    grid-template-columns: 1fr;
  }

  .offer-card__logo-wrap {
    width: 64px;
    height: 64px;
  }

  .offer-card__logo-wrap img,
  .offer-card__logo {
    object-fit: contain;
    object-position: center;
  }

  .hero__circle {
    max-width: 100%;
  }

  .info-3__img-wrap,
  .info-3__img-wrap img,
  .info-5__visual img,
  .info-7__img img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  .info-section {
    overflow-x: hidden;
  }
}
