:root {
  --red: #e8002d;
  --red-d: #b8001f;
  --red-l: #ff1a3e;
  --dark: #0a0c10;
  --dark-2: #111318;
  --dark-3: #181b22;
  --dark-4: #1f2330;
  --surface: #232735;
  --border: rgba(255, 255, 255, 0.07);
  --text: #e0e3ec;
  --muted: #7b8198;
  --white: #ffffff;
  --gold: #f5c518;

  --font-head: "Barlow Condensed", sans-serif;
  --font-body: "Outfit", sans-serif;

  --radius: 12px;
  --radius-sm: 6px;
  --transition: 0.25s ease;
  --shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--red-l);
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
ul {
  list-style: none;
}
button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

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

.section {
  padding: 96px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--red-l);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 0, 45, 0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn--ghost:hover {
  border-color: var(--red);
  color: var(--red-l);
}
.btn--lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}
.btn--sm {
  padding: 10px 20px;
  font-size: 0.88rem;
}
.btn--full {
  width: 100%;
  justify-content: center;
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  background: rgba(232, 0, 45, 0.12);
  color: var(--red-l);
  border: 1px solid rgba(232, 0, 45, 0.3);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.age-gate.hidden {
  display: none;
}
.age-gate__box {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow);
}
.age-gate__logo {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.age-gate__logo span {
  color: var(--red);
}
.age-gate__icon {
  font-size: 3rem;
  color: var(--red);
  margin-bottom: 20px;
}
.age-gate__box h2 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.age-gate__box p {
  color: var(--muted);
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.age-gate__sub {
  font-size: 0.85rem !important;
}
.age-gate__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 20px;
}
.age-gate__resp {
  font-size: 0.8rem !important;
  color: var(--muted) !important;
}
.age-gate__resp a {
  color: var(--red-l);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  z-index: 9000;
  padding: 16px 24px;
  animation: slideUp 0.4s ease;
}
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 240px;
  font-size: 0.88rem;
  color: var(--muted);
}
.cookie-banner__text i {
  color: var(--red);
  margin-top: 3px;
  flex-shrink: 0;
}
.cookie-banner__text a {
  color: var(--red-l);
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-settings {
  max-width: 1200px;
  margin: 16px auto 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-settings__grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  flex: 1;
}
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  cursor: pointer;
}
.cookie-toggle input[type="checkbox"] {
  display: none;
}
.cookie-toggle__slider {
  width: 36px;
  height: 20px;
  background: var(--surface);
  border-radius: 100px;
  position: relative;
  transition: background var(--transition);
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.cookie-toggle__slider::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--muted);
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: all var(--transition);
}
.cookie-toggle input:checked ~ .cookie-toggle__slider {
  background: var(--red);
}
.cookie-toggle input:checked ~ .cookie-toggle__slider::after {
  transform: translateX(16px);
  background: white;
}
.cookie-toggle__note {
  font-size: 0.75rem;
  color: var(--muted);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.25s ease;
}
.modal-overlay[hidden] {
  display: none !important;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--muted);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.modal__close:hover {
  background: var(--red);
  color: white;
}
.modal__header {
  text-align: center;
  margin-bottom: 28px;
}
.modal__logo {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.modal__logo span {
  color: var(--red);
}
.modal__header h2 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.modal__header p {
  color: var(--muted);
  font-size: 0.9rem;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal__form[hidden] {
  display: none;
}
.modal__success[hidden] {
  display: none;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-row--space {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}
.form-group input,
.form-group select {
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--red);
}
.form-group select option {
  background: var(--dark-3);
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--muted);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--red);
}
.checkbox-label a {
  color: var(--red-l);
}
.modal__switch {
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 4px;
}
.modal__switch button {
  color: var(--red-l);
  font-size: inherit;
  text-decoration: underline;
}

.modal__success {
  text-align: center;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.modal__success[hidden] {
  display: none;
}
.modal__success-icon {
  font-size: 4rem;
  color: #4ade80;
}
.modal__success h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
}
.modal__success p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 340px;
}
.link-muted {
  color: var(--muted);
  font-size: 0.85rem;
}
.link-muted:hover {
  color: var(--red-l);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 7000;
  background: rgba(10, 12, 16, 0.95);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.header.scrolled {
  background: rgba(10, 12, 16, 0.99);
}
.nav {
  display: flex;
  align-items: center;
  height: 70px;
  gap: 32px;
}
.nav__logo {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.nav__logo span {
  color: var(--red);
}
.nav__links {
  display: none;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav__link:hover {
  color: var(--white);
}
.nav__cta {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}
.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}
.nav__links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  gap: 16px;
  z-index: 6999;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  overflow: hidden;
  background: var(--dark);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      ellipse 80% 60% at 70% 50%,
      rgba(232, 0, 45, 0.12) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 80% at 90% 20%,
      rgba(232, 0, 45, 0.07) 0%,
      transparent 60%
    );
  background-size: cover;
  background-position: center;
}
.hero__bg[style] {
  background-color: var(--dark);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 12, 16, 0.92) 0%,
    rgba(10, 12, 16, 0.6) 60%,
    rgba(10, 12, 16, 0.2) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 80px;
  max-width: 760px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 0, 45, 0.15);
  border: 1px solid rgba(232, 0, 45, 0.4);
  color: var(--red-l);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.hero__title span {
  color: var(--red);
}
.hero__sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero__trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__trust span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}
.hero__trust i {
  color: var(--red);
}

.services {
  background: var(--dark-2);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 0, 45, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(232, 0, 45, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--red);
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.service-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.about {
  background: var(--dark);
}
.about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.about-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.about-card__img {
  height: 200px;
  overflow: hidden;
}
.about-card__img img {
  transition: transform 0.5s ease;
}
.about-card:hover .about-card__img img {
  transform: scale(1.05);
}
.about-card__body {
  padding: 28px;
}
.about-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(232, 0, 45, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.about-card__body h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.about-card__body p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.sports {
  background: var(--dark-2);
}
.sports__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sport-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}
.sport-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(232, 0, 45, 0.3);
}
.sport-card__img {
  height: 180px;
  overflow: hidden;
}
.sport-card__img img {
  transition: transform 0.5s ease;
}
.sport-card:hover .sport-card__img img {
  transform: scale(1.08);
}
.sport-card__body {
  padding: 24px;
}
.sport-card__icon {
  font-size: 1.3rem;
  color: var(--red);
  margin-bottom: 10px;
  display: block;
}
.sport-card__body h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sport-card__body p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.testimonials {
  background: var(--dark);
  overflow: hidden;
}
.slider {
  position: relative;
}
.slider__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.testimonial-card__stars {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 0.9rem;
  gap: 2px;
  display: flex;
}
.testimonial-card__text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  font-size: 2.4rem;
  color: var(--muted);
}
.testimonial-card__author strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}
.testimonial-card__author span {
  font-size: 0.82rem;
  color: var(--muted);
}

.slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.slider__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.slider__btn:hover {
  background: var(--red);
  color: white;
  border-color: var(--red);
}
.slider__dots {
  display: flex;
  gap: 8px;
}
.slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}
.slider__dot.active {
  background: var(--red);
  border-color: var(--red);
  width: 24px;
  border-radius: 4px;
}

.faq {
  background: var(--dark-2);
}
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.faq-item {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open {
  border-color: rgba(232, 0, 45, 0.3);
}
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  transition: color var(--transition);
}
.faq-item__q span {
  flex: 1;
}
.faq-item__q i {
  font-size: 0.85rem;
  color: var(--muted);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-item__q i {
  transform: rotate(180deg);
  color: var(--red);
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0 24px;
}
.faq-item.open .faq-item__a {
  max-height: 200px;
  padding: 0 24px 20px;
}
.faq-item__a p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.resp-banner {
  background: var(--dark-4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.resp-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.resp-banner__text {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.resp-banner__text > i {
  font-size: 1.8rem;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}
.resp-banner__text strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 2px;
}
.resp-banner__text span {
  font-size: 0.85rem;
  color: var(--muted);
}
.resp-banner__tools {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.resp-tool {
  display: flex;
  flex-direction: column;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  transition: border-color var(--transition);
}
.resp-tool:hover {
  border-color: var(--red);
}
.resp-tool strong {
  color: var(--white);
  font-size: 0.88rem;
}
.resp-tool span {
  font-size: 0.78rem;
  color: var(--muted);
}

.footer {
  background: var(--dark-2);
  padding-top: 64px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer__logo {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 16px;
}
.footer__logo span {
  color: var(--red);
}
.footer__brand p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 20px;
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer__social a:hover {
  background: var(--red);
  color: white;
  border-color: var(--red);
}
.footer__col h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col ul li a {
  color: var(--muted);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer__col ul li a:hover {
  color: var(--red-l);
}

.footer__meta {
  display: flex;
  gap: 48px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.footer__meta-col {
  flex: 1;
  min-width: 240px;
}
.footer__meta-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.badge {
  padding: 6px 14px;
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}
.badge--green {
  border-color: rgba(34, 197, 94, 0.3);
  color: #4ade80;
}
.badge--pay {
  background: var(--dark-4);
  color: var(--text);
}

.footer__legal {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__legal p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.7;
}
.footer__legal a {
  color: var(--red-l);
}
.footer__legal a:hover {
  text-decoration: underline;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  flex-wrap: wrap;
}
.footer__bottom span {
  font-size: 0.82rem;
  color: var(--muted);
}
.footer__bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__bottom-links a {
  font-size: 0.82rem;
  color: var(--muted);
}
.footer__bottom-links a:hover {
  color: var(--red-l);
}
.footer__lang {
  display: flex;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
}
.footer__lang a {
  color: var(--muted);
}
.footer__lang a.active {
  color: var(--white);
}
.footer__lang a:hover {
  color: var(--red-l);
}

.footer__rg {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.footer__rg-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.footer__rg-bar {
  display: block;
  width: 4px;
  height: 28px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}
.footer__rg-header strong {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}
.footer__rg-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.footer__rg-card {
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__rg-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer__rg-site {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.footer__rg-site:hover {
  color: var(--red-l);
}
.footer__rg-phone {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.footer__rg-desc {
  font-size: 0.78rem;
  color: var(--muted);
}
.footer__rg-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.rg-tool-btn {
  padding: 8px 16px;
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.rg-tool-btn:hover {
  border-color: var(--red);
  color: var(--red-l);
}
.footer__rg-note {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}
.footer__rg-note a {
  color: var(--red-l);
}
.footer__rg-note strong {
  color: var(--white);
}

.badge--interac {
  border-color: rgba(255, 200, 0, 0.4) !important;
  color: #ffc800 !important;
}
.badge--master {
  border-color: rgba(235, 0, 27, 0.4) !important;
  color: #eb001b !important;
}

@media (max-width: 768px) {
  .footer__rg-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .footer__rg-cards {
    grid-template-columns: 1fr;
  }
}

.legal-page {
  padding: 120px 0 80px;
  min-height: 100vh;
}
.legal-page h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.legal-page .updated {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 40px;
}
.legal-page h2 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin: 36px 0 12px;
}
.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.legal-page ul {
  padding-left: 20px;
  list-style: disc;
}
.legal-page a {
  color: var(--red-l);
}

@media (max-width: 1024px) {
  .services__grid,
  .about__grid,
  .sports__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
  .faq__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
  .nav__cta .btn--ghost {
    display: none;
  }
  .services__grid,
  .about__grid,
  .sports__grid {
    grid-template-columns: 1fr;
  }
  .hero__title {
    font-size: 2.8rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .slider__track {
    grid-template-columns: 1fr;
  }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__bottom-links {
    flex-direction: column;
    gap: 10px;
  }
  .resp-banner__inner {
    flex-direction: column;
  }
  .resp-banner__tools {
    flex-direction: column;
  }
  .modal {
    padding: 28px 20px;
  }
  .cookie-banner__inner {
    flex-direction: column;
  }
  .age-gate__box {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.2rem;
  }
  .hero__actions {
    flex-direction: column;
  }
  .section-title {
    font-size: 1.9rem;
  }
}

.modal-overlay {
  padding: 16px;
  align-items: flex-start;
  overflow-y: auto;
}

.modal {
  max-width: 480px;
  width: 100%;
  max-height: none;
  overflow: visible;
  margin: auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  min-width: 0;
}

.form-group {
  min-width: 0;
}

.form-group input,
.form-group select {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

@media (max-width: 520px) {
  .modal-overlay {
    padding: 12px;
  }

  .modal {
    padding: 24px 16px;
    border-radius: 14px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
