:root {
  --bg: #111112;
  --panel: #171719;
  --panel-2: #202024;
  --text: #f6f6f6;
  --muted: #a7abb6;
  --line: rgba(255, 255, 255, 0.16);
  --gold: #ffcc28;
  --gold-soft: #ffe985;
  --blue: #6a8dff;
  --container: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  padding-top: 78px;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(24, 24, 26, 0.78);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(16px);
}

.topbar {
  display: grid;
  grid-template-columns: auto minmax(180px, 360px) 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 70px;
}

.logo img {
  width: 122px;
}

.search-link {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
}

.search-link svg {
  width: 18px;
  margin-left: auto;
  color: var(--gold);
}

.quick-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.quick-nav a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  text-transform: uppercase;
  color: #d6d6d6;
  font-weight: 700;
  white-space: nowrap;
}

.quick-nav svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
}

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

.topbar > .actions {
  justify-self: end;
}

.button,
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 24px;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  white-space: nowrap;
}

.button {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #090909;
}

.button-outline {
  color: #fff;
  box-shadow: inset 0 0 0 2px var(--gold), 0 0 18px rgba(255, 204, 40, 0.24);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero {
  padding: 28px 0 34px;
}

.hero-frame {
  min-height: 470px;
  display: grid;
  place-items: center;
  padding: 42px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.08)), url("../img/bg/bg-1.avif") center / cover no-repeat;
  overflow: hidden;
}

.hero-card {
  width: min(100%, 520px);
  min-height: 300px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 34px;
  padding: 42px;
  border-radius: 8px;
  text-align: center;
  background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12) 4px, rgba(255, 255, 255, 0) 4px, rgba(255, 255, 255, 0) 12px);
  backdrop-filter: blur(16px);
}

.hero-card h1 {
  margin: 0;
  color: var(--gold);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  text-transform: uppercase;
}

.hero-card p {
  margin: 0;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
}

.text-panel {
  margin: 34px auto;
  padding: clamp(22px, 3vw, 42px);
  border-radius: 14px;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.09) 2px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0) 8px);
}

.text-panel h1,
.text-panel h2,
.text-panel h3 {
  margin: 0 0 18px;
}

.copy-slot {
  min-height: 120px;
  border: 1px dashed rgba(255, 255, 255, 0.24);
  border-radius: 8px;
}

.copy-slot + .copy-slot {
  margin-top: 20px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-weight: 700;
}

.spec-table td {
  width: 50%;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.anchor-list {
  display: grid;
  gap: 4px;
  margin: 22px 0;
}

.anchor-list a {
  color: #3987ff;
}

.slots {
  padding: 28px 0 34px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0;
  font-size: 30px;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.slot-card {
  position: relative;
  min-height: 118px;
  border-radius: 14px;
  overflow: hidden;
  background: #222;
}

.slot-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.slot-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 0.2s ease;
}

.slot-card span {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  opacity: 0;
  color: #fff;
  font-weight: 800;
  text-align: center;
  transition: opacity 0.2s ease;
}

.slot-card:hover::after,
.slot-card:hover span {
  opacity: 1;
}

.logos {
  padding: 48px 0 18px;
}

.payment-grid,
.soft-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 26px 58px;
}

.payment-grid img {
  max-width: 150px;
  max-height: 44px;
}

.soft-grid {
  margin-top: 44px;
  gap: 24px 48px;
}

.soft-grid img {
  max-width: 150px;
  max-height: 38px;
}

.site-footer {
  padding: 30px 0 38px;
  color: #858b9b;
  background: #111112;
}

.footer-links,
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  justify-content: space-between;
  margin-top: 46px;
}

.badges {
  display: flex;
  gap: 18px;
  align-items: center;
}

.badges img {
  max-height: 36px;
  opacity: 0.82;
}

.mobile-panel {
  display: contents;
}

@media (max-width: 1180px) {
  .topbar {
    grid-template-columns: auto minmax(160px, 1fr) auto;
  }

  .quick-nav {
    display: none;
  }

  .slot-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 760px) {
  body {
    padding-top: 66px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .topbar {
    min-height: 62px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .search-link {
    display: none;
  }

  .actions {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .mobile-panel {
    display: none;
    grid-column: 1 / -1;
    padding: 0 0 14px;
  }

  .site-header.is-open .mobile-panel {
    display: grid;
    gap: 12px;
  }

  .site-header.is-open .quick-nav,
  .site-header.is-open .actions {
    display: grid;
    justify-content: stretch;
  }

  .site-header.is-open .quick-nav a,
  .site-header.is-open .actions a {
    justify-content: center;
  }

  .hero {
    padding-top: 16px;
  }

  .hero-frame {
    min-height: 430px;
    padding: 16px;
  }

  .hero-card {
    min-height: 340px;
    padding: 28px 18px;
  }

  .spec-table,
  .spec-table tbody,
  .spec-table tr,
  .spec-table td {
    display: block;
    width: 100%;
  }

  .slot-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .section-head {
    display: grid;
  }

  .button,
  .button-outline {
    width: 100%;
  }

  .payment-grid,
  .soft-grid {
    gap: 18px 22px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

