/* ============ JOMBASTIC — homepage ============
   Calibrated against the 1024×1536 reference screenshot. */

:root {
  --bg: #090511;
  --bg-2: #0f0919;
  --text: #f6f2ff;
  --muted: #c4b9df;
  --muted-2: #a89bc6;
  --magenta: #ff2fa8;
  --violet: #8b5cf6;
  --violet-line: #7c4ddb;
  --orange: #ff7a1a;
  --amber: #ffb43a;
  --kick: #53fc18;
  --kick-line: #3fd93a;
  --card-radius: 10px;
  --btn-radius: 7px;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-cond: 'Barlow Condensed', 'Arial Narrow', Impact, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }

:focus-visible { outline: 2px solid var(--magenta); outline-offset: 3px; }
.skip-link { position: absolute; left: 8px; top: -60px; z-index: 100; background: #1b1030; color: #fff; padding: 8px 12px; border-radius: 6px; }
.skip-link:focus { top: 8px; }

.container { width: min(898px, 100% - 32px); margin-inline: auto; }
.ico { display: inline-flex; width: 16px; height: 16px; flex: none; }
.ico svg { width: 100%; height: 100%; }
.ico-sm { width: 14px; height: 14px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 40px; padding: 0 22px; border-radius: var(--btn-radius);
  font-size: 13px; font-weight: 600; color: #fff; text-decoration: none; white-space: nowrap;
  border: 1px solid transparent;
  transition: border-color .15s, box-shadow .15s, background-color .15s, color .15s;
}
.btn .ico { width: 15px; height: 15px; }
.btn-sm { height: 35px; padding: 0 18px; font-size: 13px; }
.btn-md { height: 42px; padding: 0 22px; }
.btn-gradient {
  background: linear-gradient(90deg, #ff8a1f 0%, #ff4d8d 50%, #ff1fb0 100%);
  box-shadow: 0 0 18px rgba(255, 70, 160, .45);
}
.btn-gradient:hover { box-shadow: 0 0 26px rgba(255, 70, 160, .65); }
.btn-outline-purple { border-color: rgba(139, 92, 246, .8); background: rgba(24, 12, 44, .65); }
.btn-outline-purple:hover { border-color: #a78bfa; box-shadow: 0 0 14px rgba(139, 92, 246, .35); }
.btn-outline-clash {
  border-color: var(--amber); background: rgba(10, 6, 14, .6);
  box-shadow: 0 0 12px rgba(255, 180, 58, .35);
}
.btn-outline-clash:hover { box-shadow: 0 0 18px rgba(255, 180, 58, .6); border-color: #ffc862; }
.btn-outline-kick {
  border-color: var(--kick-line); background: rgba(6, 10, 8, .7);
  box-shadow: 0 0 12px rgba(83, 252, 24, .3);
}
.btn-outline-kick:hover { box-shadow: 0 0 18px rgba(83, 252, 24, .5); border-color: var(--kick); }
.btn-telegram { background: #1a9ae8; }
.btn-telegram:hover { background: #2aa7f2; }
.btn-dark { background: rgba(16, 10, 30, .85); border-color: rgba(255, 255, 255, .45); }
.btn-dark:hover { border-color: rgba(255, 255, 255, .8); }
.btn-youtube { background: #ee1d28; }
.btn-youtube:hover { background: #fb2c37; }
.btn-kick { background: rgba(8, 14, 10, .85); border-color: var(--kick-line); }
.btn-kick:hover { border-color: var(--kick); box-shadow: 0 0 14px rgba(83, 252, 24, .35); }
.btn-kick .ico, .btn-outline-kick .ico { color: var(--kick); }
.btn-kick .ico { color: var(--kick); }
.btn-youtube .ico svg path { fill: #ee1d28; }
.btn-telegram .ico { width: 17px; height: 17px; }
.btn[aria-disabled="true"] { cursor: default; }

.pill {
  display: inline-flex; align-items: center; gap: 9px; height: 35px; padding: 0 16px;
  border-radius: var(--btn-radius); border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(10, 6, 16, .55); font-size: 13px; font-weight: 500; color: #fff; white-space: nowrap;
}
.pill .ico { width: 15px; height: 15px; }

.soon-tag {
  display: inline-block; font-size: 8.5px; font-weight: 700; letter-spacing: .5px; line-height: 1;
  background: #3b1d6b; color: #d8b9ff; padding: 3px 5px 2px; border-radius: 4px; margin-left: 3px; vertical-align: 1px;
}

/* ---------- header ---------- */
.site-header { position: absolute; top: 0; left: 0; right: 0; height: 80px; z-index: 20; }
.header-inner {
  width: min(780px, 100% - 32px); margin-inline: auto; height: 80px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 0 8px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; }
.brand-logo { height: 46px; width: auto; }
.brand-logo.lg { height: 52px; }
.brand-name { font-size: 16px; font-weight: 800; letter-spacing: .4px; }
.site-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; align-items: center; gap: 24px; }
.nav-list a {
  position: relative; display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 500; color: #d7cdea; text-decoration: none; padding: 6px 0;
}
.nav-list a:hover { color: #fff; }
.nav-list a.active { color: #fff; }
.nav-list a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px; border-radius: 2px;
  background: var(--magenta); box-shadow: 0 0 8px rgba(255, 47, 168, .9);
}
.nav-auth { display: flex; align-items: center; gap: 10px; }
.nav-user { font-size: 12.5px; color: var(--muted); }
.btn-signin {
  display: inline-flex; align-items: center; height: 34px; padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, .5); border-radius: 8px;
  font-size: 13px; font-weight: 500; color: #fff; text-decoration: none; white-space: nowrap;
  background: rgba(9, 5, 17, .25); transition: border-color .15s, box-shadow .15s;
}
.btn-signin:hover { border-color: #fff; box-shadow: 0 0 12px rgba(255, 255, 255, .2); }
.nav-toggle { display: none; width: 40px; height: 40px; border-radius: 8px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; border: 1px solid rgba(255,255,255,.3); }
.nav-toggle span { display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px; transition: transform .2s, opacity .2s; }
.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 495px; padding: 118px 0 30px;
  background: var(--bg) url('../assets/images/hero-background.png') center top / cover no-repeat;
  isolation: isolate;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(9, 5, 17, 0) 0%, rgba(9, 5, 17, 0) 58%, rgba(9, 5, 17, .85) 88%, var(--bg) 100%),
    radial-gradient(ellipse 45% 60% at 42% 50%, rgba(9, 5, 17, .55), transparent 70%);
}
.hero-inner {
  width: min(780px, 100% - 32px); margin-inline: auto;
  display: grid; grid-template-columns: minmax(0, 1fr) 408px; column-gap: 22px; align-items: start;
}
.hero-copy { padding-left: 7px; padding-top: 12px; }
.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 2.2px; color: #c9b8ea; text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow::after { content: ""; width: 42px; height: 1px; background: linear-gradient(90deg, var(--violet), var(--magenta)); }
.hero-title { font-size: 42px; font-weight: 800; line-height: 1.03; letter-spacing: -1.1px; }
.hero-title span { display: block; white-space: nowrap; }
.hero-title .line-1 { color: #fff; }
.hero-title .line-2 {
  background: linear-gradient(90deg, #ff8a1f 0%, #ff4d8d 42%, #d13cff 75%, #c23cff 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-bottom: 4px; margin-bottom: -4px;
}
.hero-desc { margin-top: 12px; font-size: 14px; line-height: 1.42; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: nowrap; gap: 14px; margin-top: 18px; }
.hero-actions .btn { padding: 0 14px; gap: 8px; font-size: 12.5px; }
.hero-actions .btn .ico { width: 14px; height: 14px; }

/* feature strip */
.feature-strip {
  grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 14px 30px; margin-top: 2px; padding-left: 1px;
}
.feature-strip li { display: flex; align-items: center; gap: 12px; }
.feat-ico { display: inline-flex; width: 24px; height: 24px; color: #a877ff; filter: drop-shadow(0 0 6px rgba(168, 119, 255, .55)); }
.feat-ico svg { width: 100%; height: 100%; }
.feature-strip strong { display: block; font-size: 10.5px; font-weight: 700; color: #fff; line-height: 1.25; }
.feature-strip span { display: block; font-size: 10px; color: var(--muted-2); line-height: 1.25; }

/* ---------- carousel ---------- */
.carousel { position: relative; width: 100%; }
.carousel-viewport { position: relative; }
.slides { position: relative; }
.slide {
  position: relative; height: 289px; border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255, 176, 74, .7); background: #12091c;
  box-shadow: 0 0 24px rgba(180, 110, 255, .22), 0 0 0 1px rgba(255, 176, 74, .12);
}
.slide--kick { border-color: rgba(83, 252, 24, .55); box-shadow: 0 0 24px rgba(83, 252, 24, .15); }
.slide-bg { position: absolute; inset: 0; background-size: cover; background-position: 72% 50%; }
.slide--kick .slide-bg { background-size: auto 122%; background-position: 82% 18%; }
.slide-art {
  position: absolute; left: 18%; top: 9%; width: 74%; height: auto;
  transform: rotate(8deg); transform-origin: center; pointer-events: none;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .6));
}
.slide-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 5, 17, .92) 0%, rgba(9, 5, 17, .7) 28%, rgba(9, 5, 17, .18) 52%, rgba(9, 5, 17, .02) 100%),
    linear-gradient(to top, rgba(9, 5, 17, .92) 0%, rgba(9, 5, 17, .5) 26%, rgba(9, 5, 17, 0) 50%),
    linear-gradient(to bottom, rgba(9, 5, 17, .55) 0%, rgba(9, 5, 17, 0) 28%);
}
.slide-content { position: relative; height: 100%; padding: 20px 18px 20px 28px; display: flex; flex-direction: column; }
.slide-top { display: flex; align-items: center; justify-content: space-between; }
.partner-brand { display: inline-flex; align-items: center; gap: 9px; }
.brand-mark { display: inline-flex; width: 26px; height: 26px; filter: drop-shadow(0 0 6px rgba(255, 184, 0, .5)); }
.brand-mark svg { width: 100%; height: 100%; }
.brand-word { font-size: 17px; font-weight: 800; letter-spacing: .3px; color: #fff; line-height: 1; }
.brand-tld { color: var(--amber); }
.kick-mark { display: inline-flex; width: 26px; height: 26px; color: var(--kick); }
.kick-mark svg { width: 100%; height: 100%; }
.preview-btn {
  display: inline-flex; align-items: center; gap: 7px; height: 30px; padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, .4); border-radius: 8px; background: rgba(9, 5, 17, .6);
  font-size: 12.5px; font-weight: 500; color: #fff; transition: border-color .15s;
}
.preview-btn:hover { border-color: rgba(255, 255, 255, .8); }
.preview-btn .ico { width: 15px; height: 15px; }
.slide-amount { margin-top: 26px; font-family: var(--font-cond); font-size: 48px; font-weight: 700; line-height: .9; color: #fff; }
.slide-title { margin-top: 6px; font-family: var(--font-cond); font-size: 29px; font-weight: 700; line-height: .95; color: #fff; letter-spacing: .2px; }
.slide-category { margin-top: 10px; font-size: 13px; font-weight: 600; letter-spacing: 1.2px; color: #e9e2f7; }
.slide-tagline { margin-top: 22px; font-size: 13px; color: var(--muted); }
.slide-bottom { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; padding-right: 8px; }
.slide-bottom .btn-sm { padding: 0 22px 0 27px; }
.slide-brand { text-align: right; line-height: 1.15; }
.slide-brand-word { display: block; font-size: 15px; font-weight: 800; color: #fff; letter-spacing: .2px; }
.slide-brand-tag { display: block; font-size: 9.5px; font-weight: 600; letter-spacing: .8px; color: #efe8ff; margin-top: 2px; }
.previewing .slide-shade, .previewing .slide-amount, .previewing .slide-title, .previewing .slide-category,
.previewing .slide-tagline, .previewing .slide-bottom { opacity: 0; transition: opacity .2s; }

.car-btn {
  position: absolute; top: 47%; width: 32px; height: 32px; margin-top: -16px; border-radius: 50%;
  background: rgba(13, 8, 24, .9); border: 1px solid rgba(255, 255, 255, .45); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; z-index: 2;
  box-shadow: 0 0 12px rgba(0, 0, 0, .6); transition: border-color .15s, box-shadow .15s;
}
.car-btn:hover { border-color: #fff; box-shadow: 0 0 12px rgba(255, 255, 255, .25); }
.car-btn .ico { width: 16px; height: 16px; }
.car-prev { left: -16px; }
.car-next { right: -16px; }
.car-footer { position: relative; display: flex; justify-content: center; align-items: center; height: 26px; margin-top: 4px; }
.car-dots { display: flex; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #5a3f86; transition: background .15s; }
.dot:hover { background: #8a68c4; }
.dot.active { background: var(--magenta); box-shadow: 0 0 8px rgba(255, 47, 168, .9); }
.car-counter { position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 12px; color: #e6def7; }

/* ---------- sections ---------- */
.section-head { display: flex; align-items: center; justify-content: space-between; }
.section-title {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 16px; font-weight: 600; letter-spacing: 2.2px; text-transform: uppercase; color: #fff;
}
.section-title::after { content: ""; width: 42px; height: 1px; background: linear-gradient(90deg, var(--violet), var(--magenta)); }
.view-all { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: #d3b6ff; text-decoration: none; transition: color .15s; }
.view-all:hover { color: #fff; }
.view-all .ico { width: 15px; height: 15px; }

.section-giveaways { padding-top: 32px; }
.section-giveaways .section-head { height: 20px; margin-bottom: 16px; }
.g-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }

/* giveaway cards */
.g-card {
  position: relative; height: 285px; border-radius: var(--card-radius); overflow: hidden;
  border: 1px solid rgba(255, 176, 74, .65); background: #100a18; isolation: isolate;
  transition: border-color .15s, box-shadow .15s;
}
.g-card:hover { box-shadow: 0 0 20px rgba(255, 176, 74, .18); border-color: rgba(255, 190, 100, .85); }
.g-card--kick { border-color: rgba(83, 252, 24, .5); }
.g-card--kick:hover { box-shadow: 0 0 20px rgba(83, 252, 24, .15); border-color: rgba(83, 252, 24, .8); }
.g-bg { position: absolute; inset: 0; background-size: cover; background-position: 70% 50%; z-index: -3; }
.g-card--kick .g-bg { background-size: auto 122%; background-position: 82% 18%; }
.g-art {
  position: absolute; left: 40%; top: 3%; width: 66%; height: auto; z-index: -2;
  transform: rotate(22deg); pointer-events: none; filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .6));
}
.g-shade {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 5, 17, .95) 0%, rgba(9, 5, 17, .85) 32%, rgba(9, 5, 17, .35) 55%, rgba(9, 5, 17, .05) 100%),
    linear-gradient(to top, rgba(9, 5, 17, .92) 0%, rgba(9, 5, 17, .45) 30%, rgba(9, 5, 17, 0) 55%);
}
.g-card--kick .g-shade {
  background:
    linear-gradient(90deg, rgba(6, 8, 10, .95) 0%, rgba(6, 8, 10, .85) 34%, rgba(6, 8, 10, .35) 58%, rgba(6, 8, 10, .02) 100%),
    linear-gradient(to top, rgba(6, 8, 10, .9) 0%, rgba(6, 8, 10, .4) 30%, rgba(6, 8, 10, 0) 55%);
}
.g-content { position: relative; height: 100%; padding: 28px 24px 22px; display: flex; flex-direction: column; }
.g-headline { margin-top: 18px; font-family: var(--font-cond); font-size: 35px; font-weight: 700; line-height: .95; color: #fff; letter-spacing: .2px; }
.g-category { margin-top: 8px; font-size: 14px; font-weight: 500; color: #fff; }
.g-desc { margin-top: 16px; font-size: 13px; line-height: 1.4; color: var(--muted); }
.g-bottom { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }

/* leaderboard banner */
.section-leaderboard { padding-top: 26px; }
.lb-banner {
  position: relative; height: 98px; border-radius: var(--card-radius); overflow: hidden;
  border: 1px solid rgba(150, 95, 255, .7); background: var(--bg-2);
  display: flex; align-items: center; gap: 44px; padding: 0 25px 0 41px; isolation: isolate;
  box-shadow: 0 0 18px rgba(139, 92, 246, .15);
}
.lb-banner::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: url('../assets/images/leaderboard-background.png') right 38% / auto 215px no-repeat;
}
.lb-banner::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, var(--bg-2) 0%, var(--bg-2) 34%, rgba(15, 9, 25, .7) 50%, rgba(15, 9, 25, .1) 70%, rgba(15, 9, 25, .05) 100%);
}
.lb-trophy { height: 74px; width: auto; flex: none; filter: drop-shadow(0 0 10px rgba(255, 170, 40, .35)); }
.lb-copy { flex: 1; min-width: 0; }
.lb-title { font-size: 20px; font-weight: 700; color: #fff; letter-spacing: -.2px; }
.lb-text { margin-top: 4px; font-size: 13px; color: var(--muted); }
.lb-pill {
  display: inline-flex; align-items: center; gap: 9px; height: 36px; padding: 0 18px;
  border-radius: 999px; border: 1px solid rgba(160, 110, 255, .8); background: rgba(14, 8, 26, .7);
  font-size: 13px; font-weight: 500; color: #fff; white-space: nowrap; flex: none;
  box-shadow: 0 0 12px rgba(139, 92, 246, .3);
}
.lb-pill .ico { width: 15px; height: 15px; }

/* community */
.section-community { padding-top: 30px; }
.section-community .section-head { height: 20px; margin-bottom: 14px; }
.c-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.c-card {
  position: relative; height: 180px; border-radius: var(--card-radius); overflow: hidden;
  border: 1px solid rgba(150, 95, 255, .6); background: #0d0a1c; isolation: isolate;
  transition: border-color .15s, box-shadow .15s;
}
.c-card:hover { border-color: rgba(170, 120, 255, .9); box-shadow: 0 0 18px rgba(139, 92, 246, .2); }
.c-card--loop { border-color: rgba(105, 130, 255, .6); }
.c-bg { position: absolute; inset: 0; background-size: cover; background-position: 100% 40%; z-index: -2; }
.c-card--watch .c-bg { background-position: 100% 45%; }
.c-shade {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(9, 6, 22, .96) 0%, rgba(9, 6, 22, .9) 42%, rgba(9, 6, 22, .45) 68%, rgba(9, 6, 22, .05) 100%);
}
.c-card--watch .c-shade {
  background: linear-gradient(90deg, rgba(9, 5, 17, .96) 0%, rgba(9, 5, 17, .9) 40%, rgba(9, 5, 17, .5) 62%, rgba(9, 5, 17, .05) 100%);
}
.c-content { position: relative; height: 100%; padding: 26px 24px 22px; display: flex; flex-direction: column; }
.c-title { font-size: 20px; font-weight: 700; color: #fff; letter-spacing: -.2px; }
.c-text { margin-top: 8px; font-size: 13px; line-height: 1.4; color: var(--muted); }
.c-actions { margin-top: auto; display: flex; flex-wrap: nowrap; gap: 15px; }
.c-actions .btn { padding: 0 20px; gap: 10px; }
.c-actions .btn-dark, .c-actions .btn-kick { padding: 0 28px; }

/* FAQ */
.section-faq { padding-top: 30px; }
.section-faq .section-head { height: 20px; margin-bottom: 14px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid rgba(170, 140, 220, .32); border-radius: 8px; background: rgba(18, 11, 32, .75);
  transition: border-color .15s;
}
.faq-item:hover, .faq-item.open { border-color: rgba(190, 160, 255, .6); }
.faq-q { font-size: 14px; font-weight: 500; }
.faq-btn { width: 100%; min-height: 44px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 0 20px; text-align: left; color: #fff; }
.faq-ico { display: inline-flex; width: 18px; height: 18px; color: #fff; flex: none; transition: transform .2s; }
.faq-ico svg { width: 100%; height: 100%; }
.open .faq-ico { transform: rotate(45deg); }
.faq-panel { padding: 0 20px 16px; font-size: 13px; line-height: 1.5; color: var(--muted); }

/* ---------- footer ---------- */
.site-footer { margin-top: 31px; border-top: 1px solid rgba(160, 130, 210, .18); background: var(--bg); }
.footer-inner {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: start; gap: 24px;
  padding: 19px 0 33px;
}
.footer-brand { display: flex; align-items: flex-start; gap: 10px; }
.footer-brand-name { display: inline-block; font-size: 15px; letter-spacing: .8px; text-decoration: none; color: #fff; padding-top: 14px; line-height: 1; }
.footer-tagline { margin-top: 8px; font-size: 11px; line-height: 1.45; color: var(--muted); white-space: nowrap; }
.footer-nav { padding-top: 13px; justify-self: center; }
.footer-links { gap: 24px; justify-content: center; }
.footer-links a { font-size: 12px; }
.footer-legal { display: flex; justify-content: center; gap: 22px; margin-top: 18px; font-size: 11px; color: var(--muted); }
.footer-legal a { color: var(--muted); text-decoration: none; }
.footer-legal a:hover { color: #fff; }
.footer-social { justify-self: end; text-align: right; padding-top: 13px; }
.social-list { display: flex; justify-content: flex-end; gap: 20px; }
.social-list a { display: inline-flex; color: #e6def7; transition: color .15s; }
.social-list a:hover { color: #fff; }
.social-ico { display: inline-flex; width: 18px; height: 18px; }
.social-ico svg { width: 100%; height: 100%; }
.footer-note { margin-top: 16px; font-size: 11px; line-height: 1.45; color: var(--muted-2); }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero { padding-top: 100px; min-height: 0; background-position: 60% top; }
  .hero-inner { grid-template-columns: 1fr; row-gap: 28px; }
  .hero-copy { padding-left: 0; }
  .carousel { max-width: 440px; width: 100%; }
  .car-prev { left: -10px; }
  .car-next { right: -10px; }
  .feature-strip { margin-top: 8px; }
  .g-grid, .c-grid { grid-template-columns: 1fr; }
  .g-card { max-width: 560px; }
  .footer-inner { grid-template-columns: 1fr; gap: 20px; }
  .footer-nav { justify-self: start; padding-top: 0; }
  .footer-links, .footer-legal { justify-content: flex-start; flex-wrap: wrap; gap: 8px 20px; }
  .footer-social { justify-self: start; text-align: left; padding-top: 0; }
  .social-list { justify-content: flex-start; }
}

@media (max-width: 760px) {
  .header-inner { padding: 0; }
  .nav-toggle { display: inline-flex; order: 3; }
  .nav-auth { margin-left: auto; }
  .site-nav {
    display: none; position: absolute; top: 80px; left: 0; right: 0; padding: 12px 16px 16px;
    background: #0b0714; border-bottom: 1px solid rgba(160, 130, 210, .2); box-shadow: 0 12px 30px rgba(0, 0, 0, .5);
  }
  .menu-open .site-nav { display: block; }
  .site-nav .nav-list { flex-direction: column; align-items: stretch; gap: 4px; }
  .site-nav .nav-list a { font-size: 15px; padding: 10px 4px; }
  .site-nav .nav-list a.active::after { display: none; }
  .c-shade, .c-card--watch .c-shade { background: linear-gradient(180deg, rgba(9, 6, 22, .88) 0%, rgba(9, 6, 22, .8) 100%); }
  .lb-banner::after { background: rgba(15, 9, 25, .82); }
  .btn-signin { padding: 0 18px; }
  .hero-title { font-size: clamp(34px, 9vw, 44px); }
  .hero-actions .btn { flex: 1 1 auto; }
  .slide-content { padding: 18px 16px 18px 20px; }
  .lb-banner { height: auto; flex-wrap: wrap; gap: 16px 20px; padding: 18px 20px; }
  .lb-banner::before { background-size: auto 240px; }
  .lb-copy { flex-basis: calc(100% - 100px); }
  .lb-pill { margin-left: auto; }
  .c-card { height: auto; }
  .c-actions { flex-wrap: wrap; }
  .c-actions .btn { flex: 1 1 100%; }
}

@media (max-width: 480px) {
  .slide { height: 270px; }
  .slide-amount { font-size: 42px; }
  .slide-title { font-size: 26px; }
  .slide-bottom { flex-wrap: wrap; align-items: center; }
  .g-card { height: auto; min-height: 285px; }
  .g-bottom { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* status pill variants */
.pill-soft { border-color: rgba(200, 180, 240, .45); color: #e6def7; font-size: 12px; }
