:root {
  --bg: #0e1117;
  --bg-soft: #151b27;
  --panel: rgba(20, 27, 40, 0.86);
  --panel-strong: #182132;
  --text: #f4f8ff;
  --muted: #b8c1d4;
  --line: rgba(255, 255, 255, 0.14);
  --pink: #6c73ff;
  --violet: #50b8f7;
  --blue: #3f8cff;
  --cyan: #73d5ff;
  --green: #38f3b3;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
  --header-h: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background-color: #0e1117;
  background-image:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(88, 101, 242, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 35% at 80% 60%, rgba(87, 200, 242, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(88, 101, 242, 0.10) 0%, transparent 60%);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 70%, transparent);
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(14, 17, 23, 0.88), rgba(14, 17, 23, 0.25));
  backdrop-filter: blur(4px);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  position: relative;
  display: grid;
  place-items: center;
  width: 206px;
  height: 64px;
  overflow: hidden;
  border-radius: 8px;
}

.brand img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #07121e;
  color: #fff;
  font-weight: 900;
  font-size: 22px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav > li {
  position: relative;
}

.nav > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.nav > li > a::before {
  content: none;
}

.nav-caret {
  color: var(--pink);
  font-size: 12px;
}

.dropdown {
  position: absolute;
  top: 48px;
  left: 50%;
  min-width: 218px;
  padding: 10px;
  transform: translateX(-50%) translateY(8px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(9, 9, 19, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: 160ms ease;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.is-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.dropdown a:hover,
.dropdown a:focus-visible {
  color: #fff;
  background: linear-gradient(90deg, rgba(240, 25, 147, 0.2), rgba(36, 125, 255, 0.15));
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(90deg, var(--pink), var(--violet));
  box-shadow: 0 13px 34px rgba(240, 25, 147, 0.28);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  filter: brightness(1.08);
}

.btn-outline {
  background: rgba(8, 8, 18, 0.25);
  border-color: var(--pink);
  box-shadow: inset 0 0 0 1px rgba(36, 125, 255, 0.6);
}

.btn-soft {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.btn.is-disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.news-bar {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 29;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(90deg, rgba(88, 101, 242, 0.95), rgba(87, 200, 242, 0.9));
}

.news-inner {
  width: min(1120px, calc(100% - 40px));
  min-height: 42px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 800;
}

.has-news .hero-slide {
  padding-top: calc(var(--header-h) + 42px);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #03030a;
}

.hero::before,
.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 10, 18, 0.84), rgba(6, 10, 18, 0.16) 56%, rgba(6, 10, 18, 0.54)),
    url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1920&q=80") center / cover no-repeat;
  filter: saturate(1.02);
}

.hero::after,
.inner-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, #05050b 80%);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  align-items: center;
  gap: 40px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: var(--header-h);
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 520px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 14px 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.07);
  font-weight: 900;
}

.status-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 18px rgba(240, 25, 147, 0.9);
}

.hero h1 {
  margin: 28px 0 12px;
  font-size: 64px;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero p,
.lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-cta {
  margin-top: 28px;
}

.hero-art {
  position: relative;
  z-index: 2;
  width: 620px;
  margin-left: auto;
  filter: drop-shadow(0 32px 42px rgba(0, 0, 0, 0.55));
  animation: heroFloat 5.8s ease-in-out infinite;
}

.slide-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: grid;
  place-items: center;
  width: 46px;
  height: 58px;
  border: 0;
  color: #6e65ff;
  background: transparent;
  font-size: 56px;
  line-height: 1;
  cursor: pointer;
}

.slide-arrow.prev {
  left: 18px;
}

.slide-arrow.next {
  right: 18px;
}

.slide-count {
  position: absolute;
  right: 42px;
  bottom: 34px;
  z-index: 4;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.slide-count strong {
  color: #fff;
  font-size: 42px;
  font-weight: 500;
}

@keyframes heroFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.section {
  position: relative;
  padding: 86px 0;
}

.section-dark {
  background: linear-gradient(180deg, rgba(9, 9, 20, 0.4), rgba(3, 3, 7, 0.92));
}

.section-title {
  max-width: 700px;
  margin-bottom: 34px;
}

.eyebrow {
  color: var(--pink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  margin: 10px 0 10px;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: 0;
}

h4 {
  margin: 0;
  font-size: 18px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

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

.card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(23, 23, 42, 0.92), rgba(9, 9, 18, 0.94));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(115, 213, 255, 0.45);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3);
}

.card-pad {
  padding: 24px;
}

.game-card {
  min-height: 350px;
}

.game-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.discount {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--pink), var(--violet));
  font-size: 12px;
  font-weight: 900;
}

.game-card .card-pad {
  display: grid;
  gap: 12px;
}

.price {
  color: #fff;
  font-size: 31px;
  font-weight: 900;
}

.price small {
  color: var(--muted);
  font-size: 14px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.plan-card.featured {
  border-color: rgba(240, 25, 147, 0.7);
  box-shadow: 0 0 0 1px rgba(240, 25, 147, 0.14), 0 24px 54px rgba(240, 25, 147, 0.14);
}

.tag {
  display: inline-flex;
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(240, 25, 147, 0.18);
  border: 1px solid rgba(240, 25, 147, 0.45);
  font-size: 12px;
  font-weight: 900;
}

.plan-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-ok {
  color: #05140e;
  background: rgba(56, 243, 179, 0.9);
  border-color: rgba(56, 243, 179, 0.9);
}

.tag-warn {
  background: rgba(255, 87, 109, 0.18);
  border-color: rgba(255, 87, 109, 0.55);
}

.plan-card.is-out {
  filter: saturate(0.72);
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.feature-list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.feature-list li::before {
  content: "+";
  color: var(--green);
  font-weight: 900;
}

.plan-card .btn {
  margin-top: auto;
}

.segmented {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.segmented button {
  min-height: 34px;
  padding: 0 16px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.segmented button.is-active {
  color: #fff;
  background: linear-gradient(90deg, var(--pink), var(--violet));
}

.segmented + .grid {
  margin-top: 24px;
}

.inner-hero {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: flex;
  align-items: end;
  padding: 150px 0 70px;
}

.inner-hero .section-inner {
  position: relative;
  z-index: 2;
}

.inner-hero h1 {
  max-width: 760px;
  margin: 10px 0 14px;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: 0;
}

.crumb {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-weight: 800;
}

.crumb span {
  color: var(--pink);
}

.media-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.map-panel {
  padding: 24px;
}

.map-panel img {
  width: 100%;
  min-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 20px 38px rgba(36, 125, 255, 0.2));
}

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

.metric {
  padding: 22px;
  text-align: center;
}

.metric strong {
  display: block;
  color: #fff;
  font-size: 32px;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.kb-search {
  display: flex;
  gap: 10px;
  max-width: 680px;
}

.kb-search input,
.newsletter input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.kb-search input:focus,
.newsletter input:focus {
  border-color: rgba(240, 25, 147, 0.7);
}

.article-list {
  display: grid;
  gap: 12px;
}

.article-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.legal-section {
  padding-top: 18px;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding-top: 118px;
  padding-bottom: 14px;
}

.legal-hero h1 {
  max-width: 760px;
  margin: 10px 0 10px;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
}

.legal-hero .lead {
  max-width: 820px;
  margin: 0;
}

.legal-policy {
  display: grid;
  gap: 16px;
}

.legal-stack {
  display: grid;
  gap: 10px;
}

.legal-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.legal-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 12px;
  list-style: none;
  cursor: pointer;
  color: #f3f6ff;
  font-size: 13px;
  font-weight: 800;
}

.legal-item summary::-webkit-details-marker {
  display: none;
}

.legal-toggle {
  flex: 0 0 auto;
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, #6c55ff, #4ec8ff);
  box-shadow: 0 8px 16px rgba(108, 85, 255, 0.28);
}

.legal-toggle::before,
.legal-toggle::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 1px;
  background: #fff;
}

.legal-toggle::before {
  width: 8px;
  height: 2px;
}

.legal-toggle::after {
  width: 2px;
  height: 8px;
}

.legal-item[open] .legal-toggle::after {
  opacity: 0;
}

.legal-content {
  padding: 2px 12px 14px;
  color: var(--muted);
  line-height: 1.7;
}

.legal-content p {
  margin: 10px 0 0;
}

.legal-content p:first-child {
  margin-top: 0;
}

.legal-content ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.legal-content li + li {
  margin-top: 6px;
}

.legal-content a {
  color: #8dbaff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.reviews-showcase {
  padding: 82px 0;
  color: #07101f;
  background: #f4f4f6;
}

.stars {
  color: #d2a63c;
  font-weight: 900;
}

.reviews-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card-modern {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  gap: 16px;
  padding: 26px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(16, 20, 35, 0.06);
}

.review-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, #7a5cff, #261a5c);
  font-weight: 900;
}

.review-quote {
  margin: 0;
  color: #07101f;
  font-size: 16px;
  line-height: 1.55;
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.review-tags span {
  padding: 5px 10px;
  border-radius: 999px;
  color: #334;
  background: #f1f1f4;
  font-size: 11px;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.review-person strong,
.review-person small {
  display: block;
}

.review-person small {
  color: #657085;
}

.review-person a {
  margin-left: auto;
  color: #6137ff;
  font-size: 12px;
  font-weight: 900;
}

.review-avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #101827, #48a9ff);
  font-size: 12px;
  font-weight: 900;
}

.index-extended {
  background: #030307;
}

.mini-review-row,
.availability-band,
.faq-grid,
.mobile-band,
.payment-row {
  margin-bottom: 54px;
}

.mini-review-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mini-review-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.mini-review-card p {
  color: var(--muted);
  line-height: 1.7;
}

.availability-band,
.faq-grid,
.mobile-band,
.payment-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: center;
}

.server-orbit {
  display: grid;
  place-items: center;
  min-height: 240px;
  border-radius: 8px;
  background: radial-gradient(circle, rgba(36, 125, 255, 0.28), transparent 60%);
}

.server-orbit img {
  width: min(280px, 100%);
  opacity: 0.82;
}

.pill-row,
.store-row,
.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.pill-row span,
.store-row span,
.payment-icons span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 900;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
}

.faq-list summary {
  cursor: pointer;
  padding: 12px;
  color: #fff;
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 12px 12px;
  color: var(--muted);
}

.mobile-band {
  min-height: 240px;
  padding: 34px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(8, 13, 24, 0.9), rgba(8, 13, 24, 0.36)),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1400&q=80") center / cover no-repeat;
}

.payment-row {
  margin-bottom: 0;
}

.coupon-section {
  padding: 38px 0 0;
}

.coupon-card {
  min-height: 150px;
}

.compare-section {
  padding-top: 30px;
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

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

.compare-table thead th {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.compare-table td span {
  display: block;
  color: var(--muted);
  margin-top: 3px;
  font-size: 13px;
}

.admin-gate {
  max-width: 640px;
  margin: 0 auto;
}

.admin-gate form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 22px;
}

.admin-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.admin-sidebar {
  display: grid;
  gap: 10px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.admin-sidebar button,
.admin-form input,
.admin-form textarea,
.admin-form select,
.admin-content input,
.admin-content textarea,
.admin-content select,
.admin-gate input {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.admin-content input[type="file"] {
  padding: 10px;
}

.admin-sidebar button {
  text-align: left;
  cursor: pointer;
  font-weight: 800;
}

.admin-sidebar button.is-active,
.admin-sidebar button:hover {
  background: linear-gradient(90deg, rgba(240, 25, 147, 0.35), rgba(36, 125, 255, 0.22));
  border-color: rgba(240, 25, 147, 0.55);
}

.admin-form,
.admin-list,
.admin-item,
.admin-content {
  display: grid;
  gap: 16px;
}

.admin-form textarea,
.admin-content textarea {
  min-height: 118px;
  padding-top: 12px;
  resize: vertical;
}

.admin-form label,
.admin-item label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.admin-heading,
.admin-toolbar,
.admin-item-head,
.admin-actions,
.admin-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.admin-heading {
  margin-bottom: 18px;
}

.admin-heading h2 {
  margin-bottom: 0;
}

.admin-list.compact {
  gap: 10px;
}

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

.admin-item-head,
.admin-wide {
  grid-column: 1 / -1;
}

.nav-admin-item {
  grid-template-columns: 1fr 1fr 180px;
}

.nav-dropdown-editor {
  display: grid;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.nav-sub-row {
  display: grid;
  grid-template-columns: 1fr 1fr 120px auto;
}

.admin-message {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.site-footer {
  position: relative;
  padding: 72px 0 26px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(16, 22, 34, 0.95), rgba(10, 14, 24, 1)),
    url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1920&q=80") center / cover no-repeat;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: 34px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-weight: 900;
}

.footer-brand img {
  width: 220px;
  height: 70px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.site-footer p,
.site-footer li,
.site-footer small {
  color: var(--muted);
  line-height: 1.7;
}

.site-footer h5 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 17px;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a:hover {
  color: #fff;
}

.newsletter {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.footer-bottom nav {
  display: flex;
  gap: 18px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

.fade-in {
  animation: fadeIn 360ms ease both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1060px) {
  .brand {
    width: 168px;
    height: 56px;
  }

  .brand img {
    width: 100%;
    height: 100%;
  }

  .nav {
    gap: 16px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-slide {
    grid-template-columns: 1fr 0.9fr;
  }

  .hero-art {
    width: 520px;
  }

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

@media (max-width: 880px) {
  .site-header {
    background: rgba(5, 5, 13, 0.9);
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 20px;
    right: 20px;
    display: none;
    max-height: calc(100vh - 110px);
    overflow: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(7, 7, 16, 0.98);
    box-shadow: var(--shadow);
  }

  body.nav-open .nav {
    display: flex;
  }

  .nav > li > a {
    width: 100%;
    justify-content: space-between;
  }

  .nav > li > a::before {
    display: none;
  }

  .dropdown {
    position: static;
    display: none;
    min-width: 0;
    margin: 2px 0 10px;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
  }

  .has-dropdown.is-open .dropdown {
    display: block;
    transform: none;
  }

  .has-dropdown:hover .dropdown {
    display: none;
  }

  .has-dropdown.is-open:hover .dropdown {
    display: block;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-art {
    position: absolute;
    right: -30px;
    bottom: 48px;
    width: 390px;
    opacity: 0.34;
  }

  .grid,
  .media-split,
  .footer-grid,
  .admin-layout,
  .reviews-grid-modern,
  .availability-band,
  .faq-grid,
  .mobile-band,
  .payment-row {
    grid-template-columns: 1fr;
  }

  .mini-review-row,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .inner-hero h1 {
    font-size: 44px;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 28px, 1120px);
  }

  .brand,
  .brand img {
    width: 150px;
  }

  .brand {
    height: 48px;
  }

  .brand img {
    height: 100%;
  }

  .header-actions .btn-outline {
    display: none;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p,
  .lead {
    font-size: 15px;
  }

  .hero-art {
    display: none;
  }

  .slide-arrow {
    width: 36px;
    font-size: 34px;
  }

  .slide-arrow.prev {
    left: 4px;
  }

  .slide-arrow.next {
    right: 4px;
  }

  .slide-count {
    right: 16px;
    bottom: 16px;
    font-size: 14px;
  }

  .slide-count strong {
    font-size: 30px;
  }

  .hero-slide {
    padding-top: calc(var(--header-h) + 12px);
    gap: 20px;
  }

  .hero .btn {
    width: 100%;
    min-height: 46px;
  }

  .news-inner {
    min-height: 38px;
    font-size: 13px;
    line-height: 1.35;
  }

  h2 {
    font-size: 32px;
  }

  .inner-hero {
    min-height: 360px;
    padding-top: 124px;
  }

  .inner-hero h1 {
    font-size: 36px;
  }

  .legal-hero {
    padding-top: 114px;
  }

  .legal-hero h1 {
    font-size: 32px;
  }

  .grid-4,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .kb-search,
  .footer-bottom,
  .admin-heading,
  .admin-actions,
  .admin-row,
  .admin-gate form {
    flex-direction: column;
  }

  .admin-gate form,
  .admin-item,
  .admin-sidebar,
  .nav-admin-item,
  .nav-sub-row {
    grid-template-columns: 1fr;
  }
}
