/* Pin Up Uzbekistan — style.css */

:root {
  --red: #e81b3d;
  --red-dark: #c41230;
  --red-glow: rgba(232, 27, 61, 0.35);
  --gold: #ffc107;
  --gold-soft: #ffe082;
  --bg: #0d0d0f;
  --bg-card: #16161a;
  --bg-elevated: #1c1c22;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f5f5f7;
  --muted: #9a9aad;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  --container: 1200px;
  --header-h: 72px;
  --mobile-bar-h: 64px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  box-shadow: 0 8px 24px var(--red-glow);
}

.btn--primary:hover {
  box-shadow: 0 12px 32px var(--red-glow);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn--sm {
  padding: 10px 16px;
  font-size: 0.875rem;
}

.btn--full {
  width: 100%;
}

/* Badge */
.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(232, 27, 61, 0.15);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.badge--warning {
  background: rgba(255, 193, 7, 0.15);
  color: var(--gold);
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.logo__pin {
  color: var(--red);
}

.logo__up {
  color: var(--text);
}

.logo__country {
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 6px;
  background: var(--gold);
  color: #1a1a1a;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

/* Age modal */
.age-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

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

.age-modal__box {
  max-width: 480px;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
}

.age-modal__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: #1a1a1a;
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.age-modal__box h2 {
  margin: 0 0 12px;
  font-size: 1.5rem;
}

.age-modal__box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.age-modal__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

/* Mobile bar */
.mobile-bar {
  display: none;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 15, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.header.is-scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.15s;
}

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

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-elevated);
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

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

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

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

/* Hero */
.hero {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% 20%, rgba(232, 27, 61, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(255, 193, 7, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero__content p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 52ch;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.hero__features li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__features strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}

.hero__features span {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero__card {
  max-width: 480px;
}

.hero__figure {
  margin: 0 0 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Promo card */
.promo-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.promo-card__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.promo-card__value {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}

.promo-card__percent {
  font-size: 3rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.promo-card__plus {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}

.promo-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.promo-card__code {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed var(--border);
}

.promo-card__code span {
  color: var(--muted);
  font-size: 0.85rem;
}

.promo-card__code strong {
  flex: 1;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.copy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  transition: background 0.15s, color 0.15s;
}

.copy-btn:hover {
  background: var(--red);
  color: #fff;
}

.promo-card__note {
  display: block;
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
}

/* Ticker */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}

.ticker__track {
  display: flex;
  gap: 32px;
  width: max-content;
  padding: 14px 0;
  animation: ticker 30s linear infinite;
}

.ticker__track span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.section {
  padding: 80px 0;
}

.section--dark {
  background: var(--bg-card);
}

.section--accent {
  background: linear-gradient(180deg, rgba(232, 27, 61, 0.04) 0%, transparent 100%);
}

.section__head {
  max-width: 640px;
  margin-bottom: 40px;
}

.section__head--center {
  text-align: center;
  max-width: none;
}

.section__head h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section__head p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Content blocks */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.content-split--reverse {
  direction: rtl;
}

.content-split--reverse > * {
  direction: ltr;
}

.content-block p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.content-block h2 {
  margin: 0 0 20px;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.content-block--center {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.content-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.content-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.content-figure--bonuses img {
  object-fit: contain;
  background: var(--bg-elevated);
  padding: 12px;
}

/* Data table */
.table-wrap {
  margin: 40px 0 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-elevated);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table thead {
  background: rgba(232, 27, 61, 0.12);
}

.data-table th,
.data-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.data-table th {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.data-table td {
  color: var(--muted);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.data-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* Bonus mini cards */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.bonus-mini-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  text-align: center;
}

.bonus-mini-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
}

.bonus-mini-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Steps */
.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
  counter-reset: steps;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.step-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* App figure */
.app-figure {
  margin: 0;
  display: flex;
  justify-content: center;
}

.app-figure img {
  max-width: 320px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* Security */
.security-block {
  padding: 48px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.security-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}

.security-badge {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

/* Conclusion */
.conclusion-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-box h2 {
  margin: 0 0 20px;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
}

.conclusion-box p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.75;
}

.conclusion-box .btn {
  margin-top: 24px;
}

/* Filter tabs */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.filter-tab {
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--muted);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  transition: all 0.15s;
}

.filter-tab:hover {
  color: var(--text);
}

.filter-tab.is-active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

/* Games grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.game-card {
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.game-card.is-hidden {
  display: none;
}

.game-card__img {
  height: 140px;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.game-card__img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.game-card__body {
  padding: 20px;
}

.game-card__tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(232, 27, 61, 0.2);
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.game-card h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 700;
}

.game-card p {
  margin: 0 0 12px;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.game-card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--red);
  transition: color 0.15s;
}

.game-card__link:hover {
  color: var(--gold);
}

/* Sport */
.sport-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.sport-content h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.sport-content p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.sport-content .btn {
  margin-top: 28px;
}

.sport-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-box {
  padding: 28px 20px;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  text-align: center;
}

.stat-box strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-box span {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Bonus tabs */
.bonus-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.bonus-tab {
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  transition: all 0.15s;
}

.bonus-tab:hover {
  color: var(--text);
}

.bonus-tab.is-active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.bonus-panels {
  position: relative;
}

.bonus-panel {
  display: none;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.bonus-panel.is-active {
  display: block;
}

.bonus-panel__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.bonus-panel h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  font-weight: 800;
}

.bonus-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 60ch;
}

.bonus-panel__list {
  margin: 20px 0 28px;
  padding: 0;
  list-style: none;
}

.bonus-panel__list li {
  padding: 8px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.bonus-panel__list li::before {
  content: "• ";
  color: var(--gold);
}

/* Payments */
.payments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.payment-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.payment-card:hover {
  border-color: rgba(232, 27, 61, 0.3);
}

.payment-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.payment-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
}

.payment-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.payments-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.payments-info__item {
  padding: 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

.payments-info__item strong {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.payments-info__item span {
  font-size: 1.1rem;
  font-weight: 700;
}

/* App section */
.app-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: center;
}

.app-content h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
}

.app-content p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.app-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}


/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.2s;
}

.benefit-card:hover {
  transform: translateY(-4px);
}

.benefit-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.benefit-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
}

.benefit-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  color: var(--text);
  background: transparent;
  transition: background 0.15s;
}

.faq-item__q:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  position: relative;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: var(--muted);
  transform: translate(-50%, -50%);
  transition: transform 0.2s;
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.is-open .faq-item__a {
  max-height: 200px;
}

.faq-item__a p {
  margin: 0;
  padding: 0 24px 20px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Responsible */
.responsible__box {
  padding: 48px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.08) 0%, rgba(232, 27, 61, 0.06) 100%);
  border: 1px solid rgba(255, 193, 7, 0.2);
  text-align: center;
}

.responsible__box h2 {
  margin: 0 0 16px;
  font-size: 1.75rem;
  font-weight: 800;
}

.responsible__box p {
  margin: 0;
  color: var(--muted);
  max-width: 64ch;
  margin-inline: auto;
  line-height: 1.7;
}

.responsible__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.responsible__links a {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}

.responsible__links a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  padding: 60px 0 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__brand p {
  margin: 16px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 32ch;
}

.footer__nav,
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav strong,
.footer__contact strong {
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 4px;
}

.footer__nav a,
.footer__contact span {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.15s;
}

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

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}

.footer__age {
  padding: 4px 12px;
  border-radius: 6px;
  background: rgba(255, 193, 7, 0.15);
  color: var(--gold);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__card {
    max-width: 520px;
  }

  .content-split,
  .content-split--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

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

  .sport-grid,
  .app-grid {
    grid-template-columns: 1fr;
  }

  .payments-grid,
  .benefits-grid,
  .bonus-cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .table-wrap {
    overflow-x: auto;
  }

  .data-table {
    min-width: 640px;
  }
}

@media (max-width: 768px) {
  .mobile-bar {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 110;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(13, 13, 15, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }

  .mobile-bar .btn {
    flex: 1;
  }

  body {
    padding-top: var(--mobile-bar-h);
  }

  .header {
    top: var(--mobile-bar-h);
  }

  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: calc(var(--mobile-bar-h) + var(--header-h));
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 16px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s, opacity 0.25s, visibility 0.25s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }

  .header__actions {
    display: none;
  }

  .section {
    padding: 60px 0;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .sport-stats {
    grid-template-columns: 1fr;
  }

  .payments-grid,
  .benefits-grid,
  .bonus-cards {
    grid-template-columns: 1fr;
  }

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

  .security-block {
    padding: 32px 24px;
  }

  .step-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

@media (max-width: 480px) {
  .hero__cta {
    flex-direction: column;
  }

  .hero__cta .btn {
    width: 100%;
  }

  .bonus-panel {
    padding: 24px;
  }

  .responsible__box {
    padding: 32px 24px;
  }
}
