.bg-card.h-full {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
}

.card {
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-25deg);
  transition: none;
  pointer-events: none;
}

.card:hover::before {
  animation: shine 0.75s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

@media (hover: hover) and (min-width: 768px) {
  .navbar-nav .nav-link, 
  .navbar-nav .btn {
    transition: transform 0.3s ease;
  }

  .navbar-nav .nav-link:hover, 
  .navbar-nav .btn:hover {
    transform: scale(1.1);
  }
}


.socials.component {
  background-color: var(--cl-background-primary);
  color: #fff;
  border-radius: 16px;
  padding: 3rem 2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.socials.component .section-title h2 {
  font-size: 2.7rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
  text-align: center;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.socials.component .section-subtitle p {
  font-size: 1.15rem;
  color: #bbb;
  margin-bottom: 2.5rem;
  text-align: center;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.socials.component .list {
  display: grid;
  gap: 2rem;
}

.socials.component .social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(46, 46, 46, 0.7);
  border-radius: 14px;
  padding: 1.5rem 2rem;
  text-decoration: none;
  color: #ccc;
  border: 1px solid #333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  font-weight: 600;
  user-select: none;
  transition: all 0.3s ease;
}

.socials.component .social:hover {
  background: linear-gradient(135deg, rgba(38, 87, 255, 0.15), rgba(38, 87, 255, 0.05));
  color: var(--cl-accent);
  border-color: var(--cl-accent);
  box-shadow: 0 6px 20px rgba(38, 87, 255, 0.3);
  transform: translateY(-3px);
}

.socials.component .social .left {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.15rem;
}

.socials.component .social .left svg {
  fill: currentColor;
  width: 36px;
  height: 36px;
}

.socials.component .social .right svg {
  stroke: currentColor;
  width: 22px;
  height: 22px;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
  shape-rendering: crispEdges;
  vector-effect: non-scaling-stroke;
  stroke-width: 1.5;
}

.socials.component .social:hover .right svg {
  opacity: 1;
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 767px) {
  .socials.component {
    padding: 2rem 1.5rem;
  }

  .socials.component .social {
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.25rem 1rem;
    text-align: center;
  }

  .socials.component .social .right {
    align-self: center;
  }
}
/* =============================================
   FOOTER — custom.css
   AuthCenter.cc — Uses platform theme variables
   ============================================= */

/* ---------- Footer variables mapped to platform theme ---------- */
:root {
  --footer-bg:           var(--cl-background-primary, #0a0a0f);
  --footer-bottom-bg:    var(--cl-background-secondary, #07070b);
  --footer-border-color: var(--cl-border, rgba(124, 58, 237, 0.18));
  --footer-text:         var(--cl-text-muted, #7a7a8c);
  --footer-heading:      var(--cl-text, #ffffff);
  --footer-link:         var(--cl-text-muted, #7a7a8c);
  --footer-link-hover:   var(--cl-text, #ffffff);
  --footer-accent:       var(--cl-accent, #7c3aed);
  --footer-badge-bg:     rgba(255, 255, 255, 0.05);
  --footer-badge-border: var(--cl-border, rgba(255, 255, 255, 0.08));

  /* Social icon colors */
  --discord-color:   #5865f2;
  --telegram-color:  #26a5e4;
  --instagram-color: #e1306c;
  --tiktok-color:    #ffffff;
  --youtube-color:   #ff0000;
  --email-color:     var(--cl-accent, #9d5ff5);
}

/* ---------- Base Footer ---------- */
.exudos-footer {
  background-color: var(--footer-bg);
  border-top: 1px solid var(--footer-border-color);
  box-shadow: 0 -1px 30px rgba(0, 0, 0, 0.3);
  font-family: inherit;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- Top Grid ---------- */
.footer-top {
  padding: 4rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-grid > * {
  align-self: start;
}

/* ---------- Brand Column ---------- */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-logo img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.footer-shop-name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.footer-shop-name .name-primary {
  color: var(--footer-heading);
}

.footer-shop-name .name-accent {
  color: var(--footer-accent);
  margin-left: 0.3rem;
}

.footer-tagline {
  color: var(--footer-text);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0.25rem 0 0.5rem;
  max-width: 300px;
}

/* ---------- Trust Badges ---------- */
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--footer-badge-bg);
  border: 1px solid var(--footer-badge-border);
  color: var(--footer-text);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

/* ---------- Nav Columns ---------- */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-col-title {
  color: var(--footer-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links li a {
  color: var(--footer-link);
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.footer-links li a:hover {
  color: var(--footer-link-hover);
}

/* ---------- Social Links ---------- */
.footer-socials .social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--footer-link);
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.footer-socials li {
  display: flex;
  align-items: center;
}

.footer-socials .social-link:hover {
  color: var(--footer-link-hover);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--footer-badge-bg);
  border: 1px solid var(--footer-badge-border);
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.social-icon svg {
  width: 14px;
  height: 14px;
  display: block;
}

.footer-socials .social-link:hover .social-icon {
  background: rgba(255, 255, 255, 0.08);
}

/* Icons: grey by default, brand color on hover */
.social-icon { color: var(--footer-link); }

.footer-socials .social-link:hover .discord-icon   { color: var(--discord-color); }
.footer-socials .social-link:hover .telegram-icon  { color: var(--telegram-color); }
.footer-socials .social-link:hover .instagram-icon { color: var(--instagram-color); }
.footer-socials .social-link:hover .youtube-icon   { color: var(--youtube-color); }
.footer-socials .social-link:hover .email-icon     { color: var(--footer-accent); }
.footer-socials .social-link:hover .tiktok-icon    { color: var(--tiktok-color); }

/* ---------- Bottom Bar ---------- */
.footer-bottom {
  background-color: var(--footer-bottom-bg);
  border-top: 1px solid var(--footer-border-color);
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copyright {
  color: var(--footer-text);
  font-size: 0.8rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: var(--footer-text);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--footer-link-hover);
}

.footer-bottom-links .separator {
  color: var(--footer-border-color);
  font-size: 0.8rem;
}



/* ---------- Responsive — layout fixe (style PC) ---------- */
@media (max-width: 768px) {
  .footer-container {
    padding: 0 1rem;
  }

  .footer-top {
    padding: 2.5rem 0 2rem;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1.25rem;
  }

  .footer-shop-name {
    font-size: 1rem;
  }

  .footer-tagline {
    font-size: 0.75rem;
  }

  .footer-col-title {
    font-size: 0.75rem;
  }

  .footer-links li a,
  .footer-socials .social-link {
    font-size: 0.75rem;
  }

  .badge-item {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
  }

  .social-icon {
    width: 22px;
    height: 22px;
  }

  .footer-copyright,
  .footer-bottom-links a {
    font-size: 0.7rem;
  }
}