/* ==========================================================================
   Beef Casino — Main Stylesheet
   Prime Cut Gaming aesthetic — oxblood, charred black, copper & butter gold
   ========================================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --bc-bg-deep:      #05010a;
  --bc-bg:           #0a0406;
  --bc-bg-raised:    #1a0812;

  --bc-burgundy:     #4a0a14;
  --bc-oxblood:      #6b0f1e;
  --bc-red:          #c8102e;
  --bc-red-light:    #e62b3d;
  --bc-ember:        #ff6b1a;

  --bc-copper:       #c77a3a;
  --bc-copper-deep:  #8a5a10;
  --bc-gold:         #d4a72c;
  --bc-butter:       #f2cf5b;
  --bc-butter-light: #fff4b3;
  --bc-cream:        #f4e4bc;

  --bc-text:         #f4e4bc;
  --bc-text-soft:    #d4b896;
  --bc-text-muted:   #8a6a4a;
  --bc-border:       rgba(244, 228, 188, 0.10);

  --grad-gold:         linear-gradient(135deg, #fff4b3 0%, #f2cf5b 45%, #8a5a10 100%);
  --grad-btn-primary:  linear-gradient(135deg, #ff6b1a 0%, #c8102e 60%, #4a0a14 100%);
  --grad-bg-section:   linear-gradient(180deg, #0a0406 0%, #1a0812 100%);

  --sh-card:        0 10px 30px -8px rgba(0,0,0,0.65), 0 4px 12px -4px rgba(107, 15, 30, 0.45);
  --sh-card-hover:  0 20px 50px -10px rgba(0,0,0,0.8), 0 8px 24px -4px rgba(255, 107, 26, 0.5);

  --f-display: 'Bodoni Moda', 'Didot', Georgia, serif;
  --f-body:    'Barlow', -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;
}

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

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(--bc-text);
  background-color: var(--bc-bg-deep);
  background-image:
    radial-gradient(ellipse 900px 600px at 20% 10%, rgba(107, 15, 30, 0.28), transparent 60%),
    radial-gradient(ellipse 900px 600px at 90% 80%, rgba(255, 107, 26, 0.16), transparent 60%),
    linear-gradient(180deg, #05010a 0%, #0a0406 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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.01em;
}

::selection { background: var(--bc-red); color: var(--bc-cream); }

/* ---------- 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;
  font-style: italic;
}

.eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bc-butter);
  padding: 6px 14px;
  border: 1px solid rgba(199, 122, 58, 0.45);
  border-radius: var(--radius-pill);
  background: rgba(199, 122, 58, 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(--bc-text);
}

.text-block {
    max-width: 800px;        /* ограничение ширины на больших экранах */
    width: 90%;              /* занимает 90% ширины экрана */
    margin: 40px auto;       /* центр + отступы сверху/снизу */
    text-align: left;
    color: #aaa;          /* светло-серый */
    font-family: Arial, sans-serif;
    font-size: clamp(16px, 2vw, 20px); /* адаптивный размер текста */
    line-height: 1.6;
    }

    .text-block {
  font-size: 16px;
  line-height: 1.6;
  color: #aaa;
}

/* Абзацы */
.text-block p {
  margin: 0 0 1em;
}

/* Заголовки */
.text-block h1,
.text-block h2,
.text-block h3,
.text-block h4,
.text-block h5,
.text-block h6 {
  margin: 1.5em 0 0.5em;
  line-height: 1.3;
}

/* Списки */
.text-block ul,
.text-block ol {
  margin: 0 0 1em 1.5em;
  padding: 0;
}

.text-block li {
  margin-bottom: 0.4em;
}

/* Вложенные списки */
.text-block ul ul,
.text-block ol ol,
.text-block ul ol,
.text-block ol ul {
  margin-top: 0.4em;
}

/* Таблицы */
.text-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 14px;
}

.text-block th,
.text-block td {
  border: 1px solid #ddd;
  padding: 8px 12px;
  text-align: left;
}

.text-block th {
  background-color: #666;
  font-weight: 600;
}

/* Цитаты */
.text-block blockquote {
  margin: 1em 0;
  padding-left: 1em;
  border-left: 4px solid #ddd;
  color: #555;
}

/* Код */
.text-block code {
  background: #f5f5f5;
  padding: 2px 4px;
  border-radius: 4px;
  font-family: monospace;
}

.text-block pre {
  background: #666;
  padding: 12px;
  overflow: auto;
  border-radius: 6px;
}

.section-lead {
  color: var(--bc-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.04em;
  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; }

/* Primary — ember-to-oxblood gradient */
.btn--primary {
  background: var(--grad-btn-primary);
  color: var(--bc-cream);
  box-shadow: 0 6px 18px -6px rgba(255, 107, 26, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -6px rgba(255, 107, 26, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn--primary:hover img { transform: translateX(2px); }
.btn--primary:active { transform: translateY(0); }

/* Ghost — copper border on tinted glass */
.btn--ghost {
  background: rgba(244, 228, 188, 0.04);
  color: var(--bc-text);
  border-color: rgba(199, 122, 58, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(199, 122, 58, 0.14);
  border-color: var(--bc-copper);
  color: var(--bc-butter-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(199, 122, 58, 0.4);
}
.btn--ghost:hover img { transform: translateX(2px); }

/* Shine sweep on primary */
.btn--primary::before {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent 0%, rgba(255,244,179,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(5, 1, 10, 0.92) 0%, rgba(10, 4, 6, 0.75) 100%);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(199, 122, 58, 0.18);
}

.site-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(199, 122, 58, 0.6) 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: 36px;
  flex: 1;
  justify-content: flex-end;
}

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

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

.nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 22px;
  height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease-out);
}
.nav__link:hover {
  color: var(--bc-butter-light);
  background: rgba(199, 122, 58, 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(--bc-butter-light);
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--dur) var(--ease-out);
}
.nav__toggle:hover { background: rgba(199, 122, 58, 0.1); }

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

.nav__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 1, 10, 0.72);
  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(5, 1, 10, 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(--bc-butter-light);
  padding: 10px 20px;
  border: 1px solid rgba(199, 122, 58, 0.5);
  border-radius: var(--radius-pill);
  background: rgba(199, 122, 58, 0.1);
  margin-bottom: 28px;
}
.hero__badge img { filter: brightness(1.4); color: var(--bc-ember); }

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(60px, 11vw, 150px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.hero__title-top {
  display: block;
  font-style: italic;
  background: linear-gradient(180deg, #fff4b3 0%, #f2cf5b 55%, #8a5a10 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 24px rgba(242, 207, 91, 0.35));
}
.hero__title-bottom {
  display: block;
  color: var(--bc-cream);
  font-size: 0.42em;
  letter-spacing: 0.55em;
  font-weight: 700;
  margin-top: 4px;
  padding-left: 0.55em;
  opacity: 0.92;
}

.hero__desc {
  max-width: 640px;
  margin: 0 auto 42px;
  font-size: clamp(16px, 2vw, 19px);
  color: var(--bc-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;
  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.18em;
  text-transform: uppercase;
  color: var(--bc-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(255, 107, 26, 0.25));
}

.brand-text p {
  color: var(--bc-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, 228, 188, 0.03);
  border: 1px solid var(--bc-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(199, 122, 58, 0.1);
  border-color: rgba(199, 122, 58, 0.45);
}
.features li img {
  color: var(--bc-butter);
  filter: drop-shadow(0 0 8px rgba(242, 207, 91, 0.45));
}

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

.games::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 26, 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(242, 207, 91, 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;
}

.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, 228, 188, 0.05);
  border: 1px solid rgba(199, 122, 58, 0.45);
  color: var(--bc-butter-light);
  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(199, 122, 58, 0.18);
  border-color: var(--bc-copper);
  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, #1a0812 0%, #0a0406 100%);
  border: 1px solid var(--bc-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(199, 122, 58, 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(199, 122, 58, 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(5, 1, 10, 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(--bc-text);
  letter-spacing: 0;
}
.game-card__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bc-butter);
  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(255, 107, 26, 0.42), 0 8px 24px -6px rgba(0, 0, 0, 0.55);
  transition: transform var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out);
  border: 1px solid rgba(199, 122, 58, 0.3);
  isolation: isolate;
}

.promo-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 80px -10px rgba(255, 107, 26, 0.55), 0 12px 36px -6px rgba(0, 0, 0, 0.65);
}

.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(255, 244, 179, 0) 30%,
    rgba(255, 244, 179, 0.28) 50%,
    rgba(255, 244, 179, 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%; }

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--bc-bg) 0%, var(--bc-bg-deep) 100%);
  border-top: 1px solid rgba(199, 122, 58, 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(199, 122, 58, 0.6), transparent);
}

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

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

.footer-about {
  color: var(--bc-text-soft);
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 320px;
}

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

.footer-list li { margin-bottom: 10px; }
.footer-list a {
  color: var(--bc-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(--bc-butter-light);
  padding-left: 6px;
}

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

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

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

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