:root {
  --bg: #050506;
  --surface: #101012;
  --surface-2: #17171b;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f7f5f7;
  --muted: #b8b3b9;
  --pink: #ff0099;
  --cyan: #2ff3e0;
  --lime: #c7f33f;
  --amber: #ffcf4a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --scroll-glow-x: 18%;
  --scroll-glow-y: 10%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at var(--scroll-glow-x) var(--scroll-glow-y), rgba(255, 0, 153, 0.28), transparent 26rem),
    radial-gradient(circle at 14% 10%, rgba(255, 0, 153, 0.2), transparent 28rem),
    radial-gradient(circle at 86% 0%, rgba(47, 243, 224, 0.12), transparent 24rem),
    var(--bg);
  background-size: 120% 120%, 140% 140%, 120% 120%, auto;
  animation: drift-bg 16s ease-in-out infinite alternate;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.section,
.page-hero,
[id] {
  scroll-margin-top: 92px;
}

@keyframes drift-bg {
  from {
    background-position: var(--scroll-glow-x) var(--scroll-glow-y), 0% 0%, 100% 0%, 0 0;
  }
  to {
    background-position: var(--scroll-glow-x) var(--scroll-glow-y), 18% 12%, 78% 18%, 0 0;
  }
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 6, 0.68);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 900;
  min-width: max-content;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  font-size: 1.35rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.18rem;
  flex-wrap: nowrap;
  min-width: 0;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0.58rem 0.62rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.75rem;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  z-index: 60;
  display: none;
  min-width: 250px;
  padding: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(9, 9, 11, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.nav-submenu a {
  display: block;
  width: 100%;
  padding: 0.58rem 0.62rem;
}

.has-submenu:hover .nav-submenu,
.has-submenu:focus-within .nav-submenu,
.has-submenu.is-open .nav-submenu {
  display: grid;
  gap: 0.1rem;
}

.language-switch {
  position: relative;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  flex: 0 0 auto;
  width: 86px;
  margin-left: 0.4rem;
  padding: 0.18rem;
  border: 1px solid rgba(255, 0, 153, 0.58);
  border-radius: 999px;
  background: rgba(255, 0, 153, 0.22);
  box-shadow: 0 0 28px rgba(255, 0, 153, 0.18);
}

.language-switch a {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 0.42rem 0.55rem;
  border-radius: 999px;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
}

.language-switch a:hover,
.language-switch a.is-active {
  background: transparent;
  color: white;
  transform: none;
}

.language-pill {
  position: absolute;
  inset: 0.18rem auto 0.18rem 0.18rem;
  width: calc(50% - 0.18rem);
  border-radius: 999px;
  background: var(--pink);
  transition: transform 180ms ease;
}

.language-pill.is-en {
  transform: translateX(100%);
}

.main-nav a:hover,
.main-nav a.is-active {
  background: rgba(255, 0, 153, 0.14);
  color: var(--text);
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(3rem, 6vw, 6rem) 0 4rem;
}

.hero-copy {
  order: 2;
}

.portrait-media {
  order: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

h1 {
  max-width: 11ch;
  margin-top: 1rem;
  font-size: clamp(3.2rem, 10vw, 8.7rem);
  letter-spacing: 0;
}

.hero-wordmark {
  width: min(520px, 100%);
  margin: 1rem 0 0.6rem;
  filter: drop-shadow(0 12px 28px rgba(255, 0, 153, 0.22));
}

.hero p,
.page-lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero p {
  max-width: 760px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.live-status-card {
  display: grid;
  gap: 0.9rem;
  max-width: 760px;
  margin-top: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.025));
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.18);
}

.live-status-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.live-status-main strong,
.live-status-main span {
  display: block;
}

.live-status-main strong {
  font-size: 1rem;
}

.live-status-main span {
  margin-top: 0.14rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.status-dot {
  width: 0.74rem;
  height: 0.74rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--muted);
  box-shadow: 0 0 0 6px rgba(184, 179, 185, 0.12);
}

.live-status-card.is-live {
  border-color: rgba(255, 0, 153, 0.54);
  background: linear-gradient(180deg, rgba(255, 0, 153, 0.13), rgba(255, 255, 255, 0.025));
}

.live-status-card.is-live .status-dot {
  background: var(--pink);
  box-shadow: 0 0 0 6px rgba(255, 0, 153, 0.16), 0 0 22px rgba(255, 0, 153, 0.72);
}

.live-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.live-platforms a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.55rem 0.72rem;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.live-platforms a:hover {
  transform: translateY(-2px);
  border-color: var(--pink);
  background: rgba(255, 0, 153, 0.12);
}

.live-platforms svg {
  width: 18px;
  height: 18px;
}

.hero-live-player {
  max-width: 760px;
  margin-top: 1rem;
}

.hero-live-player iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.82rem 1rem;
  background: var(--surface);
  color: var(--text);
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 12px 34px rgba(255, 0, 153, 0.18);
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--pink), #ff4dbd);
  color: white;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.04);
}

.hero-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  overflow: visible;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 153, 0.42), transparent 66%);
  filter: blur(18px);
  z-index: -1;
}

.hero-logo {
  width: min(380px, 82%);
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-photo {
  width: min(340px, 88%);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: var(--shadow), 0 0 70px rgba(255, 0, 153, 0.2);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.stat-strip div {
  padding: 1.1rem;
  background: rgba(16, 16, 18, 0.82);
}

.stat-strip strong {
  display: block;
  color: var(--text);
  font-size: 1.35rem;
}

.stat-strip span {
  color: var(--muted);
  font-size: 0.86rem;
}

.section {
  padding: clamp(2.1rem, 4.2vw, 3.4rem) 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-head h2,
.page-title {
  font-size: clamp(2rem, 5vw, 4.5rem);
}

.section-head p,
.muted {
  color: var(--muted);
  line-height: 1.6;
}

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

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

.link-card,
.partner-card,
.offer-card,
.info-panel,
.livery-card,
.tool-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.025));
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.22);
}

.link-card {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 0.9rem;
  align-items: center;
  min-height: 122px;
  padding: 1rem;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.link-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 0, 153, 0.72);
  background: rgba(255, 0, 153, 0.09);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: rgba(255, 0, 153, 0.14);
  color: var(--text);
}

.icon svg {
  width: 24px;
  height: 24px;
}

.link-card h3,
.partner-card h3,
.offer-card h3 {
  font-size: 1.1rem;
}

.link-card p,
.partner-card p,
.offer-card p {
  margin: 0.42rem 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.arrow {
  color: var(--cyan);
  font-size: 1.4rem;
}

.page-hero {
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(2rem, 5vw, 4rem);
}

.page-hero .page-title {
  margin-top: 0.8rem;
  max-width: 900px;
}

.product-help {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  max-width: 760px;
  margin-top: 1.25rem;
  align-items: center;
}

.product-help p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.98rem;
}

.product-help .button {
  justify-self: start;
}

.shopping-controls {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.025));
  backdrop-filter: blur(14px);
}

.shopping-controls {
  display: grid;
  gap: 1.15rem;
  margin-bottom: 1.6rem;
  padding: 1rem;
}

.filter-group {
  display: grid;
  gap: 0.65rem;
}

.filter-group h2 {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
}

.price-filter {
  display: grid;
  gap: 0.65rem;
}

.price-filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-weight: 900;
}

.filter-reset {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--cyan);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.price-filter input[type="range"] {
  width: 100%;
  accent-color: var(--pink);
}

.search-field {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.search-field input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.82rem 1rem;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font: inherit;
  outline: none;
}

.search-field input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 0, 153, 0.16);
}

.empty-state {
  grid-column: 1 / -1;
  margin: 0;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 1rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
}

.partner-card,
.offer-card,
.info-panel {
  padding: 1.2rem;
}

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

.offer-card h3 {
  min-height: 3.15rem;
}

.offer-card p {
  min-height: 2.9rem;
}

.offer-card .button {
  margin-top: auto;
}

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

.partner-card p {
  flex: 1;
}

.partner-card .button-row {
  margin-top: auto;
  padding-top: 1.6rem;
}

.partner-logo {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: var(--pink);
  color: #050506;
  font-size: 1.5rem;
  font-weight: 1000;
}

.partner-image {
  display: grid;
  place-items: center;
  height: 96px;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050506;
}

.partner-image img {
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}

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

.partner-tile {
  display: grid;
  place-items: center;
  min-height: 132px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.partner-tile:hover {
  transform: translateY(-4px);
  border-color: var(--pink);
  background: rgba(255, 0, 153, 0.08);
}

.partner-tile img {
  max-height: 80px;
  object-fit: contain;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.filter-btn {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.58rem 0.82rem;
  background: var(--surface);
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.filter-btn.is-active,
.filter-btn:hover {
  border-color: var(--pink);
  color: var(--text);
}

.offer-image {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.08), transparent 58%),
    #08080a;
  padding: 0.8rem;
  color: var(--text);
  cursor: zoom-in;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

button.offer-image:hover {
  transform: translateY(-2px);
  border-color: var(--pink);
  box-shadow: 0 12px 34px rgba(255, 0, 153, 0.14);
}

.offer-placeholder {
  align-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 0, 153, 0.25), transparent 13rem),
    #08080a;
  color: var(--text);
  font-weight: 1000;
}

.offer-subsection + .offer-subsection {
  margin-top: 2rem;
}

.compact-head {
  margin-bottom: 0.85rem;
}

.compact-head h3 {
  font-size: clamp(2rem, 5vw, 4.5rem);
}

.visually-hidden-heading {
  height: 0;
  margin: 0;
  overflow: hidden;
  visibility: hidden;
}

.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.livery-card {
  overflow: hidden;
}

.livery-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 240ms ease;
}

.livery-card:hover img {
  transform: scale(1.035);
}

.livery-card-body {
  padding: 1rem;
}

.livery-card-body h3 {
  margin: 0.45rem 0 1rem;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.tool-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
}

.tool-card p {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.tool-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.tool-links .button {
  min-height: 38px;
  padding: 0.58rem 0.75rem;
}

.commands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.45rem;
  max-width: 980px;
  margin: 0 auto;
}

.command-chip {
  display: grid;
  gap: 0.18rem;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.command-search {
  max-width: 520px;
  margin: 1.4rem auto 0;
}

.commands-section {
  padding-top: 0.4rem;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feedback-card {
  display: grid;
  gap: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.025));
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.22);
}

.feedback-card h3 {
  font-size: 1.35rem;
}

.feedback-card label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feedback-card input,
.feedback-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.82rem 1rem;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font: inherit;
  outline: none;
}

.feedback-card textarea {
  min-height: 150px;
  resize: vertical;
}

.feedback-card input:focus,
.feedback-card textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 0, 153, 0.16);
}

.feedback-card button {
  justify-self: start;
}

.feedback-card button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.feedback-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.feedback-status.is-success {
  color: var(--lime);
}

.feedback-status.is-error {
  color: #ff7aa8;
}

.command-name,
.command-code {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.command-code {
  color: var(--cyan);
  font-size: 0.82rem;
}

.command-chip:hover,
.command-chip.is-copied {
  transform: translateY(-2px);
  border-color: var(--pink);
  background: rgba(255, 0, 153, 0.14);
  box-shadow: 0 12px 34px rgba(255, 0, 153, 0.12);
}

.video-card.is-featured {
  max-width: 920px;
}

.featured-video-wrap {
  display: flex;
  justify-content: center;
}

.featured-video-wrap .video-card {
  width: min(100%, 920px);
}

.video-embed-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
}

.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.video-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 240ms ease, opacity 240ms ease;
}

.video-thumb:hover img {
  transform: scale(1.035);
  opacity: 0.84;
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 0, 153, 0.92);
  color: white;
  font-size: 1.6rem;
  transform: translate(-50%, -50%);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.38);
}

.video-card-body {
  padding: 1rem;
}

.video-card-body h3 {
  margin-bottom: 1rem;
}

.setup-photo-card {
  position: relative;
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.025));
  backdrop-filter: blur(14px);
  color: var(--text);
  cursor: pointer;
  overflow: hidden;
}

.setup-photo-card img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.setup-photo-card:hover img {
  transform: scale(1.035);
}

.setup-photo-card span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  border-radius: 999px;
  padding: 0.62rem 0.9rem;
  background: rgba(255, 0, 153, 0.92);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.86);
}

.image-lightbox.is-open {
  display: grid;
}

.image-lightbox img {
  max-width: min(100%, 1120px);
  max-height: calc(100vh - 2rem);
  border-radius: 8px;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: fixed;
  right: 1rem;
  top: 1rem;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 16, 18, 0.9);
  color: white;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.showroom-panel {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 1.2rem;
}

.paint-service-panel {
  max-width: 760px;
}

.showroom-panel img,
.construction-panel img {
  width: 140px;
  border-radius: 50%;
}

.construction-panel {
  display: grid;
  place-items: center;
  min-height: 340px;
  text-align: center;
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.price {
  display: grid;
  gap: 0.12rem;
  min-height: 1.4rem;
  margin: 0.75rem 0;
  color: var(--lime);
  font-weight: 900;
}

.price s {
  color: var(--muted);
  font-size: 0.84rem;
}

.price strong {
  color: var(--lime);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.footer-links a {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease;
}

.footer-links a:hover {
  transform: translateY(-2px);
  border-color: var(--pink);
  color: var(--text);
}

.footer-links .footer-admin-link {
  width: auto;
  padding: 0 0.7rem;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-form {
  display: grid;
  gap: 1rem;
  max-width: 820px;
}

.admin-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-weight: 900;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.8rem 0.9rem;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font: inherit;
}

.admin-form textarea {
  min-height: 110px;
  resize: vertical;
}

.admin-check {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 0.55rem !important;
}

.admin-check input {
  min-height: auto;
}

.admin-fieldset {
  display: grid;
  gap: 0.65rem;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.admin-fieldset legend {
  color: var(--muted);
  font-weight: 900;
}

.admin-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.65rem;
}

.admin-choice {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 0.65rem !important;
  min-height: 52px;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text) !important;
}

.admin-choice input {
  min-height: auto;
  accent-color: var(--pink);
}

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

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.035);
}

.admin-table th,
.admin-table td {
  padding: 0.8rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.admin-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.footer-links svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 1080px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    inset: 74px 1rem auto 1rem;
    display: none;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #09090b;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .nav-item {
    display: grid;
  }

  .main-nav a {
    justify-content: flex-start;
    width: 100%;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    margin-top: 0.35rem;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
  }

  .has-submenu .nav-submenu,
  .has-submenu:hover .nav-submenu,
  .has-submenu:focus-within .nav-submenu {
    display: grid;
  }

  .hero,
  .two-col,
  .feedback-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .portrait-media {
    order: initial;
  }

  .hero {
    min-height: auto;
  }

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

  .partner-strip,
  .tools-grid,
  .compact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .container,
  .nav-wrap {
    width: min(100% - 1rem, 1180px);
  }

  .main-nav.is-open,
  .grid,
  .stat-strip,
  .partner-strip,
  .tools-grid,
  .compact-grid,
  .showroom-panel {
    grid-template-columns: 1fr;
  }

  .tool-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .tool-links {
    justify-content: flex-start;
  }

  .section-head,
  .footer-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .link-card {
    grid-template-columns: 44px 1fr;
  }

  .link-card .arrow {
    display: none;
  }
}
