/* ==========================================================================
   007bsb — Main Stylesheet
   Classified Elite Gaming aesthetic — midnight navy + gunmetal + crimson + platinum
   ========================================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --bs-bg-deep:      #000000;
  --bs-bg:           #020610;
  --bs-bg-raised:    #0a1426;
  --bs-bg-card:      #0e1a30;

  --bs-navy:         #0a1426;
  --bs-gunmetal:     #1a2434;
  --bs-steel:        #3a4250;

  --bs-crimson:      #e63946;
  --bs-crimson-deep: #8a0a18;
  --bs-crimson-dark: #5a060e;

  --bs-platinum:     #f4f6f8;
  --bs-silver:       #9aa3ad;
  --bs-graphite:     #525a64;

  --bs-text:         #f4f6f8;
  --bs-text-soft:    #c5cdd6;
  --bs-text-muted:   #7a8694;
  --bs-border:       rgba(244, 246, 248, 0.10);

  --grad-silver:       linear-gradient(135deg, #f4f6f8 0%, #9aa3ad 50%, #525a64 100%);
  --grad-btn-primary:  linear-gradient(135deg, #e63946 0%, #c61f2c 60%, #5a060e 100%);
  --grad-bg-section:   linear-gradient(180deg, #020610 0%, #0a1426 100%);

  --sh-card:        0 10px 30px -8px rgba(0,0,0,0.7), 0 4px 12px -4px rgba(10, 20, 38, 0.6);
  --sh-card-hover:  0 20px 50px -10px rgba(0,0,0,0.85), 0 8px 24px -4px rgba(230, 57, 70, 0.45);

  --f-display: 'Orbitron', 'Arial Black', sans-serif;
  --f-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --container-max: 1280px;
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --ease-out:    cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 180ms;
  --dur:      280ms;
  --dur-slow: 500ms;

  --header-h: 78px;
  --sticky-h: 76px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* CRITICAL: prevent horizontal overflow at root level — defensive against any decorative element overrun */
html, body {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--bs-text);
  background-color: var(--bs-bg-deep);
  background-image:
    radial-gradient(ellipse 900px 600px at 20% 10%, rgba(10, 20, 38, 0.65), transparent 60%),
    radial-gradient(ellipse 900px 600px at 90% 80%, rgba(230, 57, 70, 0.14), transparent 60%),
    linear-gradient(180deg, #000000 0%, #020610 100%);
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Reserve space at bottom for sticky promo so footer never hides under it */
  padding-bottom: var(--sticky-h);
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--dur) var(--ease-out); }
button { font-family: inherit; background: none; border: none; cursor: pointer; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

::selection { background: var(--bs-crimson); color: var(--bs-platinum); }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

.accent {
  background: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bs-platinum);
  padding: 6px 14px;
  border: 1px solid rgba(154, 163, 173, 0.45);
  border-radius: var(--radius-pill);
  background: rgba(154, 163, 173, 0.08);
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  margin-bottom: 14px;
  color: var(--bs-text);
  text-transform: uppercase;
}

.section-lead {
  color: var(--bs-text-soft);
  font-size: 17px;
  max-width: 640px;
}

.section-head {
  text-align: center;
  margin-bottom: 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out),
              background var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out),
              color var(--dur) var(--ease-out);
  will-change: transform;
}

.btn img { transition: transform var(--dur) var(--ease-out); }

.btn--lg { font-size: 15px; padding: 15px 32px; }
.btn--sm { font-size: 12px; padding: 8px 16px; gap: 6px; }

.btn--primary {
  background: var(--grad-btn-primary);
  color: var(--bs-platinum);
  box-shadow: 0 6px 18px -6px rgba(230, 57, 70, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -6px rgba(230, 57, 70, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.btn--primary:hover img { transform: translateX(2px); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: rgba(244, 246, 248, 0.04);
  color: var(--bs-text);
  border-color: rgba(154, 163, 173, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(154, 163, 173, 0.14);
  border-color: var(--bs-platinum);
  color: var(--bs-platinum);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(154, 163, 173, 0.4);
}
.btn--ghost:hover img { transform: translateX(2px); }

.btn--primary::before {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left var(--dur-slow) var(--ease-out);
}
.btn--primary:hover::before { left: 130%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.92) 0%, rgba(2, 6, 16, 0.78) 100%);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(154, 163, 173, 0.18);
}

.site-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(230, 57, 70, 0.55) 50%, transparent 100%);
}

.header-inner {
  max-width: var(--container-max);
  height: var(--header-h);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease-out);
}
.brand:hover { transform: scale(1.03); }
.brand__logo { height: 48px; width: auto; }

/* ---------- Nav ---------- */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: flex-end;
}

.nav__list {
  display: flex;
  gap: 4px;
}

.nav__link {
  position: relative;
  display: inline-block;
  font-family: var(--f-body);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--bs-text-soft);
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  transition: color var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
  white-space: nowrap;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 22px;
  height: 2px;
  background: var(--bs-crimson);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease-out);
}
.nav__link:hover {
  color: var(--bs-platinum);
  background: rgba(154, 163, 173, 0.08);
}
.nav__link:hover::after { transform: translateX(-50%) scaleX(1); }

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

.nav__toggle {
  display: none;
  color: var(--bs-platinum);
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--dur) var(--ease-out);
}
.nav__toggle:hover { background: rgba(154, 163, 173, 0.1); }

.nav__close {
  display: none;
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--bs-platinum);
  padding: 8px;
}

.nav__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 98;
  opacity: 0;
  transition: opacity var(--dur) var(--ease-out);
}
.nav__backdrop.is-open {
  display: block;
  opacity: 1;
}

body.nav-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 80px 0 100px;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(0, 0, 0, 0.78) 90%);
  z-index: -1;
}

.hero__content {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
  width: 100%;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bs-platinum);
  padding: 10px 20px;
  border: 1px solid rgba(154, 163, 173, 0.5);
  border-radius: var(--radius-pill);
  background: rgba(10, 20, 38, 0.5);
  margin-bottom: 28px;
}
.hero__badge img { color: var(--bs-crimson); filter: brightness(1.4); }

/* H1 — main hero title via PHP */
.hero h1 {
  font-family: var(--f-display);
  font-size: clamp(54px, 11vw, 130px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.04em;
  margin-bottom: 30px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #f4f6f8 0%, #9aa3ad 60%, #525a64 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 24px rgba(154, 163, 173, 0.35));
}

.hero__desc {
  max-width: 640px;
  margin: 0 auto 42px;
  font-size: clamp(16px, 2vw, 19px);
  color: var(--bs-text-soft);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero__stats {
  display: flex;
  gap: clamp(24px, 6vw, 80px);
  justify-content: center;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat__num {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  background: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bs-text-muted);
}

/* ---------- Brand / About ---------- */
.brand-section {
  padding: clamp(70px, 10vw, 120px) 0;
  position: relative;
  background: var(--grad-bg-section);
}

.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.brand-media {
  position: relative;
}
.brand-media img {
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
  filter: drop-shadow(0 20px 60px rgba(230, 57, 70, 0.22));
}

.brand-text p {
  color: var(--bs-text-soft);
  font-size: 16.5px;
  margin-bottom: 18px;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(244, 246, 248, 0.03);
  border: 1px solid var(--bs-border);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14.5px;
  transition: transform var(--dur) var(--ease-out),
              background var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out);
}
.features li:hover {
  transform: translateY(-3px);
  background: rgba(154, 163, 173, 0.1);
  border-color: rgba(230, 57, 70, 0.45);
}
.features li img {
  color: var(--bs-crimson);
  filter: drop-shadow(0 0 8px rgba(230, 57, 70, 0.45));
}

/* ---------- Games / Slider ---------- */
.games {
  padding: clamp(70px, 10vw, 120px) 0;
  position: relative;
  overflow: hidden;
}

.games::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.22), transparent 70%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}
.games::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(154, 163, 173, 0.16), transparent 70%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}
.games > .container { position: relative; z-index: 1; }

.slider {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
}

.slider__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
  min-width: 0;
}

.slider__track {
  display: flex;
  gap: 20px;
  transition: transform 520ms var(--ease-out);
  padding: 10px 2px;
  will-change: transform;
}

.slider__btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(244, 246, 248, 0.05);
  border: 1px solid rgba(154, 163, 173, 0.45);
  color: var(--bs-platinum);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out),
              transform var(--dur) var(--ease-out),
              opacity var(--dur) var(--ease-out);
  flex-shrink: 0;
}
.slider__btn:hover {
  background: rgba(230, 57, 70, 0.18);
  border-color: var(--bs-crimson);
  transform: scale(1.08);
}
.slider__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}
.slider__btn--prev img { transform: rotate(180deg); }

/* Game Cards */
.game-card {
  flex: 0 0 calc((100% - 80px) / 5);
  background: linear-gradient(160deg, #0e1a30 0%, #020610 100%);
  border: 1px solid var(--bs-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sh-card);
  transition: transform var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out);
  position: relative;
  cursor: pointer;
}

.game-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, transparent 0%, transparent 40%, rgba(230, 57, 70, 0.7) 60%, transparent 80%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--dur) var(--ease-out);
  pointer-events: none;
}

.game-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--sh-card-hover);
  border-color: rgba(230, 57, 70, 0.4);
}
.game-card:hover::after { opacity: 1; }

.game-card__image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.game-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}
.game-card:hover .game-card__image img { transform: scale(1.08); }

.game-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.88) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  opacity: 0;
  transition: opacity var(--dur) var(--ease-out);
}
.game-card:hover .game-card__overlay { opacity: 1; }

.game-card__meta {
  padding: 14px 16px 16px;
}
.game-card__title {
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--bs-text);
  letter-spacing: 0;
}
.game-card__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bs-crimson);
  opacity: 0.88;
}

.games__footer {
  text-align: center;
  margin-top: 44px;
}

/* ---------- Banner ---------- */
.banner-section { padding: clamp(60px, 8vw, 100px) 0; }

.promo-banner {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px -10px rgba(230, 57, 70, 0.42), 0 8px 24px -6px rgba(0, 0, 0, 0.6);
  transition: transform var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out);
  border: 1px solid rgba(154, 163, 173, 0.3);
  isolation: isolate;
}

.promo-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 80px -10px rgba(230, 57, 70, 0.55), 0 12px 36px -6px rgba(0, 0, 0, 0.7);
}

.promo-banner__img {
  width: 100%;
  display: block;
  transition: transform 700ms var(--ease-out);
}
.promo-banner:hover .promo-banner__img { transform: scale(1.03); }

.promo-banner__shine {
  position: absolute;
  top: 0;
  left: -50%;
  width: 40%;
  height: 100%;
  background: linear-gradient(100deg,
    transparent 0%,
    rgba(244, 246, 248, 0) 30%,
    rgba(244, 246, 248, 0.3) 50%,
    rgba(244, 246, 248, 0) 70%,
    transparent 100%);
  transform: skewX(-16deg);
  transition: left 900ms var(--ease-out);
  pointer-events: none;
  z-index: 2;
}
.promo-banner:hover .promo-banner__shine { left: 120%; }

/* ---------- SEO Text Section ---------- */
.seo-section {
  padding: clamp(40px, 6vw, 70px) 0 clamp(60px, 8vw, 100px);
  background: var(--grad-bg-section);
  border-top: 1px solid var(--bs-border);
}
.seo-section .container {
  color: var(--bs-text-soft);
  font-size: 15px;
  line-height: 1.75;
  max-width: 980px;
}
.seo-section h1, .seo-section h2, .seo-section h3, .seo-section h4 {
  color: var(--bs-text);
  margin-bottom: 16px;
  margin-top: 28px;
}
.seo-section h2 { font-size: 28px; }
.seo-section h3 { font-size: 22px; }
.seo-section h4 { font-size: 18px; }
.seo-section p { margin-bottom: 14px; }
.seo-section a {
  color: var(--bs-crimson);
  border-bottom: 1px solid rgba(230, 57, 70, 0.3);
  transition: border-color var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}
.seo-section a:hover {
  color: var(--bs-platinum);
  border-color: var(--bs-platinum);
}
.seo-section ul, .seo-section ol {
  margin: 14px 0 14px 24px;
}
.seo-section ul li { list-style: disc; margin-bottom: 6px; }
.seo-section ol li { list-style: decimal; margin-bottom: 6px; }
.seo-section table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.seo-section th, .seo-section td {
  padding: 10px 14px;
  border: 1px solid var(--bs-border);
  text-align: left;
}
.seo-section th {
  background: rgba(244, 246, 248, 0.04);
  color: var(--bs-platinum);
  font-weight: 700;
}

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--bs-bg) 0%, var(--bs-bg-deep) 100%);
  border-top: 1px solid rgba(154, 163, 173, 0.2);
  padding-top: 70px;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.6), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-logo { height: 48px; margin-bottom: 16px; }

.footer-about {
  color: var(--bs-text-soft);
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 360px;
  margin-bottom: 22px;
}

.footer-title {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bs-platinum);
  margin-bottom: 18px;
}

.footer-list li { margin-bottom: 10px; }
.footer-list a {
  color: var(--bs-text-soft);
  font-size: 14px;
  transition: color var(--dur) var(--ease-out), padding var(--dur) var(--ease-out);
  display: inline-block;
}
.footer-list a:hover {
  color: var(--bs-crimson);
  padding-left: 6px;
}

.socials {
  display: flex;
  gap: 10px;
}

.social {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 246, 248, 0.04);
  border: 1px solid var(--bs-border);
  border-radius: 50%;
  color: var(--bs-text-soft);
  transition: all var(--dur) var(--ease-out);
}
.social:hover {
  background: var(--grad-btn-primary);
  border-color: transparent;
  color: var(--bs-platinum);
  transform: translateY(-3px) rotate(-6deg);
  box-shadow: 0 8px 20px -6px rgba(230, 57, 70, 0.55);
}

.footer-bottom {
  border-top: 1px solid var(--bs-border);
  padding: 26px 0;
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--bs-text-muted);
}

/* ==========================================================================
   STICKY BOTTOM PROMO BANNER
   ========================================================================== */
.sticky-promo {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: linear-gradient(135deg, rgba(2, 6, 16, 0.97) 0%, rgba(10, 20, 38, 0.97) 100%);
  border-top: 1px solid rgba(230, 57, 70, 0.5);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 -10px 30px -8px rgba(0, 0, 0, 0.7),
              0 -2px 12px -4px rgba(230, 57, 70, 0.45);
  transform: translateY(0);
  transition: transform 320ms var(--ease-out);
}
.sticky-promo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.7), transparent);
}
.sticky-promo.is-hidden {
  transform: translateY(110%);
}

.sticky-promo__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  height: var(--sticky-h);
  padding-inline: clamp(14px, 4vw, 28px);
  display: flex;
  align-items: center;
  gap: 16px;
}

.sticky-promo__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.sticky-promo__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--grad-btn-primary);
  color: var(--bs-platinum);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px -4px rgba(230, 57, 70, 0.6);
}

.sticky-promo__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.sticky-promo__name {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 900;
  color: var(--bs-platinum);
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}
.sticky-promo__offer {
  font-size: 13px;
  font-weight: 600;
  color: var(--bs-text-soft);
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-promo__cta {
  flex-shrink: 0;
  padding: 11px 22px;
  font-size: 13px;
}

.sticky-promo__close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--bs-text-soft);
  transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}
.sticky-promo__close:hover {
  background: rgba(244, 246, 248, 0.08);
  color: var(--bs-platinum);
}
