
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --page-bg: radial-gradient(circle at top left, #1b2a4b 0%, #0b1224 45%, #050912 100%);
  --surface-primary: rgba(18, 26, 48, 0.82);
  --surface-secondary: rgba(12, 19, 36, 0.7);
  --surface-contrast: rgba(255, 255, 255, 0.04);
  --border-soft: rgba(120, 158, 255, 0.22);
  --border-strong: rgba(120, 158, 255, 0.4);
  --shadow: 0 24px 48px rgba(10, 16, 31, 0.55);
  --text-primary: #f7f9ff;
  --text-secondary: rgba(216, 225, 255, 0.78);
  --accent-primary: linear-gradient(135deg, #6c8cff 0%, #7f53ff 50%, #ff5ecd 100%);
  --accent-solid: #6c8cff;
  --accent-neutral: rgba(255, 255, 255, 0.12);
  --font-body: "Poppins", sans-serif;
  --font-heading: "Poppins", sans-serif;
  --container-width: 1228px;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--page-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

a {
  color: inherit;
}

button {
  font: inherit;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  padding: 0.85rem 1.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.btn--primary {
  background-image: var(--accent-primary);
  color: #fff;
  box-shadow: 0 12px 24px rgba(120, 158, 255, 0.35);
}

.btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  color: var(--text-primary);
}

.btn--ghost {
  border: none;
  background: var(--accent-neutral);
  color: var(--text-primary);
}

.btn--cta {
  width: fit-content;
  background-image: var(--accent-primary);
  color: #fff;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.85rem 1.95rem;
  box-shadow: 0 18px 32px rgba(104, 73, 255, 0.45);
}

.btn:hover {
  filter: brightness(1.1);
  box-shadow: 0 18px 32px rgba(104, 73, 255, 0.6);
}

.btn:active {
  transform: scale(0.97);
}

.page {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 120px;
}

.navbar {
  width: calc(100% - 32px);
  max-width: var(--container-width);
  margin-top: 24px;
  padding: 18px 28px;
  border-radius: 24px;
  background: var(--surface-primary);
  border: 1px solid var(--border-soft);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  position: relative;
  z-index: 40;
}

.navbar__brand img {
  height: 40px;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
}

.navbar__links {
  display: flex;
  gap: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.navbar__links a {
  position: relative;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  text-decoration: none;
}

.navbar__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: background 0.2s ease, transform 0.2s ease;
  transform: scaleX(0.2);
  transform-origin: left;
}

.navbar__links a:hover {
  color: var(--text-primary);
}

.navbar__links a:hover::after,
.navbar__links a.is-active::after {
  background: var(--accent-primary);
  transform: scaleX(1);
}

.navbar__links a.is-active {
  color: var(--text-primary);
}

.navbar__toggle {
  display: none;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  background: var(--accent-neutral);
  color: var(--text-primary);
  padding: 0;
  gap: 6px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.navbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.navbar__toggle span + span {
  margin-top: 0;
}

.navbar__toggle:hover,
.navbar__toggle:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.32);
}

.navbar__toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}

.navbar.is-open .navbar__toggle {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
}

.navbar.is-open .navbar__toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar.is-open .navbar__toggle span:nth-child(2) {
  opacity: 0;
}

.navbar.is-open .navbar__toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.content {
  margin-top: 88px;
  width: calc(100% - 32px);
  max-width: 1260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  text-align: center;
  max-width: 960px;
}

.hero h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 7vw, 5rem);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  line-height: 1.05;
  background-image: var(--accent-primary);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 18px 40px rgba(82, 39, 255, 0.45);
}

.glass-card {
  width: 100%;
  max-width: var(--container-width);
  padding: 36px;
  border-radius: 28px;
  background: var(--surface-primary);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
  backdrop-filter: blur(28px);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.top-operators h3,
.finance h3,
.cards-grid h3,
.slider__header h3,
.commitment h3,
.help h3 {
  font-size: clamp(1.75rem, 3vw, 2rem);
  margin: 0;
  text-align: center;
}

.top-operators p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

.top-operators__grid {
  display: grid;
  gap: 28px;
}

.operator-card {
  position: relative;
  display: grid;
  grid-template-columns: 88px 1fr 220px;
  gap: 32px;
  align-items: center;
  padding: 32px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  border: 1px solid var(--border-soft);
  box-shadow: 0 24px 48px rgba(5, 12, 26, 0.45);
}

.operator-card__number {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-right: none;
  padding-right: 0;
  position: relative;
  isolation: isolate;
}

.operator-card__number::after {
  content: "";
  position: absolute;
  right: -26px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 70%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.6;
}

.operator-card__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.operator-card__bonus {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.operator-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.operator-card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.operator-card ul li::before {
  content: "";
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%2329d17f'/%3E%3Cpath d='M9.5 13.8 6.7 11l-1.4 1.4 4.2 4.2 8-8-1.4-1.4-6.6 6.6z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.operator-card__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.operator-card__cta img {
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.35));
}

.operator-card__cta .btn--cta {
  width: auto;
}

.operator-card--pmu .operator-card__number {
  color: #72ffe2;
}

.operator-card--bwin .operator-card__number {
  color: #ffa24b;
}

.operator-card--parions .operator-card__number {
  color: #cd4eff;
}

.operator-card--vbet .operator-card__number {
  color: #6fffab;
}

.operator-card--feeling .operator-card__number {
  color: #7dc3ff;
}

.operator-card--netbet .operator-card__number {
  color: #ff6f81;
}

.finance {
  background: var(--surface-secondary);
  border: 1px solid var(--border-soft);
  gap: 18px;
}

.finance p {
  margin: 0;
  line-height: 1.8;
}

.cards-grid {
  background: var(--surface-secondary);
  border: 1px solid var(--border-soft);
}

.cards-grid__row {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.mini-card {
  width: 100%;
  max-width: 360px;
  padding: 26px 24px;
  border-radius: 24px;
  border: 1px solid var(--border-soft);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
  opacity: 0.95;
}

.mini-card img {
  height: 90px;
  object-fit: contain;
}

.mini-card__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 16px;
  background-image: var(--accent-primary);
  min-width: 140px;
}

.mini-card__badge span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.mini-card__badge strong {
  font-size: 1.5rem;
}

.partners {
  width: calc(100% - 32px);
  max-width: 1260px;
  padding: 20px 28px;
  border-radius: 28px;
  background: var(--surface-secondary);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.partners span {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
}

.partners img {
  height: 44px;
  object-fit: contain;
}

.slider {
  gap: 32px;
}

.slider__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  color: var(--text-secondary);
}

.slider__track {
  width: 100%;
  overflow: hidden;
  position: relative;
  cursor: grab;
  padding-bottom: 8px;
}

.slider__track:active {
  cursor: grabbing;
}

.slider__track-inner {
  display: flex;
  gap: 24px;
  transition: transform 0.35s ease;
}

.slider__item {
  flex: 0 0 220px;
  padding: 18px 32px;
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  position: relative;
}

.slider__item img {
  height: 80px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
}

.slider__item--highlight span {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #eb1111;
  padding: 4px 12px;
  border-radius: 20px 0 20px 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.slider__controls {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.slider__btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-neutral);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  position: relative;
}

.slider__btn::before {
  content: "";
  width: 14px;
  height: 14px;
  border-right: 3px solid #ffe479;
  border-bottom: 3px solid #ffe479;
  transform: rotate(-45deg);
  transition: border-color 0.2s ease;
}

#brand-prev::before {
  transform: rotate(135deg);
}

.slider__btn:hover {
  background: rgba(255, 255, 255, 0.22);
}

.slider__btn:hover::before {
  border-color: #ffffff;
}

.slider__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.commitment {
  background: var(--surface-secondary);
  border: 1px solid var(--border-soft);
}

.commitment__grid {
  display: grid;
  gap: 32px;
  width: 100%;
}

.commitment__card {
  position: relative;
  padding: 32px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 24px;
  line-height: 1.7;
  text-align: left;
}

.commitment__card span {
  flex-shrink: 0;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
}

.commitment__card--blue {
  background: linear-gradient(160deg, rgba(112, 141, 255, 0.3) 0%, rgba(34, 56, 111, 0.6) 100%);
  color: #e2eaff;
}

.commitment__card--blue span {
  color: #7792ff;
}

.commitment__card--amber {
  background: linear-gradient(160deg, rgba(255, 176, 114, 0.28) 0%, rgba(86, 46, 9, 0.6) 100%);
  color: #ffe6cf;
}

.commitment__card--amber span {
  color: #ffc05a;
}

.commitment__card--green {
  background: linear-gradient(160deg, rgba(123, 220, 184, 0.28) 0%, rgba(19, 54, 47, 0.65) 100%);
  color: #d7ffe8;
}

.commitment__card--green span {
  color: #8affbb;
}

.help {
  background: var(--surface-secondary);
  border: 1px solid var(--border-soft);
  gap: 24px;
}

.help__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  line-height: 1.7;
}

.help__body a {
  text-decoration: underline;
}

.site-footer {
  width: calc(100% - 32px);
  max-width: 1212px;
  margin-top: 96px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
  line-height: 1.7;
}

.site-footer a {
  text-decoration: underline;
}

.site-footer__bottom {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.partners--alt {
  background: rgba(0, 12, 41, 0.2);
}

.content--narrow {
  max-width: 960px;
  width: calc(100% - 32px);
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.conditions-hero {
  text-align: center;
  gap: 16px;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.conditions-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.conditions-hero h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin: 0;
  color: #a4b7ff;
}

.conditions-hero p {
  margin: 0 auto;
  max-width: 680px;
  line-height: 1.7;
}

.conditions-cards {
  gap: 40px;
}

.conditions-cards__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.conditions-cards__header h3 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0;
}

.conditions-cards__header p {
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.conditions-card {
  border-radius: 24px;
  border: 1px solid rgba(99, 182, 255, 0.18);
  background: linear-gradient(200deg, rgba(31, 18, 86, 0.9) 0%, rgba(45, 0, 118, 0.95) 100%);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  box-shadow: 0 12px 32px rgba(10, 26, 86, 0.35);
}

.conditions-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  background: linear-gradient(135deg, #61f3c4 0%, #4768ff 100%);
  box-shadow: 0 10px 24px rgba(71, 104, 255, 0.35);
}

.icon--privacy {
  background: linear-gradient(135deg, #f78ff0 0%, #6f7bff 100%);
}

.icon--cookies {
  background: linear-gradient(135deg, #ffc05a 0%, #ff5ac1 100%);
}

.conditions-card h4 {
  margin: 0;
  font-size: 1.25rem;
}

.conditions-card p {
  margin: 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.conditions-info {
  gap: 18px;
  line-height: 1.7;
}

.conditions-info a {
  color: #9ec5ff;
  text-decoration: underline;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  line-height: 1.75;
}

.legal-section h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-bottom: 12px;
  text-transform: none;
}

.legal-section h4 {
  font-size: 1.1rem;
  margin: 16px 0 8px;
  color: #b9c6ff;
  text-transform: none;
}

.legal-section p {
  margin: 0;
}

.legal-list {
  margin: 12px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  list-style: none;
}

.legal-list li {
  position: relative;
  padding-left: 26px;
}

.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, #61f3c4 0%, #4768ff 100%);
  box-shadow: 0 0 8px rgba(71, 104, 255, 0.4);
}

.legal-list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.site-footer--simple {
  margin-top: 48px;
  text-align: center;
  gap: 16px;
}

.site-footer--simple .site-footer__bottom {
  justify-content: center;
}

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(3, 15, 49, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.age-gate__dialog,
.age-gate__denied {
  width: calc(100% - 32px);
  max-width: 460px;
  background: #fff;
  color: #000;
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.age-gate__denied {
  display: none;
  gap: 12px;
}

.age-gate__denied div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.age-gate__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.age-gate__header img {
  height: 32px;
}

.age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(965px, calc(100% - 32px));
  background: #fff;
  color: #000;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 0 18px rgba(9, 9, 28, 0.4);
  display: none;
  gap: 16px;
  align-items: center;
  z-index: 10;
}

.cookie-banner a {
  color: #6172f3;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-left: auto;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(3, 15, 49, 0.9);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 25;
}

.cookie-modal__dialog {
  position: relative;
  width: calc(100% - 32px);
  max-width: 480px;
  background: #fff;
  color: #000;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cookie-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  background: rgba(97, 114, 243, 0.12);
  padding: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal__close::before,
.cookie-modal__close::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  background: #444ce7;
  border-radius: 2px;
}

.cookie-modal__close::before {
  transform: rotate(45deg);
}

.cookie-modal__close::after {
  transform: rotate(-45deg);
}

.cookie-modal__group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-toggle {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 12px;
  align-items: center;
}

.cookie-toggle input {
  display: none;
}

.cookie-toggle span {
  width: 24px;
  height: 24px;
  border: 1px solid #a4a4a4;
  border-radius: 6px;
  position: relative;
  background: #fff;
}

.cookie-toggle span::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border-right: 2px solid #10cb4f;
  border-bottom: 2px solid #10cb4f;
  transform: scale(0) rotate(25deg);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-toggle input:checked + span {
  border-color: #95e5a5;
}

.cookie-toggle input:checked + span::after {
  transform: scale(1) rotate(45deg);
  opacity: 1;
}

.cookie-toggle div p {
  margin: 0;
  font-weight: 600;
}

.cookie-toggle div small {
  color: #646464;
}

.cookie-modal__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.hidden {
  display: none !important;
}

.display {
  display: flex !important;
}

.no-scroll {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .navbar {
    gap: 16px;
  }

  .navbar__links {
    font-size: 0.95rem;
    gap: 16px;
  }

  .glass-card {
    padding: 24px;
  }

  .content {
    gap: 56px;
  }

  .operator-card {
    grid-template-columns: 70px 1fr 200px;
    gap: 24px;
    padding: 28px;
  }

  .operator-card__number::after {
    right: -18px;
  }

  .operator-card__cta .btn--cta {
    width: auto;
  }
}

@media (max-width: 900px) {
  .partners {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }

  .partners span {
    width: 60%;
    height: 1px;
  }

  .commitment__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .commitment__card span {
    position: relative;
  }

  .navbar {
    padding: 12px 16px;
  }
}

@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }

  .navbar {
    padding: 12px 16px;
  }

  .navbar__toggle {
    display: inline-flex;
  }

  .navbar__links {
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 20px;
    background: var(--surface-primary);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    box-shadow: var(--shadow);
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .navbar.is-open .navbar__links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .navbar__links a {
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
    text-align: left;
  }

  .navbar__links a:hover,
  .navbar__links a:focus-visible {
    background: rgba(255, 255, 255, 0.16);
  }

  .content {
    margin-top: 48px;
  }

  .glass-card {
    padding: 20px;
    gap: 20px;
  }

  .operator-card {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
    gap: 18px;
    padding: 24px;
  }

  .operator-card__number {
    padding-right: 0;
    padding-bottom: 12px;
    border-right: none;
    justify-content: flex-start;
  }

  .operator-card__number::after {
    display: none;
  }

  .operator-card__info {
    grid-column: 2;
  }

  .operator-card__cta {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .operator-card__cta .btn--cta {
    width: auto;
  }

  .operator-card__cta img {
    height: 64px;
  }

  .mini-card {
    max-width: 100%;
  }

  .slider__item {
    flex-basis: 70%;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .site-footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .hero h2 {
    -webkit-text-stroke: 1px #00baff;
  }

  .hero h1 {
    -webkit-text-stroke: 1px rgba(255, 236, 96, 1);
  }

  .glass-card {
    border-radius: 24px;
  }

  .operator-card {
    grid-template-columns: 1fr;
  }

  .operator-card__number {
    width: 100%;
    justify-content: flex-start;
    border-bottom: none;
  }

  .operator-card__info {
    grid-column: 1;
  }

  .operator-card__cta {
    width: 100%;
  }

  .partners img {
    height: 36px;
  }

  .slider__controls {
    gap: 16px;
  }

  .age-gate__dialog,
  .age-gate__denied {
    padding: 20px;
  }

  .cookie-modal__dialog {
    padding: 24px;
  }
}

