:root {
  --bg-dark: #0a0e27;
  --bg-card: #121832;
  --bg-header: rgba(10, 14, 39, 0.92);
  --accent-blue: #3b5bff;
  --accent-cyan: #17e6e6;
  --accent-red: #f31d1d;
  --accent-green: #16a34a;
  --accent-green-dark: #14532d;
  --text-primary: #ffffff;
  --text-secondary: #a8b0d0;
  --text-muted: #6b7394;
  --gradient-hero: linear-gradient(135deg, rgba(59, 91, 255, 0.85) 0%, rgba(23, 230, 230, 0.65) 100%);
  --gradient-btn: linear-gradient(135deg, #e8eaed 0%, #f5f6f8 100%);
  --btn-text: #0a0e27;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  --header-h: 72px;
  --container: 1140px;
  --transition: 0.25s ease;
  --divider-line: rgba(255, 255, 255, 0.14);
  --divider-border: rgba(255, 255, 255, 0.18);
  --divider-outline: rgba(59, 91, 255, 0.1);
  --text-divider: rgba(255, 255, 255, 0.12);
}

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

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

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

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

/* Dividers — lines & outlines for text blocks */
.divided-surface {
  gap: 1px;
  padding: 1px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--divider-line);
  border: 1px solid var(--divider-border);
  box-shadow: 0 0 0 1px var(--divider-outline);
}

.divided-surface > * {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
}

.text-block__title + .text-block__body,
.feature-card__title + .feature-card__text,
.faq-item h3 + p,
.review-card__header + .review-card__text,
.about__block h3 + p,
.about__block h3 + .about__list,
.about__block p + p,
.about__block p + .about__list,
.page-hero__title + .page-hero__subtitle,
.section-head__title + .section-head__desc,
.home-bento__title + .home-bento__text,
.home-step__title + .home-step__text,
.home-review__stars + .home-review__text,
.home-review__text + .home-review__author,
.home-cta__title + .home-cta__text,
.contact-card__title + .contact-card__text,
.promo-card__header + .promo-card__progress,
.promo-card__progress + .promo-card__meta,
.home-promo-mini__code + .home-promo-mini__meta,
.home-promo-mini__meta + .promo-card__copy {
  border-top: 1px solid var(--text-divider);
  padding-top: 12px;
  margin-top: 12px;
}

.about__block p + p {
  margin-top: 0;
  padding-top: 14px;
}

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

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

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-h);
  background: var(--bg-header);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 12px;
  min-width: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  min-width: 0;
}

.logo__img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.logo__brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1;
}

.logo__wilder {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.logo__casino {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent-blue);
}

.nav {
  display: none;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.nav__link {
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.nav__link--active {
  color: var(--text-primary);
  background: rgba(59, 91, 255, 0.15);
}

.header__actions {
  display: none;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header__actions .btn {
  padding: 10px 18px;
  font-size: 0.88rem;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

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

.btn--primary {
  background: var(--gradient-btn);
  color: var(--btn-text);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.12);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #f5f6f8 0%, #ffffff 100%);
  box-shadow: 0 6px 28px rgba(255, 255, 255, 0.2);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

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

.btn--lg {
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius);
}

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

.burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  transition: background var(--transition);
}

.burger:hover {
  background: rgba(255, 255, 255, 0.14);
}

.burger__icon {
  width: 22px;
  height: 22px;
}

.burger__close {
  display: none;
}

.burger.is-open .burger__open {
  display: none;
}

.burger.is-open .burger__close {
  display: block;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(10, 14, 39, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform var(--transition);
  overflow-y: auto;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__link {
  display: block;
  padding: 16px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition), color var(--transition);
}

.mobile-menu__link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
}

.mobile-menu__link--active {
  background: rgba(59, 91, 255, 0.15);
  color: var(--text-primary);
}

.mobile-menu__cta {
  margin-top: 16px;
}

.overlay {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 98;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 0 60px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  background: url("../assets/hero-bg.png") center right / 55% no-repeat;
  opacity: 0.12;
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(59, 91, 255, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(23, 230, 230, 0.2) 0%, transparent 50%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  background: rgba(23, 230, 230, 0.1);
  border: 1px solid rgba(23, 230, 230, 0.25);
  border-radius: 100px;
}

.hero__title {
  margin: 0 0 20px;
  font-size: clamp(1.75rem, 6vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero__subtitle {
  margin: 0 0 28px;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.7;
}

.hero__subtitle strong {
  color: #fff;
}

.hero__brand {
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.promo {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px dashed rgba(243, 29, 29, 0.5);
  border-radius: var(--radius);
}

.promo__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.promo__code {
  font-size: clamp(1.1rem, 4vw, 1.5rem);
  font-weight: 800;
  color: var(--accent-red);
  letter-spacing: 0.08em;
  font-family: "SF Mono", "Fira Code", monospace;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
  text-align: center;
}

.stat__value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-cyan);
}

.stat__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Features */
.features {
  padding: 80px 0;
}

.section-title {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.02em;
}

.section-subtitle {
  margin: 0 auto 48px;
  max-width: 560px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 1rem;
}

.features__grid {
  display: grid;
  gap: 1px;
  padding: 1px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--divider-line);
  border: 1px solid var(--divider-border);
  box-shadow: 0 0 0 1px var(--divider-outline);
}

.feature-card {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-2px);
  z-index: 1;
  border-color: rgba(59, 91, 255, 0.45);
  box-shadow: inset 0 0 0 1px rgba(59, 91, 255, 0.25);
}

.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  background: rgba(59, 91, 255, 0.15);
  border-radius: 14px;
}

.feature-card__title {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
}

.feature-card__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* About */
.about {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(18, 24, 50, 0.5) 100%);
}

.about__content {
  max-width: 800px;
  margin-inline: auto;
}

.about__block {
  margin-bottom: 0;
  padding: 24px 26px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
}

.about__block h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.about__block p {
  margin: 0 0 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
}

.about__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about__list li {
  position: relative;
  padding: 10px 0 10px 28px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.about__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: 700;
}

/* Social */
.social {
  padding: 60px 0 80px;
  text-align: center;
}

.social__links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #229ed9;
  border-radius: 50%;
  color: #fff;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.social__btn:hover {
  transform: scale(1.08);
  background: #1b8bc4;
  box-shadow: 0 6px 24px rgba(34, 158, 217, 0.45);
}

.social__btn svg {
  width: 28px;
  height: 28px;
}

/* Footer */
.footer {
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer__text {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Desktop */
@media (min-width: 1024px) {
  .burger {
    display: none;
  }

  .nav {
    display: flex;
  }

  .header__actions {
    display: flex;
  }

  .mobile-menu,
  .overlay {
    display: none !important;
  }

  .hero__buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero__stats {
    gap: 24px;
  }

  .stat__value {
    font-size: 2rem;
  }

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

@media (min-width: 768px) and (max-width: 1023px) {
  .logo__brand {
    font-size: 1.15rem;
  }

  .logo__wilder,
  .logo__casino {
    font-size: 1.15rem;
  }

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

@media (min-width: 1024px) {
  :root {
    --header-h: 80px;
  }

  .hero__bg-img {
    background-size: 45%;
    background-position: center right 5%;
    opacity: 0.18;
  }

  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero__content {
    max-width: 700px;
  }
}

@media (max-width: 767px) {
  .hero__bg-img {
    background-position: center bottom;
    background-size: 70%;
    opacity: 0.08;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
  }

  .stat__value {
    font-size: 1.25rem;
  }
}

body.menu-open {
  overflow: hidden;
}

/* Subpages */
.page-hero {
  padding: calc(var(--header-h) + 48px) 0 48px;
  background: linear-gradient(180deg, rgba(59, 91, 255, 0.12) 0%, transparent 100%);
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero__title {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-hero__subtitle {
  margin: 0 auto;
  max-width: 560px;
  color: var(--text-secondary);
  font-size: 1rem;
}

.page-content {
  padding: 48px 0 80px;
}

.page-content--narrow {
  max-width: 800px;
  margin-inline: auto;
  display: grid;
  gap: 1px;
  padding: 1px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--divider-line);
  border: 1px solid var(--divider-border);
  box-shadow: 0 0 0 1px var(--divider-outline);
}

/* Promocodes */
.promo-list {
  display: grid;
  gap: 1px;
  padding: 1px;
  max-width: 720px;
  margin-inline: auto;
  border-radius: 20px;
  overflow: hidden;
  background: var(--divider-line);
  border: 1px solid var(--divider-border);
  box-shadow: 0 0 0 1px var(--divider-outline);
}

.promo-card {
  padding: 20px 22px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.promo-card:hover {
  z-index: 1;
  border-color: rgba(59, 91, 255, 0.45);
  box-shadow: inset 0 0 0 1px rgba(59, 91, 255, 0.25);
}

.promo-card--featured {
  border-color: rgba(255, 255, 255, 0.25);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, var(--bg-card) 100%);
}

.promo-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.promo-card__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--accent-cyan);
}

.promo-card__status svg {
  width: 100%;
  height: 100%;
  display: block;
}

.promo-card__status--featured {
  color: #fbbf24;
}

.promo-card__code {
  flex: 1;
  min-width: 0;
  font-size: clamp(1rem, 3.5vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--accent-cyan);
  font-family: "SF Mono", "Fira Code", monospace;
  word-break: break-all;
}

.promo-card__copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--btn-text);
  background: var(--gradient-btn);
  border-radius: var(--radius-sm);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  flex-shrink: 0;
}

.promo-card__copy:hover {
  background: linear-gradient(135deg, #f5f6f8 0%, #ffffff 100%);
}

.promo-card__copy.is-copied {
  background: linear-gradient(135deg, #17a34a 0%, #22c55e 100%);
  color: #fff;
}

.promo-card__copy:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.promo-card--exhausted {
  opacity: 0.65;
}

.promo-card--exhausted:hover {
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.promo-card__status--exhausted {
  color: #ef4444;
}

.promo-loading,
.promo-empty {
  padding: 40px 20px;
  text-align: center;
  color: var(--text-secondary);
  background: var(--bg-card);
}

.promo-card__progress {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 10px;
}

.promo-card__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
  border-radius: 100px;
  transition: width 0.6s ease;
}

.promo-card__bar--hot {
  background: linear-gradient(90deg, #f59e0b, var(--accent-red));
}

.promo-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.promo-card__price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.promo-hint {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 auto 32px;
  max-width: 720px;
  padding: 16px 20px;
  text-align: left;
  font-size: 0.9rem;
  color: var(--text-secondary);
  background: rgba(59, 91, 255, 0.1);
  border: 1px solid rgba(59, 91, 255, 0.2);
  border-radius: var(--radius-sm);
}

.promo-hint__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--accent-cyan);
}

.promo-hint__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.promo-hint__text {
  flex: 1;
  min-width: 0;
  line-height: 1.55;
}

.copy-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: 200;
  padding: 14px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: #22c55e;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.copy-toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 1px;
  padding: 1px;
  max-width: 720px;
  margin-inline: auto;
  border-radius: 20px;
  overflow: hidden;
  background: var(--divider-line);
  border: 1px solid var(--divider-border);
  box-shadow: 0 0 0 1px var(--divider-outline);
}

.faq-item {
  padding: 20px 22px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.faq-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Reviews */
.reviews__grid {
  display: grid;
  gap: 1px;
  padding: 1px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--divider-line);
  border: 1px solid var(--divider-border);
  box-shadow: 0 0 0 1px var(--divider-outline);
}

.review-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
}

.review-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.review-card__name {
  font-weight: 700;
}

.review-card__stars {
  display: inline-flex;
  align-items: center;
}

.review-card__text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Contacts */
.contacts__grid {
  display: grid;
  gap: 1px;
  padding: 1px;
  max-width: 640px;
  margin-inline: auto;
  border-radius: 20px;
  overflow: hidden;
  background: var(--divider-line);
  border: 1px solid var(--divider-border);
  box-shadow: 0 0 0 1px var(--divider-outline);
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
  z-index: 1;
  border-color: rgba(59, 91, 255, 0.45);
  box-shadow: inset 0 0 0 1px rgba(59, 91, 255, 0.25);
}

.contact-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(59, 91, 255, 0.15);
  border-radius: 14px;
  flex-shrink: 0;
}

.contact-card__title {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 700;
}

.contact-card__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 16px;
}

.footer__nav a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

@media (max-width: 640px) {
  .promo-card__header {
    flex-direction: column;
    align-items: stretch;
  }

  .promo-card__copy {
    width: 100%;
    justify-content: center;
  }

  .logo__brand {
    gap: 6px;
  }

  .logo__wilder,
  .logo__casino {
    font-size: 1.15rem;
  }
}

@media (min-width: 768px) {
  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Admin */
.admin-page {
  min-height: 100vh;
  background: var(--bg-dark);
}

.admin {
  width: min(100% - 32px, 960px);
  margin-inline: auto;
  padding: 40px 0 60px;
}

.admin-login {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}

.admin-card {
  width: 100%;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.admin-card--form {
  margin-bottom: 24px;
}

.admin-card__title {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.admin-card__subtitle {
  margin: 0 0 20px;
  font-size: 1.1rem;
}

.admin-card__desc,
.admin-header__desc {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.admin-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.admin-header__title {
  margin: 0 0 6px;
  font-size: 1.75rem;
}

.admin-form {
  display: grid;
  gap: 16px;
}

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

.admin-field {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.admin-field input[type="text"],
.admin-field input[type="password"],
.admin-field input[type="number"] {
  padding: 12px 14px;
  font: inherit;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
}

.admin-field--check {
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: end;
}

.admin-error {
  margin: 12px 0 0;
  color: #f87171;
  font-size: 0.9rem;
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

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

.admin-table th,
.admin-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-table th {
  color: var(--text-secondary);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.03);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-btn {
  padding: 6px 10px;
  font: inherit;
  font-size: 0.8rem;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  cursor: pointer;
}

.admin-btn--danger {
  color: #fca5a5;
  border-color: rgba(239, 68, 68, 0.35);
}

.admin-badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.admin-badge--ok {
  color: #86efac;
  background: rgba(34, 197, 94, 0.15);
}

.admin-badge--off {
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.15);
}

.admin-badge--feat {
  color: #fde68a;
  background: rgba(234, 179, 8, 0.15);
}

@media (max-width: 640px) {
  .admin-form--grid {
    grid-template-columns: 1fr;
  }

  .admin-header {
    flex-direction: column;
  }
}
