/* ==========================================================================
   National Casino Greece — Κύριο Stylesheet
   Αυτοκρατορικό θέμα: βαθύ κόκκινο + χρυσό + μαύρο / imperial luxury
   ========================================================================== */

/* ---------- CSS Μεταβλητές ---------- */
:root {
  --nc-bg-deep:      #080508;
  --nc-bg:           #0e080c;
  --nc-bg-raised:    #160c12;
  --nc-bg-card:      #1c1018;

  --nc-maroon:       #1a0810;
  --nc-wine:         #2d0f1a;
  --nc-velvet:       #420e1f;

  --nc-red:          #c0152a;
  --nc-red-bright:   #e8203a;
  --nc-red-deep:     #8a0d1e;
  --nc-crimson:      #dc1428;

  --nc-gold:         #d4a017;
  --nc-gold-light:   #f0c040;
  --nc-gold-pale:    #fad878;
  --nc-gold-deep:    #9a7010;
  --nc-bronze:       #b8860b;

  --nc-ivory:        #f5f0e8;
  --nc-cream:        #ece4d0;
  --nc-silver:       #c8bfb0;

  --nc-text:         #f0e8dc;
  --nc-text-soft:    #c8bea8;
  --nc-text-muted:   #7a6858;
  --nc-border:       rgba(212, 160, 23, 0.18);

  --grad-gold:         linear-gradient(135deg, #f0c040 0%, #d4a017 45%, #9a7010 100%);
  --grad-gold-h:       linear-gradient(135deg, #fad878 0%, #f0c040 45%, #b8860b 100%);
  --grad-btn-primary:  linear-gradient(135deg, #e8203a 0%, #c0152a 55%, #8a0d1e 100%);
  --grad-btn-gold:     linear-gradient(135deg, #f0c040 0%, #d4a017 55%, #9a7010 100%);
  --grad-bg-section:   linear-gradient(180deg, #0e080c 0%, #160c12 100%);
  --grad-imperial:     linear-gradient(135deg, #160c12 0%, #2d0f1a 50%, #0e080c 100%);

  --sh-card:        0 10px 30px -8px rgba(0,0,0,0.8), 0 4px 12px -4px rgba(26, 8, 16, 0.7);
  --sh-card-hover:  0 20px 50px -10px rgba(0,0,0,0.9), 0 8px 24px -4px rgba(212, 160, 23, 0.4);
  --sh-gold:        0 8px 28px -4px rgba(212, 160, 23, 0.5);
  --sh-red:         0 8px 24px -4px rgba(192, 21, 42, 0.5);

  --f-display: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --f-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --container-max: 1280px;
  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --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: 80px;
  --sticky-h: 76px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
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(--nc-text);
  background-color: var(--nc-bg-deep);
  background-image:
    radial-gradient(ellipse 900px 650px at 20% 0%,   rgba(42, 14, 31, 0.65), transparent 60%),
    radial-gradient(ellipse 700px 500px at 85% 75%,  rgba(192, 21, 42, 0.10), transparent 60%),
    radial-gradient(ellipse 500px 400px at 50% 25%,  rgba(212, 160, 23, 0.06), transparent 60%),
    linear-gradient(180deg, #080508 0%, #0e080c 100%);
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  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.12;
  letter-spacing: 0.04em;
}

::selection { background: var(--nc-red); color: var(--nc-ivory); }

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

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

.eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--nc-gold-light);
  padding: 5px 14px;
  border: 1px solid rgba(212, 160, 23, 0.38);
  border-radius: var(--radius-pill);
  background: rgba(212, 160, 23, 0.07);
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--nc-text);
  text-transform: uppercase;
  font-style: italic;
}

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

.section-head { text-align: center; margin-bottom: 48px; }
.section-head .section-lead { margin-inline: auto; }

/* ---------- Divider ornament ---------- */
.ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto 28px;
  width: fit-content;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.6));
}
.ornament::after {
  background: linear-gradient(270deg, transparent, rgba(212,160,23,0.6));
}
.ornament span {
  color: var(--nc-gold);
  font-size: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--dur) var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--grad-btn-primary);
  color: var(--nc-ivory);
  box-shadow: var(--sh-red);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px -6px rgba(192, 21, 42, 0.65);
  filter: brightness(1.1);
}

.btn--gold {
  background: var(--grad-btn-gold);
  color: var(--nc-bg-deep);
  box-shadow: var(--sh-gold);
  font-weight: 800;
  letter-spacing: 0.1em;
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px -6px rgba(212, 160, 23, 0.65);
  background: var(--grad-gold-h);
}

.btn--ghost {
  background: rgba(212, 160, 23, 0.07);
  color: var(--nc-text);
  border: 1px solid rgba(212, 160, 23, 0.3);
}
.btn--ghost:hover {
  background: rgba(212, 160, 23, 0.14);
  border-color: rgba(212, 160, 23, 0.55);
  transform: translateY(-2px);
}

.btn--lg { padding: 16px 36px; font-size: 15px; }
.btn--sm { padding: 9px 18px; font-size: 12px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--dur-slow), box-shadow var(--dur-slow);
}

.site-header.is-scrolled {
  background: rgba(8, 5, 8, 0.94);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 4px 28px -8px rgba(0,0,0,0.8),
              0 1px 0 rgba(212, 160, 23, 0.22);
}

.header-inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand__logo-svg { height: 50px; width: auto; flex-shrink: 0; }

.brand__name {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 800;
  font-style: italic;
  color: var(--nc-gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}
.brand__name span {
  display: block;
  font-size: 10px;
  color: var(--nc-text-muted);
  letter-spacing: 0.26em;
  font-family: var(--f-body);
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav__list { display: flex; align-items: center; gap: 0; }
.nav__link {
  display: block;
  padding: 10px 13px;
  font-family: var(--f-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--nc-text-soft);
  letter-spacing: 0.04em;
  transition: color var(--dur) var(--ease-out);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 13px; right: 13px;
  height: 1px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transition: transform var(--dur) var(--ease-out);
}
.nav__link:hover { color: var(--nc-gold-light); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 10px; margin-left: 14px; }
.nav__toggle { display: none; }
.nav__close  { display: none; }
.nav__backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 98;
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease-out);
}
.nav__backdrop.is-open { opacity: 1; }
body.nav-open { overflow: hidden; }

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

.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.28;
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,5,8,0.45) 0%, rgba(8,5,8,0.92) 100%),
    radial-gradient(ellipse 750px 500px at 65% 40%, rgba(192,21,42,0.1), transparent 70%);
}

/* Floating coin particles */
.hero__particles {
  position: absolute; inset: 0;
  z-index: 1; pointer-events: none; overflow: hidden;
}
.hero__coin {
  position: absolute;
  opacity: 0.12;
  animation: coinFloat 9s ease-in-out infinite;
}
.hero__coin:nth-child(1) { top: 10%; left: 5%;  width: 55px; animation-delay: 0s;   animation-duration: 10s; }
.hero__coin:nth-child(2) { top: 45%; right: 7%; width: 38px; animation-delay: 2.5s; animation-duration: 8s;  }
.hero__coin:nth-child(3) { top: 72%; left: 10%; width: 28px; animation-delay: 5s;   animation-duration: 11s; }
.hero__coin:nth-child(4) { top: 22%; right: 20%;width: 46px; animation-delay: 1.2s; animation-duration: 9s;  }

.hero__content {
  position: relative; z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(60px, 10vh, 100px) clamp(16px, 4vw, 32px);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--nc-gold-light);
  padding: 7px 20px;
  border: 1px solid rgba(212, 160, 23, 0.40);
  border-radius: var(--radius-pill);
  background: rgba(212, 160, 23, 0.08);
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(38px, 8vw, 86px);
  font-weight: 800;
  font-style: italic;
  color: var(--nc-text);
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1.02;
  text-shadow: 0 4px 28px rgba(0,0,0,0.6);
}

.hero__desc {
  color: var(--nc-text-soft);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.75;
  margin-bottom: 38px;
  max-width: 580px;
  margin-inline: auto;
}

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

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

.stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stat__num {
  font-family: var(--f-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nc-text-muted);
}
.hero__stats .stat:not(:last-child) {
  padding-right: clamp(24px, 5vw, 64px);
  border-right: 1px solid var(--nc-border);
}

/* ---------- Brand Section ---------- */
.brand-section {
  padding: clamp(70px, 10vw, 120px) 0;
  position: relative;
}
.brand-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.45), transparent);
}

.brand-grid {
  display: grid;
  grid-template-columns: 1fr 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(212,160,23,0.2));
}
.brand-media::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 88%; height: 88%;
  border-radius: 50%;
  border: 1px solid rgba(212,160,23,0.16);
  animation: ringPulseNC 5s ease-in-out infinite;
}
.brand-media::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 72%; height: 72%;
  border-radius: 50%;
  border: 1px solid rgba(192,21,42,0.12);
  animation: ringPulseNC 5s ease-in-out infinite 2s;
}

.brand-text p {
  color: var(--nc-text-soft);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15.5px;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  background: rgba(212, 160, 23, 0.06);
  border: 1px solid rgba(212, 160, 23, 0.16);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--nc-text-soft);
  transition: all var(--dur) var(--ease-out);
}
.features li:hover {
  background: rgba(212, 160, 23, 0.12);
  border-color: rgba(212, 160, 23, 0.35);
  color: var(--nc-gold-light);
}

/* ---------- Games Slider ---------- */
.games {
  padding: clamp(60px, 8vw, 100px) 0;
  background: linear-gradient(180deg, rgba(22,12,18,0.55) 0%, rgba(14,8,12,0.55) 100%);
  position: relative;
}
.games::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192,21,42,0.4), transparent);
}
.games::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.35), transparent);
}

.slider { position: relative; }
.slider__viewport { overflow: hidden; border-radius: var(--radius-lg); }
.slider__track {
  display: flex; gap: 20px;
  transition: transform 420ms var(--ease-in-out);
  will-change: transform;
}

.game-card {
  flex: 0 0 calc((100% - 80px) / 5);
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--nc-bg-card);
  border: 1px solid var(--nc-border);
  box-shadow: var(--sh-card);
  transition: all var(--dur-slow) var(--ease-out);
}
.game-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-card-hover);
  border-color: rgba(212, 160, 23, 0.4);
}
.game-card__image {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--nc-maroon);
}
.game-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.game-card:hover .game-card__image img { transform: scale(1.06); }

.game-card__overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8,5,8,0.65);
  opacity: 0;
  transition: opacity var(--dur) var(--ease-out);
  backdrop-filter: blur(4px);
}
.game-card:hover .game-card__overlay { opacity: 1; }

.game-card__meta { padding: 12px 14px; }
.game-card__title {
  font-family: var(--f-display);
  font-size: 13.5px;
  font-weight: 700;
  font-style: italic;
  color: var(--nc-cream);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-card__tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--nc-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.slider__btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(14,8,12,0.9);
  border: 1px solid rgba(212,160,23,0.32);
  color: var(--nc-gold-light);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--dur) var(--ease-out);
  backdrop-filter: blur(8px);
}
.slider__btn:hover {
  background: var(--nc-velvet);
  border-color: var(--nc-gold);
  box-shadow: 0 0 22px rgba(212,160,23,0.35);
}
.slider__btn:disabled { opacity: 0.3; cursor: not-allowed; transform: translateY(-50%); }
.slider__btn--prev { left: -22px; }
.slider__btn--next { right: -22px; }
.games__footer { text-align: center; margin-top: 40px; }

/* ---------- Banner ---------- */
.banner-section { padding: clamp(50px, 6vw, 80px) 0; }
.promo-banner {
  display: block; position: relative;
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform var(--dur-slow) var(--ease-out), box-shadow var(--dur-slow) var(--ease-out);
}
.promo-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 70px -15px rgba(192,21,42,0.3), var(--sh-gold);
}
.promo-banner__img { width: 100%; border-radius: var(--radius-lg); }
.promo-banner__shine {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(212,160,23,0.10) 50%, transparent 70%);
  border-radius: var(--radius-lg);
  animation: shimmerNC 3s ease-in-out infinite;
}

/* ---------- SEO Section ---------- */
.seo-section {
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
}
.seo-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.32), transparent);
}
.seo-section h2 {
  font-family: var(--f-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  font-style: italic;
  color: var(--nc-gold-light);
  margin: 38px 0 14px;
  letter-spacing: 0.04em;
}
.seo-section h2:first-child { margin-top: 0; }
.seo-section h3 {
  font-family: var(--f-display);
  font-size: clamp(17px, 2.2vw, 24px);
  font-weight: 700;
  font-style: italic;
  color: var(--nc-red-bright);
  margin: 28px 0 10px;
}
.seo-section p {
  color: var(--nc-text-soft);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}
.seo-section ul, .seo-section ol {
  color: var(--nc-text-soft);
  margin: 14px 0 20px 24px;
  font-size: 15px; line-height: 1.8;
}
.seo-section ul { list-style: disc; }
.seo-section ol { list-style: decimal; }
.seo-section table {
  width: 100%; border-collapse: collapse;
  margin: 20px 0; border-radius: var(--radius); overflow: hidden;
}
.seo-section table th {
  background: rgba(212,160,23,0.12);
  color: var(--nc-gold-light);
  font-family: var(--f-display);
  font-size: 13px; letter-spacing: 0.1em;
  padding: 12px 16px; text-align: left; text-transform: uppercase;
  border-bottom: 1px solid rgba(212,160,23,0.22);
}
.seo-section table td {
  padding: 10px 16px;
  color: var(--nc-text-soft); font-size: 14px;
  border-bottom: 1px solid rgba(212,160,23,0.07);
}
.seo-section table tr:last-child td { border-bottom: none; }
.seo-section table tr:nth-child(even) td { background: rgba(212,160,23,0.03); }
.seo-section strong { color: var(--nc-cream); font-weight: 700; }
.seo-section a { color: var(--nc-gold-light); text-decoration: underline; text-underline-offset: 3px; }
.seo-section a:hover { color: var(--nc-red-bright); }

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--nc-bg) 0%, var(--nc-bg-deep) 100%);
  border-top: 1px solid rgba(212,160,23,0.15);
  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(212,160,23,0.5), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 50px; padding-bottom: 50px;
}
.footer-logo-wrap { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.footer-about {
  color: var(--nc-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: 11px; font-weight: 800;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--nc-gold); margin-bottom: 18px;
}
.footer-list li { margin-bottom: 10px; }
.footer-list a {
  color: var(--nc-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(--nc-gold-light); padding-left: 6px; }

.socials { display: flex; gap: 10px; }
.social {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(212,160,23,0.05);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 50%; color: var(--nc-text-soft);
  transition: all var(--dur) var(--ease-out);
}
.social:hover {
  background: var(--grad-btn-primary);
  border-color: transparent; color: var(--nc-ivory);
  transform: translateY(-3px) rotate(-6deg);
  box-shadow: 0 8px 20px -6px rgba(192,21,42,0.5);
}
.footer-bottom { border-top: 1px solid var(--nc-border); padding: 26px 0; }
.footer-bottom__inner {
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--nc-text-muted);
}

/* ---------- Sticky Promo ---------- */
.sticky-promo {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: linear-gradient(135deg, rgba(8,5,8,0.97) 0%, rgba(22,12,18,0.97) 100%);
  border-top: 1px solid rgba(212,160,23,0.4);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 -10px 30px -8px rgba(0,0,0,0.8),
              0 -2px 12px -4px rgba(212,160,23,0.3);
  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(192,21,42,0.5), 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(--nc-ivory);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px -4px rgba(192,21,42,0.55);
  font-size: 22px;
}
.sticky-promo__text { display: flex; flex-direction: column; min-width: 0; }
.sticky-promo__name {
  font-family: var(--f-display);
  font-size: 17px; font-weight: 800; font-style: italic;
  color: var(--nc-gold-light);
  letter-spacing: 0.06em; line-height: 1.1; text-transform: uppercase;
}
.sticky-promo__offer {
  font-size: 13px; font-weight: 600;
  color: var(--nc-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(--nc-text-soft);
  transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}
.sticky-promo__close:hover { background: rgba(212,160,23,0.1); color: var(--nc-ivory); }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
