:root {
  --bg: #FFF7ED;
  --surface: #FFFFFF;
  --text: #1F2937;
  --muted: #6B7280;
  --primary: #EA580C;
  --secondary: #0EA5E9;
  --accent: #8B5CF6;
  --border: rgba(31, 41, 55, 0.12);
  --font-display: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --theme-arcade: arcade;
  --theme-neon: neon;
  --theme-80s: 80s;
  --theme-gaming: gaming;
  --theme-vibrant: vibrant;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  background-image:
    linear-gradient(135deg, rgba(234, 88, 12, 0.06) 0%, transparent 50%),
    linear-gradient(225deg, rgba(14, 165, 233, 0.05) 0%, transparent 45%);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 10%, rgba(139, 92, 246, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 90%, rgba(234, 88, 12, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

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

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

a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

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

.disclosure-banner {
  position: relative;
  z-index: 100;
  max-width: 800px;
  margin: 10px auto;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--muted);
  text-align: center;
}

.disclosure-banner p {
  font-size: 11px;
  color: var(--text);
  line-height: 1.5;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: #0a0a0a;
  height: 58px;
  border-bottom: 1px solid rgba(234, 88, 12, 0.4);
  box-shadow: 0 1px 6px var(--primary);
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
}

.site-logo img {
  height: 32px;
  width: auto;
}

.site-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav__link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  color: #e5e7eb;
  text-decoration: none;
  padding: 4px 6px;
  transition: color 0.2s, text-shadow 0.2s;
}

.site-nav__link:hover {
  color: var(--primary);
  text-shadow: 0 0 6px var(--primary), 0 0 12px var(--primary);
}

.burger-btn {
  display: none;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  background: transparent;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  padding: 8px 14px;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(14, 165, 233, 0.4);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #0a0a0a;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  background: transparent;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  padding: 8px 16px;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(14, 165, 233, 0.4);
}

.mobile-nav__link {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  color: #e5e7eb;
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
}

.mobile-nav__link:hover {
  color: var(--primary);
  text-shadow: 0 0 6px var(--primary), 0 0 12px var(--primary);
}

.site-footer {
  flex-shrink: 0;
  margin-top: auto;
  background: #0a0a0a;
  color: #e5e7eb;
  padding: 48px 0 32px;
  border-top: 1px solid rgba(234, 88, 12, 0.3);
  box-shadow: 0 -1px 6px rgba(234, 88, 12, 0.2);
  position: relative;
  z-index: 1;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    rgba(14, 165, 233, 0.03) 8px,
    rgba(14, 165, 233, 0.03) 16px
  );
  pointer-events: none;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

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

.site-footer__brand img {
  height: 36px;
  width: auto;
  margin-bottom: 12px;
}

.site-footer__brand p {
  font-size: 13px;
  color: var(--muted);
  max-width: 280px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.site-footer__links a {
  font-size: 13px;
  color: #d1d5db;
  text-decoration: none;
}

.site-footer__links a:hover {
  color: var(--primary);
  text-shadow: 0 0 6px var(--primary);
}

.site-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__badges a {
  display: block;
}

.site-footer__badges img {
  height: 40px;
  width: auto;
}

.site-footer__copy {
  margin-top: 24px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate.is-hidden {
  display: none;
}

.age-gate__panel {
  background: var(--surface);
  border: 2px solid var(--accent);
  max-width: 440px;
  width: 100%;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 6px 6px 0 var(--primary), 0 0 20px rgba(139, 92, 246, 0.4);
}

.age-gate__panel h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  font-style: italic;
  margin-bottom: 16px;
  color: var(--text);
}

.age-gate__panel p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

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

.age-gate__btn {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  padding: 12px 24px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.age-gate__btn--confirm {
  background: var(--primary);
  color: #fff;
  box-shadow: 4px 4px 0 var(--accent);
}

.age-gate__btn--confirm:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--accent);
}

.age-gate__btn--decline {
  background: transparent;
  color: var(--text);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--surface);
  border-top: 2px solid var(--secondary);
  box-shadow: 0 -4px 20px rgba(14, 165, 233, 0.2);
  padding: 20px 24px;
}

.cookie-banner.is-hidden {
  display: none;
}

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

.cookie-banner__inner p {
  font-size: 13px;
  color: var(--muted);
  flex: 1;
  min-width: 200px;
}

.cookie-banner__btn {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  padding: 10px 20px;
  background: var(--secondary);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--accent);
}

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

.legal-page h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--text);
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
  margin: 28px 0 12px;
  color: var(--text);
}

.legal-page h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 20px 0 8px;
}

.legal-page p {
  font-size: 15px;
  margin-bottom: 14px;
  color: var(--text);
}

.legal-page ul {
  margin: 0 0 16px 24px;
}

.legal-page li {
  font-size: 15px;
  margin-bottom: 8px;
}

.legal-page a {
  color: var(--primary);
}

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

.contact-form__group {
  margin-bottom: 20px;
}

.contact-form__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  border: 2px solid var(--border);
  background: var(--surface);
  color: var(--text);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 8px rgba(14, 165, 233, 0.3);
}

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

.contact-form__error {
  display: none;
  font-size: 13px;
  color: #dc2626;
  margin-top: 6px;
}

.contact-form__error.is-visible {
  display: block;
}

.contact-form__submit {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  padding: 14px 28px;
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--accent);
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--secondary);
  transition: transform 0.15s;
}

.contact-form__submit:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--secondary);
}

.form-success {
  display: none;
  padding: 24px;
  background: rgba(14, 165, 233, 0.08);
  border: 2px solid var(--secondary);
  margin-top: 24px;
}

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

.form-success p {
  font-size: 15px;
  color: var(--text);
}

.page-hero {
  background: var(--bg);
  padding: 40px 24px;
  text-align: center;
  border-bottom: 8px solid var(--accent);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  font-style: italic;
  color: var(--text);
  max-width: 800px;
  margin: 0 auto;
}

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

  .burger-btn {
    display: block;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }
}

.hero {
  background: var(--bg);
  padding: 40px 24px;
  text-align: center;
  border-bottom: 8px solid var(--accent);
  position: relative;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  font-style: italic;
  color: var(--text);
  max-width: 760px;
  margin: 0 auto 16px;
  text-shadow: 3px 3px 0 rgba(139, 92, 246, 0.25);
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.offers-section {
  padding: 56px 0;
  position: relative;
  background-image: url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.88) 0%, rgba(255, 247, 237, 0.94) 100%);
  pointer-events: none;
}

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

.section-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--secondary);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  font-style: italic;
  color: var(--text);
  margin-bottom: 12px;
}

.section-intro {
  font-size: 15px;
  color: var(--muted);
  max-width: 600px;
}

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

.offer-card {
  background: linear-gradient(145deg, #2a0a3a, #1a0524);
  border: 1px solid rgba(216, 180, 254, 0.15);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(216, 180, 254, 0.1);
}

.offer-card__logo-wrap {
  width: 280px;
  height: 90px;
  margin: 0 auto;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 12px;
  flex-shrink: 0;
}

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

.offer-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer-card__name {
  font-size: 1.1rem;
  color: #D8B4FE;
  font-weight: 700;
}

.offer-card__bonus-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.offer-card__terms {
  font-size: 0.72rem;
  color: rgba(243, 232, 255, 0.55);
}

.offer-card__desc {
  font-size: 0.78rem;
  color: rgba(243, 232, 255, 0.65);
  line-height: 1.45;
}

.offer-card__cta {
  margin-top: auto;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  font-style: italic;
  padding: 12px 16px;
  background: #7E22CE;
  color: #F3E8FF;
  border: 2px solid #D8B4FE;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-align: center;
  display: block;
  transition: background 0.2s;
}

.offer-card__cta:hover {
  background: #9333EA;
  color: #F3E8FF;
}

.info-section {
  padding: 56px 0;
  position: relative;
}

.info-section h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text);
}

.info-section p {
  font-size: 15px;
  margin-bottom: 14px;
  color: var(--text);
}

.info-cta {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  padding: 12px 24px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border: 2px solid var(--accent);
  box-shadow: 4px 4px 0 var(--secondary);
  transition: transform 0.15s, box-shadow 0.15s;
}

.info-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--secondary);
  color: #fff;
}

.info-1 {
  background: var(--surface);
  border-top: 3px solid var(--primary);
  border-bottom: 3px solid var(--secondary);
}

.info-1__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 20px;
}

.info-1__cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-1__card {
  background: var(--bg);
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  font-size: 14px;
  box-shadow: 3px 3px 0 rgba(31, 41, 55, 0.08);
}

.info-1__card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 4px;
}

.info-2 {
  background: linear-gradient(135deg, var(--bg) 0%, rgba(14, 165, 233, 0.08) 100%);
}

.info-2__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.info-2__step {
  text-align: center;
  padding: 24px 16px;
  background: var(--surface);
  border: 2px solid var(--border);
  box-shadow: 4px 4px 0 var(--accent);
}

.info-2__step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 8px;
}

.info-2__step p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 0;
}

.info-3 {
  background: var(--surface);
}

.info-3__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  margin-top: 20px;
}

.info-3__img {
  width: 100%;
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  border: 3px solid var(--secondary);
  box-shadow: 6px 6px 0 var(--primary);
}

.info-4 {
  background: var(--bg);
}

.info-4__band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 24px 0;
  border: 2px solid var(--text);
}

.info-4__stat {
  text-align: center;
  padding: 24px;
  background: #0a0a0a;
  color: #e5e7eb;
  border-right: 1px solid rgba(234, 88, 12, 0.3);
}

.info-4__stat:last-child {
  border-right: none;
}

.info-4__stat-val {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  font-style: italic;
  color: var(--secondary);
  text-shadow: 0 0 8px rgba(14, 165, 233, 0.6);
}

.info-4__stat-label {
  font-size: 12px;
  margin-top: 4px;
  opacity: 0.85;
}

.info-5 {
  background: var(--surface);
  position: relative;
}

.info-5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background:
  linear-gradient(135deg, var(--muted) 25%, transparent 25%) -20px 0,
  linear-gradient(225deg, var(--muted) 25%, transparent 25%) -20px 0,
  linear-gradient(315deg, var(--muted) 25%, transparent 25%),
  linear-gradient(45deg, var(--muted) 25%, transparent 25%);
  background-size: 40px 40px;
  background-color: rgba(107, 114, 128, 0.15);
  transform: perspective(200px) rotateX(45deg);
  transform-origin: bottom;
  opacity: 0.35;
  pointer-events: none;
}

.info-5__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.info-5__img {
  width: 100%;
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  border: 2px solid #ec4899;
  box-shadow: 0 0 12px rgba(236, 72, 153, 0.5), 4px 4px 0 var(--accent);
}

.info-5__list {
  list-style: none;
}

.info-5__list li {
  padding: 10px 0 10px 24px;
  border-bottom: 1px dotted var(--border);
  position: relative;
  font-size: 14px;
}

.info-5__list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.info-6 {
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.06) 0%, var(--bg) 100%);
}

.info-6__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 36px;
  margin-top: 20px;
}

.info-6__quote {
  background: #0a0a0a;
  color: #e5e7eb;
  padding: 28px;
  font-style: italic;
  font-size: 1.05rem;
  border-left: 6px solid var(--secondary);
  box-shadow: 0 0 16px rgba(14, 165, 233, 0.3);
  align-self: start;
}

.info-6__list {
  list-style: none;
}

.info-6__list li {
  padding: 12px 0 12px 28px;
  border-bottom: 1px dotted var(--border);
  position: relative;
  font-size: 14px;
}

.info-6__list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.info-7 {
  background: var(--surface);
}

.info-7__wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 20px;
}

.info-7__img {
  width: 100%;
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  border: 2px solid var(--accent);
  box-shadow: 5px 5px 0 var(--primary);
}

.info-7__tips {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-7__tip {
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 14px;
}

.info-7__tip strong {
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}

.info-8 {
  background: var(--bg);
}

.info-8__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  margin-top: 20px;
  align-items: center;
}

.info-8__img {
  width: 100%;
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  border: 2px solid var(--secondary);
  box-shadow: 0 0 14px rgba(14, 165, 233, 0.4);
}

.info-8__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.info-8__pill {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  font-style: italic;
  padding: 6px 12px;
  background: #0a0a0a;
  color: var(--secondary);
  border: 1px solid var(--secondary);
  box-shadow: 0 0 6px rgba(14, 165, 233, 0.4);
}

.info-9 {
  background: var(--surface);
}

.info-9__timeline {
  margin-top: 24px;
  position: relative;
  padding-left: 32px;
}

.info-9__timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}

.info-9__event {
  position: relative;
  margin-bottom: 24px;
  padding-left: 24px;
}

.info-9__event::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--primary);
  border: 2px solid var(--accent);
}

.info-9__event h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 6px;
}

.info-9__event p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 0;
}

.info-9__visual {
  margin-top: 28px;
  max-width: 500px;
  max-height: 320px;
  overflow: hidden;
  border: 3px solid var(--primary);
  box-shadow: 6px 6px 0 var(--accent);
}

.info-9__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-10 {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.info-10__mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
  margin-top: 20px;
  align-items: start;
}

.info-10__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.info-10__tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  font-style: italic;
  padding: 5px 12px;
  background: var(--surface);
  border: 2px solid var(--accent);
  color: var(--text);
  box-shadow: 2px 2px 0 var(--primary);
}

.info-10__aside {
  background: #0a0a0a;
  color: #e5e7eb;
  padding: 24px;
  border: 2px solid var(--secondary);
  box-shadow: 0 0 12px rgba(14, 165, 233, 0.35);
}

.info-10__aside h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--secondary);
  margin-bottom: 12px;
}

.info-10__aside p {
  font-size: 13px;
  color: #d1d5db;
  margin-bottom: 0;
}

.arcade-neon-glow {
  border: 2px solid #ec4899;
  box-shadow: 0 0 10px rgba(236, 72, 153, 0.6), 0 0 20px rgba(14, 165, 233, 0.3);
}

.retro-80s-vibrant {
  background: linear-gradient(90deg, rgba(234, 88, 12, 0.12), rgba(139, 92, 246, 0.12), rgba(14, 165, 233, 0.12));
}

.gaming-checker-floor {
  background-image:
    linear-gradient(45deg, rgba(107, 114, 128, 0.12) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(107, 114, 128, 0.12) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(107, 114, 128, 0.12) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(107, 114, 128, 0.12) 75%);
  background-size: 24px 24px;
  background-position: 0 0, 0 12px, 12px -12px, -12px 0;
}

.pixel-shatter:hover {
  transition: transform 0.1s, filter 0.1s;
}

.pixel-shatter:hover {
  transform: translate(-2px, -2px);
  filter: drop-shadow(4px 4px 0 var(--accent));
}

@media (max-width: 900px) {
  .info-1__grid,
  .info-3__split,
  .info-5__layout,
  .info-6__layout,
  .info-7__wrap,
  .info-8__grid,
  .info-10__mosaic {
    grid-template-columns: 1fr;
  }

  .info-2__steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .info-4__stat {
    border-right: none;
    border-bottom: 1px solid rgba(234, 88, 12, 0.3);
  }

  .hero {
    padding: 24px 20px;
  }
}

@media (max-width: 600px) {
  .offer-card__logo-wrap {
    width: 240px;
    height: 77px;
  }

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

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

  .info-3__img,
  .info-5__img,
  .info-7__img,
  .info-8__img {
    width: 100%;
    max-width: 100%;
    max-height: 220px;
    object-fit: cover;
  }

  .info-9__visual {
    max-width: 100%;
    width: 100%;
    max-height: 220px;
  }

  .info-9__visual img {
    width: 100%;
    max-width: 100%;
    max-height: 220px;
    object-fit: cover;
  }
}
