  .cdn-footer-wrap {
    --c-bg: #1A1A1A;
    --c-bg-elevated: #1a1a1a;
    --c-bg-card: #161616;
    --c-surface: #222222;
    --c-white: #F0E6D0;
    --c-white-90: rgba(240,230,208,0.9);
    --c-white-70: rgba(240,230,208,0.7);
    --c-white-50: rgba(240,230,208,0.5);
    --c-white-30: rgba(240,230,208,0.3);
    --c-white-15: rgba(240,230,208,0.15);
    --c-white-08: rgba(240,230,208,0.08);
    --c-white-04: rgba(240,230,208,0.04);
    --c-accent: #C9A84C;
    --c-accent-soft: #D4B96A;
    --c-accent-glow: rgba(201,168,76,0.35);
    --c-accent-subtle: rgba(201,168,76,0.1);
    --c-gold: #C9A84C;
    --c-gold-soft: #D4B96A;
    --c-blood: #6B1515;
    --c-blood-soft: rgba(107,21,21,0.4);
    --c-success: #C9A84C;
    --c-success-soft: rgba(201,168,76,0.15);
    --gradient-accent: linear-gradient(135deg, #C9A84C 0%, #A6842A 50%, #6B1515 100%);
    --gradient-rune: linear-gradient(90deg, #C9A84C 0%, #6B1515 33%, #C9A84C 66%, #6B1515 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.5);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.6);
    --r-xs: 8px;
    --r-sm: 12px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-full: 9999px;
    --f-sans: 'Cinzel', Georgia, serif;
    --f-serif: 'Crimson Text', Georgia, serif;
    --f-display: 'Cinzel Decorative', 'Cinzel', serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --t-fast: 0.25s var(--ease-out);
    --t-normal: 0.4s var(--ease-out);
  }

  /* ============================================ */
  /* KEYFRAMES */
  /* ============================================ */
  @keyframes cdnFooterRuneLine {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
  }

  @keyframes cdnFooterPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
  }

  @keyframes cdnFooterEmber {
    0% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { opacity: 0.5; }
    100% { transform: translateY(-60px) scale(0); opacity: 0; }
  }

  /* ============================================ */
  /* FOOTER BASE */
  /* ============================================ */
  .cdn-footer-wrap {
    font-family: var(--f-serif);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #1A1A1A;
    color: var(--c-white-90);
    line-height: 1.6;
    margin: 0;
    padding: 0;
  }

  .cdn-footer-wrap *, .cdn-footer-wrap *::before, .cdn-footer-wrap *::after {
    box-sizing: border-box;
  }

  .cdn-footer-wrap a {
    text-decoration: none;
    color: inherit;
    transition: all var(--t-normal);
  }

  .cdn-footer-wrap p { margin: 0; }
  .cdn-footer-wrap img { max-width: 100%; height: auto; display: block; }

  .cdn-footer-wrap .footer {
    border-top: 1px solid var(--c-white-08);
    background: #1A1A1A;
    position: relative;
    overflow: hidden;
  }

  .cdn-footer-wrap .footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-rune);
    background-size: 200% 100%;
    animation: cdnFooterRuneLine 6s linear infinite;
  }

  .cdn-footer-wrap .footer-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--c-gold);
    border-radius: 50%;
    opacity: 0.2;
    pointer-events: none;
  }

  .cdn-footer-wrap .footer-particle:nth-child(1) { bottom: 30%; left: 15%; animation: cdnFooterEmber 8s ease-in-out infinite; }
  .cdn-footer-wrap .footer-particle:nth-child(2) { bottom: 20%; left: 75%; animation: cdnFooterEmber 10s ease-in-out infinite 1s; }
  .cdn-footer-wrap .footer-particle:nth-child(3) { bottom: 40%; left: 50%; animation: cdnFooterEmber 9s ease-in-out infinite 2s; }

  .cdn-footer-wrap .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 32px 48px;
    position: relative;
    z-index: 1;
  }

  /* ============================================ */
  /* FOOTER TOP: Logo + Tagline + Social */
  /* ============================================ */
  .cdn-footer-wrap .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
  }

  .cdn-footer-wrap .footer-logo {
    display: inline-block;
    margin-bottom: 16px;
  }

  .cdn-footer-wrap .footer-logo-img {
    height: 68px;
    width: auto;
    transition: transform var(--t-normal);
  }

  .cdn-footer-wrap .footer-logo:hover .footer-logo-img {
    transform: scale(1.04);
  }

  .cdn-footer-wrap .footer-tagline {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 15px;
    color: var(--c-white-50);
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: 0.3px;
  }

  .cdn-footer-wrap .footer-social {
    display: flex;
    justify-content: center;
    gap: 14px;
  }

  .cdn-footer-wrap .footer-social-link {
    width: 44px;
    height: 44px;
    background: var(--c-white-04);
    border: 1px solid var(--c-white-08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--t-normal);
    position: relative;
    overflow: hidden;
  }

  .cdn-footer-wrap .footer-social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity var(--t-normal);
    border-radius: 50%;
  }

  .cdn-footer-wrap .footer-social-link:hover {
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201,168,76,0.15);
  }

  .cdn-footer-wrap .footer-social-link:hover::before {
    opacity: 1;
  }

  .cdn-footer-wrap .footer-social-link svg {
    width: 18px;
    height: 18px;
    fill: var(--c-white-70);
    position: relative;
    z-index: 1;
    transition: all var(--t-normal);
  }

  .cdn-footer-wrap .footer-social-link:hover svg {
    fill: var(--c-bg);
    transform: scale(1.1);
  }

  /* ============================================ */
  /* TRUST BADGES */
  /* ============================================ */
  .cdn-footer-wrap .footer-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 32px 0;
    border-top: 1px solid var(--c-white-08);
    border-bottom: 1px solid var(--c-white-08);
    margin-bottom: 32px;
  }

  .cdn-footer-wrap .footer-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 12px;
    background: var(--c-white-04);
    border: 1px solid var(--c-white-08);
    border-radius: var(--r-sm);
    transition: all var(--t-normal);
  }

  .cdn-footer-wrap .footer-trust-item:hover {
    background: var(--c-white-08);
    border-color: var(--c-white-15);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }

  .cdn-footer-wrap .footer-trust-icon {
    width: 48px;
    height: 48px;
    background: rgba(201,168,76,0.06);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: var(--r-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 12px;
    transition: all var(--t-normal);
  }

  .cdn-footer-wrap .footer-trust-item:hover .footer-trust-icon {
    background: rgba(201,168,76,0.12);
    border-color: rgba(201,168,76,0.25);
    transform: scale(1.08);
  }

  .cdn-footer-wrap .footer-trust-text strong {
    display: block;
    font-size: 12px;
    font-family: var(--f-sans);
    color: var(--c-white);
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
  }

  .cdn-footer-wrap .footer-trust-text span {
    font-size: 11px;
    font-family: var(--f-serif);
    color: var(--c-white-50);
  }

  /* ============================================ */
  /* PAYMENTS & LINKS */
  /* ============================================ */
  .cdn-footer-wrap .footer-middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
  }

  .cdn-footer-wrap .footer-payments {
    display: flex;
    justify-content: center;
    padding: 14px 24px;
    background: var(--c-white-04);
    border-radius: var(--r-full);
    border: 1px solid var(--c-white-08);
    transition: all var(--t-normal);
  }

  .cdn-footer-wrap .footer-payments:hover {
    border-color: var(--c-white-15);
  }

  .cdn-footer-wrap .footer-payments-img {
    height: 24px;
    width: auto;
    opacity: 0.7;
    transition: opacity var(--t-normal);
  }

  .cdn-footer-wrap .footer-payments:hover .footer-payments-img {
    opacity: 1;
  }

  .cdn-footer-wrap .footer-links {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .cdn-footer-wrap .footer-link {
    font-size: 12px;
    font-family: var(--f-serif);
    color: var(--c-white-50);
    padding: 8px 14px;
    border-radius: var(--r-full);
    transition: all var(--t-normal);
    background: transparent;
    border: 1px solid transparent;
  }

  .cdn-footer-wrap .footer-link:hover {
    color: var(--c-white);
    background: var(--c-white-08);
    border-color: var(--c-white-15);
  }

  .cdn-footer-wrap .footer-link-divider {
    color: var(--c-white-15);
    font-size: 12px;
    user-select: none;
  }

  /* ============================================ */
  /* CTA REMINDER */
  /* ============================================ */
  .cdn-footer-wrap .footer-cta-reminder {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px 32px;
    background: rgba(201,168,76,0.04);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: var(--r-sm);
    margin-bottom: 32px;
    transition: all var(--t-normal);
    flex-wrap: wrap;
  }

  .cdn-footer-wrap .footer-cta-reminder:hover {
    background: rgba(201,168,76,0.06);
    border-color: rgba(201,168,76,0.2);
  }

  .cdn-footer-wrap .footer-cta-text {
    font-size: 13px;
    font-family: var(--f-serif);
    color: var(--c-white-50);
  }

  .cdn-footer-wrap .footer-cta-text strong {
    color: var(--c-white-70);
    font-weight: 700;
  }

  .cdn-footer-wrap .footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-accent);
    color: var(--c-bg);
    font-size: 11px;
    font-weight: 700;
    font-family: var(--f-sans);
    padding: 10px 20px;
    border-radius: var(--r-xs);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all var(--t-normal);
    position: relative;
    overflow: hidden;
  }

  .cdn-footer-wrap .footer-cta-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
  }

  .cdn-footer-wrap .footer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,168,76,0.25);
  }

  .cdn-footer-wrap .footer-cta-btn:hover::before {
    left: 200%;
  }

  /* ============================================ */
  /* COPYRIGHT */
  /* ============================================ */
  .cdn-footer-wrap .footer-copyright-section {
    text-align: center;
    margin-bottom: 32px;
  }

  .cdn-footer-wrap .footer-copyright {
    font-size: 13px;
    font-family: var(--f-serif);
    color: var(--c-white-50);
    margin-bottom: 6px;
  }

  .cdn-footer-wrap .footer-copyright .skull {
    display: inline-block;
    animation: cdnFooterPulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 4px rgba(201,168,76,0.3));
  }

  .cdn-footer-wrap .footer-copyright-sub {
    font-size: 11px;
    font-family: var(--f-serif);
    color: var(--c-white-30);
  }

  /* ============================================ */
  /* DISCLAIMER */
  /* ============================================ */
  .cdn-footer-wrap .footer-disclaimer-section {
    background: rgba(22,22,22,0.8);
    border: 1px solid var(--c-white-08);
    border-radius: var(--r-sm);
    padding: 24px;
    position: relative;
    overflow: hidden;
  }

  .cdn-footer-wrap .footer-disclaimer-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-white-08), transparent);
  }

  .cdn-footer-wrap .footer-disclaimer-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
  }

  .cdn-footer-wrap .footer-disclaimer-icon {
    width: 28px;
    height: 28px;
    background: var(--c-white-04);
    border: 1px solid var(--c-white-08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
  }

  .cdn-footer-wrap .footer-disclaimer-title {
    font-size: 10px;
    font-weight: 700;
    font-family: var(--f-sans);
    color: var(--c-white-30);
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .cdn-footer-wrap .footer-disclaimer-content {
    text-align: center;
  }

  .cdn-footer-wrap .footer-disclaimer-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--c-white-04);
    border: 1px solid var(--c-white-08);
    padding: 7px 16px;
    border-radius: var(--r-full);
    margin-bottom: 14px;
  }

  .cdn-footer-wrap .footer-disclaimer-brand-icon {
    font-size: 12px;
    opacity: 0.6;
  }

  .cdn-footer-wrap .footer-disclaimer-brand-text {
    font-size: 11px;
    font-weight: 600;
    font-family: var(--f-sans);
    color: var(--c-white-50);
    letter-spacing: 0.3px;
  }

  .cdn-footer-wrap .footer-disclaimer-text {
    font-size: 11px;
    font-family: var(--f-serif);
    color: var(--c-white-30);
    line-height: 1.7;
    margin-bottom: 10px;
  }

  .cdn-footer-wrap .footer-disclaimer-text:last-child {
    margin-bottom: 0;
  }

  .cdn-footer-wrap .footer-disclaimer-text strong {
    color: var(--c-white-50);
    font-weight: 700;
  }

  .cdn-footer-wrap .footer-disclaimer-trademark {
    font-size: 10px;
    font-family: var(--f-serif);
    color: var(--c-white-30);
    line-height: 1.65;
    padding-top: 12px;
    border-top: 1px solid var(--c-white-08);
    margin-top: 12px;
  }

  /* ============================================ */
  /* RESPONSIVE - TABLET (1024px) */
  /* ============================================ */
  @media (max-width: 1024px) {
    .cdn-footer-wrap .footer-inner {
      padding: 56px 24px 40px;
    }

    .cdn-footer-wrap .footer-logo-img {
      height: 60px;
    }

    .cdn-footer-wrap .footer-trust {
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }
  }

  /* ============================================ */
  /* RESPONSIVE - MOBILE (768px) */
  /* ============================================ */
  @media (max-width: 768px) {
    .cdn-footer-wrap .footer-inner {
      padding: 48px 16px 36px;
    }

    .cdn-footer-wrap .footer-logo-img {
      height: 54px;
    }

    .cdn-footer-wrap .footer-tagline {
      font-size: 14px;
    }

    .cdn-footer-wrap .footer-trust {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .cdn-footer-wrap .footer-trust-item {
      padding: 16px 12px;
    }

    .cdn-footer-wrap .footer-trust-icon {
      width: 42px;
      height: 42px;
      font-size: 20px;
    }

    .cdn-footer-wrap .footer-trust-text strong {
      font-size: 11px;
    }

    .cdn-footer-wrap .footer-trust-text span {
      font-size: 10px;
    }

    .cdn-footer-wrap .footer-payments-img {
      height: 20px;
    }

    .cdn-footer-wrap .footer-link {
      font-size: 11px;
      padding: 6px 12px;
    }

    .cdn-footer-wrap .footer-disclaimer-section {
      padding: 20px 16px;
    }

    .cdn-footer-wrap .footer-disclaimer-text {
      font-size: 10px;
    }

    .cdn-footer-wrap .footer-disclaimer-trademark {
      font-size: 9px;
    }

    .cdn-footer-wrap .footer-cta-reminder {
      flex-direction: column;
      gap: 12px;
      text-align: center;
      padding: 18px 20px;
    }
  }

  /* ============================================ */
  /* RESPONSIVE - SMALL MOBILE (480px) */
  /* ============================================ */
  @media (max-width: 480px) {
    .cdn-footer-wrap .footer-inner {
      padding: 40px 12px 32px;
    }

    .cdn-footer-wrap .footer-logo-img {
      height: 48px;
    }

    .cdn-footer-wrap .footer-tagline {
      font-size: 13px;
      padding: 0 8px;
    }

    .cdn-footer-wrap .footer-social-link {
      width: 40px;
      height: 40px;
    }

    .cdn-footer-wrap .footer-social-link svg {
      width: 16px;
      height: 16px;
    }

    .cdn-footer-wrap .footer-trust {
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .cdn-footer-wrap .footer-trust-item {
      padding: 14px 10px;
    }

    .cdn-footer-wrap .footer-trust-icon {
      width: 38px;
      height: 38px;
      font-size: 18px;
      margin-bottom: 8px;
    }

    .cdn-footer-wrap .footer-trust-text strong {
      font-size: 10px;
    }

    .cdn-footer-wrap .footer-trust-text span {
      font-size: 9px;
    }

    .cdn-footer-wrap .footer-payments {
      padding: 12px 16px;
    }

    .cdn-footer-wrap .footer-payments-img {
      height: 18px;
    }

    .cdn-footer-wrap .footer-links {
      gap: 4px;
    }

    .cdn-footer-wrap .footer-link {
      font-size: 10px;
      padding: 6px 10px;
    }

    .cdn-footer-wrap .footer-link-divider {
      display: none;
    }

    .cdn-footer-wrap .footer-copyright {
      font-size: 11px;
    }

    .cdn-footer-wrap .footer-copyright-sub {
      font-size: 10px;
    }

    .cdn-footer-wrap .footer-disclaimer-section {
      padding: 16px 12px;
    }

    .cdn-footer-wrap .footer-disclaimer-header {
      gap: 8px;
      margin-bottom: 12px;
    }

    .cdn-footer-wrap .footer-disclaimer-icon {
      width: 24px;
      height: 24px;
      font-size: 10px;
    }

    .cdn-footer-wrap .footer-disclaimer-title {
      font-size: 9px;
    }

    .cdn-footer-wrap .footer-disclaimer-brand {
      padding: 6px 12px;
    }

    .cdn-footer-wrap .footer-disclaimer-brand-text {
      font-size: 10px;
    }

    .cdn-footer-wrap .footer-disclaimer-text {
      font-size: 9px;
      line-height: 1.6;
    }

    .cdn-footer-wrap .footer-disclaimer-trademark {
      font-size: 8px;
    }

    .cdn-footer-wrap .footer-cta-btn {
      font-size: 10px;
      padding: 9px 16px;
    }

    .cdn-footer-wrap .footer-cta-text {
      font-size: 12px;
    }
  }

  /* ============================================ */
  /* RESPONSIVE - EXTRA SMALL (360px) */
  /* ============================================ */
  @media (max-width: 360px) {
    .cdn-footer-wrap .footer-inner {
      padding: 32px 10px 28px;
    }

    .cdn-footer-wrap .footer-logo-img {
      height: 42px;
    }

    .cdn-footer-wrap .footer-tagline {
      font-size: 12px;
    }

    .cdn-footer-wrap .footer-trust-icon {
      width: 34px;
      height: 34px;
      font-size: 16px;
    }

    .cdn-footer-wrap .footer-trust-text strong {
      font-size: 9px;
    }
  }

  /* ============================================ */
  /* REDUCED MOTION */
  /* ============================================ */
  @media (prefers-reduced-motion: reduce) {
    .cdn-footer-wrap *, .cdn-footer-wrap *::before, .cdn-footer-wrap *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }

  /* ============================================ */
  /* SELECTION */
  /* ============================================ */
  .cdn-footer-wrap ::selection {
    background: var(--c-accent);
    color: var(--c-bg);
  }

  .cdn-footer-wrap ::-moz-selection {
    background: var(--c-accent);
    color: var(--c-bg);
  }
