input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

@keyframes fade-in {
  from {
      background-color: rgba(0, 0, 0, 0);
  }
  to {
      background-color: rgba(0, 0, 0, 0.8);
  }
}

@keyframes fade-out {
  from {
      background-color: rgba(0, 0, 0, 0.8);
  }
  to {
      background-color: rgba(0, 0, 0, 0);
  }
}

@keyframes slide-in {
  from {
      transform: translateX(500px);
  }
  to {
      transform: translateX(0px);
  }
}

@keyframes slide-out {
  from {
      transform: translateX(0px);
  }
  to {
      transform: translateX(500px);
  }
}

body.cart-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
}

#cart-drawer[data-state="open"] {
  animation: fade-in 0.4s forwards;
}

#cart-drawer[data-state="closed"] {
  animation: fade-out 0.4s forwards;
}

#cart-drawer[data-state="open"] > div {
  animation: slide-in 0.4s forwards;
}

#cart-drawer[data-state="closed"] > div {
  animation: slide-out 0.4s forwards;
}

.dialog[data-state="open"] {
  animation: fade-in 0.4s forwards;
}

.dialog[data-state="closed"] {
  animation: fade-out 0.4s forwards;
}

.dialog[data-state="open"] > div {
  animation: dialog-in 0.2s forwards;
}

.dialog[data-state="closed"] > div {
  animation: dialog-out 0.2s forwards;
}

@keyframes dialog-in {
  from {
      opacity: 0;
      scale: 50%;
  }
  to {
      opacity: 1;
      scale: 100%;
  }
}

@keyframes dialog-out {
  from {
      opacity: 1;
      scale: 100%;
  }
  to {
      opacity: 0;
      scale: 50%;
  }
}

.reveal-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.centralcart-content iframe {
  aspect-ratio: 16 / 9;
  border-radius: 0.5rem;
  width: 100%;
  height: auto;
}

.grid-background {
  background-image: linear-gradient(to right,hsla(0,0%,100%,.03) 1px,transparent 1px),linear-gradient(to bottom,hsla(0,0%,100%,.03) 1px,transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 85% at 40% 30%, #000 0%, #fff0 110%)
}

.custom-bg-mask {
	mask-image: linear-gradient(hsl(var(--background)), rgba(0, 0, 0, 0.3), rgb(0, 0, 0, 0));
}

/* =============================================================================
   HERO TYPOGRAPHY — premium / gamer / clean
============================================================================= */

.hero-copy {
  max-width: 72rem;
}

.hero-title {
  font-family: 'Kanit', system-ui, sans-serif;
  font-weight: 800;
  font-style: italic;
  line-height: 0.96;
  letter-spacing: 0.01em;
  text-wrap: balance;
  color: hsl(0 0% 100% / 0.97);
  text-shadow:
    0 6px 22px hsl(0 0% 0% / 0.34),
    0 1px 0 hsl(0 0% 100% / 0.05);
}

.hero-title-highlight {
  color: hsl(var(--primary));
  text-shadow:
    0 0 14px hsl(var(--primary) / 0.34),
    0 0 28px hsl(var(--primary) / 0.18),
    0 8px 20px hsl(0 0% 0% / 0.18);
}

.hero-subtitle {
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.82;
  letter-spacing: 0.01em;
  color: hsl(0 0% 100% / 0.66);
  text-wrap: pretty;
  text-shadow: 0 3px 14px hsl(0 0% 0% / 0.18);
}

/* =============================================================================
   TERMS PAGE + CHECKOUT TERMS — legal premium / glass / neon
============================================================================= */

.terms-page {
  position: relative;
}

.terms-hero {
  margin: 0 auto 2rem;
  max-width: 58rem;
  text-align: center;
}

.terms-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: hsl(var(--primary));
  text-shadow: 0 0 18px hsl(var(--primary) / 0.22);
  margin-bottom: 0.85rem;
}

.terms-title {
  font-family: 'Kanit', system-ui, sans-serif;
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  font-weight: 800;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: hsl(0 0% 100% / 0.98);
  text-shadow:
    0 8px 32px hsl(0 0% 0% / 0.34),
    0 0 26px hsl(var(--primary) / 0.12);
  margin: 0 0 1rem;
}

.terms-lead {
  max-width: 44rem;
  margin: 0 auto;
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.85;
  color: hsl(0 0% 100% / 0.66);
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.terms-card {
  grid-column: span 12;
  position: relative;
  padding: 1.35rem 1.25rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid hsl(0 0% 100% / 0.06);
  background: linear-gradient(
    180deg,
    rgb(var(--background) / 0.7) 0%,
    rgb(var(--background) / 0.84) 100%
  );
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  box-shadow:
    0 0 0 1px hsl(0 0% 100% / 0.03) inset,
    0 18px 44px hsl(0 0% 0% / 0.26),
    0 0 26px hsl(var(--primary) / 0.08);
}

.terms-card--highlight {
  border-color: hsl(var(--primary) / 0.2);
  box-shadow:
    0 0 0 1px hsl(var(--primary) / 0.08) inset,
    0 18px 44px hsl(0 0% 0% / 0.28),
    0 0 34px hsl(var(--primary) / 0.14);
}

.terms-section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 1.75rem;
  padding: 0 0.7rem;
  margin-bottom: 0.9rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--primary) / 0.2);
  background: hsl(var(--primary) / 0.08);
  color: hsl(var(--primary));
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.terms-section-title {
  font-family: 'Kanit', system-ui, sans-serif;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.015em;
  color: hsl(0 0% 100% / 0.96);
  margin: 0 0 0.85rem;
}

.terms-card p {
  margin: 0 0 0.85rem;
  font-size: 0.96rem;
  line-height: 1.8;
  color: hsl(0 0% 100% / 0.7);
}

.terms-card p:last-child {
  margin-bottom: 0;
}

.terms-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.terms-list li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: hsl(0 0% 100% / 0.72);
}

.terms-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 9999px;
  background: hsl(var(--primary));
  box-shadow: 0 0 12px hsl(var(--primary) / 0.45);
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  .terms-card {
    grid-column: span 6;
    padding: 1.5rem 1.45rem 1.35rem;
  }

  .terms-card--highlight {
    grid-column: span 12;
  }
}

@media (min-width: 1200px) {
  .terms-card--highlight {
    grid-column: span 8;
  }
}

.checkout-terms-card {
  margin-bottom: 0.55rem;
  padding: 0.95rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid hsl(var(--primary) / 0.18);
  background: linear-gradient(
    180deg,
    hsl(0 0% 100% / 0.04) 0%,
    hsl(var(--primary) / 0.05) 100%
  );
  box-shadow:
    0 0 0 1px hsl(0 0% 100% / 0.03) inset,
    0 10px 28px hsl(0 0% 0% / 0.18),
    0 0 20px hsl(var(--primary) / 0.06);
}

.checkout-terms-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
  border-radius: 0.35rem;
  border: 1px solid hsl(var(--primary) / 0.42);
  background: hsl(0 0% 100% / 0.03);
  box-shadow:
    0 0 0 1px hsl(0 0% 100% / 0.03) inset,
    0 0 12px hsl(var(--primary) / 0.08);
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
}

.checkout-terms-checkbox:hover {
  transform: translateY(-1px);
  border-color: hsl(var(--primary) / 0.58);
  box-shadow:
    0 0 0 1px hsl(var(--primary) / 0.08) inset,
    0 0 16px hsl(var(--primary) / 0.18);
}

.checkout-terms-checkbox:checked {
  background-color: hsl(var(--primary));
  border-color: hsl(var(--primary));
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M6.6 11.2 3.4 8l-1.1 1.1 4.3 4.3 7-7-1.1-1.1z'/%3E%3C/svg%3E");
  background-size: 0.82rem;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow:
    0 0 0 1px hsl(var(--primary) / 0.15) inset,
    0 0 18px hsl(var(--primary) / 0.26);
}

.checkout-terms-label {
  color: hsl(0 0% 100% / 0.72);
  line-height: 1.65;
}

.checkout-terms-link {
  color: hsl(0 0% 100% / 0.96);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid hsl(var(--primary) / 0.45);
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    text-shadow 0.25s ease;
}

.checkout-terms-link:hover {
  color: hsl(var(--primary));
  border-color: hsl(var(--primary));
  text-shadow: 0 0 12px hsl(var(--primary) / 0.35);
}

@media (min-width: 640px) {
  .hero-title {
    letter-spacing: 0.015em;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    line-height: 0.92;
    letter-spacing: 0.02em;
  }

  .hero-subtitle {
    line-height: 1.9;
  }
}

@keyframes loading {
  0% {
      left: -50%;
  }

  to {
      left: 100%;
  }
}

/* Top donators shine */
.top-donators-pill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  pointer-events: none;
  transition: left 0.5s ease-in;
}

.top-donators-pill:hover::after {
  left: 120%;
  transition: left 0.6s ease-out;
}

.detail-dash {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.1) 50%, hsl(var(--foreground) / 0) 0%);
  background-position: center bottom;
  background-size: 16px;
  background-repeat: repeat-x;
  width: 100%;
  height: 1px;
}

/* Sidebar categories */
.custom-scrollbar::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: hsl(var(--primary));
  border-radius: 0.25rem;
}

.cat-dropdown {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: top;
}

.cat-dropdown:not(.hidden) {
  animation: slideDown 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: scaleY(0);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

#mobile-categories-dropdown:not(.hidden) {
  animation: slideInMobile 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInMobile {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-subcategories:not(.hidden) {
  animation: slideInSub 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInSub {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Sidebar categories */

/* —— Premium footer / brand (gamer neon) —— */
.footer-bg {
  width: 100%;
  height: 420px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, hsl(var(--primary) / 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 90%, rgba(168, 85, 247, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 80% 90%, rgba(139, 92, 246, 0.18) 0%, transparent 50%);
  filter: blur(48px);
  opacity: 0.85;
}

.footer-glass {
  background: linear-gradient(
    180deg,
    rgb(var(--background) / 0.42) 0%,
    rgb(var(--background) / 0.78) 100%
  );
  backdrop-filter: blur(20px) saturate(1.35);
  -webkit-backdrop-filter: blur(20px) saturate(1.35);
  box-shadow:
    inset 0 1px 0 hsl(0 0% 100% / 0.06),
    0 -24px 80px hsl(var(--primary) / 0.08);
}

@keyframes footer-neon-sweep {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.footer-neon-line {
  height: 1px;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    hsl(var(--primary) / 0.2) 15%,
    hsl(var(--primary)) 45%,
    #f0e7ff 50%,
    hsl(var(--primary)) 55%,
    hsl(var(--primary) / 0.2) 85%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: footer-neon-sweep 7s linear infinite;
}

.footer-neon-line--dim {
  opacity: 0.45;
  animation-duration: 10s;
}

.brand-title-text {
  font-family: 'Kanit', system-ui, sans-serif;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 1.05;
  background: linear-gradient(
    120deg,
    #fafafa 0%,
    hsl(var(--primary)) 42%,
    #e9d5ff 55%,
    hsl(var(--primary)) 68%,
    #fafafa 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 0 28px hsl(var(--primary) / 0.5),
    0 0 56px hsl(var(--primary) / 0.22);
  transition: text-shadow 0.35s ease, background-position 0.6s ease;
}

a:hover .brand-title-text {
  text-shadow:
    0 0 36px hsl(var(--primary) / 0.65),
    0 0 72px hsl(var(--primary) / 0.3);
  animation: brand-shimmer 2.2s ease-in-out infinite;
}

@keyframes brand-shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgb(var(--muted-foreground));
  letter-spacing: 0.01em;
}

.footer-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  border-radius: 0.65rem;
  border: 1px solid hsl(0 0% 100% / 0.06);
  background: hsl(0 0% 100% / 0.03);
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-trust-item:hover {
  border-color: hsl(var(--primary) / 0.45);
  background: hsl(var(--primary) / 0.08);
  box-shadow:
    0 0 0 1px hsl(var(--primary) / 0.15),
    0 8px 28px hsl(var(--primary) / 0.12);
  transform: translateY(-2px);
}

.footer-trust-item i,
.footer-trust-item svg {
  flex-shrink: 0;
  color: hsl(var(--primary));
  filter: drop-shadow(0 0 6px hsl(var(--primary) / 0.5));
}

.footer-trust-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: hsl(0 0% 100% / 0.88);
}

.footer-trust-sublabel {
  font-size: 0.7rem;
  margin-top: 0.15rem;
  color: rgb(var(--muted-foreground));
  letter-spacing: 0.02em;
}

.footer-side-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.9rem;
  width: 100%;
}

@media (min-width: 640px) {
  .footer-side-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.footer-panel {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid hsl(0 0% 100% / 0.06);
  background: linear-gradient(
    180deg,
    hsl(0 0% 100% / 0.035) 0%,
    hsl(var(--primary) / 0.035) 100%
  );
  box-shadow:
    0 0 0 1px hsl(0 0% 100% / 0.03) inset,
    0 12px 30px hsl(0 0% 0% / 0.18);
}

.footer-panel--social {
  padding-top: 0.85rem;
}

.footer-panel-title {
  margin: 0 0 0.85rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: hsl(0 0% 100% / 0.48);
}

@keyframes footer-status-pulse {
  0%,
  100% {
    opacity: 0.78;
    transform: scale(1);
    box-shadow:
      0 0 0 0 hsl(142 79% 45% / 0.24),
      0 0 10px hsl(142 79% 45% / 0.38);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
    box-shadow:
      0 0 0 6px hsl(142 79% 45% / 0),
      0 0 14px hsl(142 79% 45% / 0.48);
  }
}

.footer-status-list {
  display: grid;
  gap: 0.6rem;
}

.footer-status-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 2.15rem;
  padding: 0.55rem 0.7rem;
  border-radius: 0.75rem;
  border: 1px solid hsl(0 0% 100% / 0.05);
  background: hsl(0 0% 100% / 0.03);
}

.footer-status-dot {
  position: relative;
  width: 0.52rem;
  height: 0.52rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background: hsl(142 79% 45%);
  animation: footer-status-pulse 2.2s ease-in-out infinite;
}

.footer-status-text {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: hsl(0 0% 100% / 0.78);
}

.footer-payment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

@media (min-width: 1024px) {
  .footer-payment-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.footer-payment-card {
  min-height: 4.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 0.5rem;
  border-radius: 0.8rem;
  border: 1px solid hsl(0 0% 100% / 0.06);
  background: linear-gradient(
    180deg,
    hsl(0 0% 100% / 0.035) 0%,
    hsl(var(--primary) / 0.04) 100%
  );
  backdrop-filter: blur(12px) saturate(1.15);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.footer-payment-card:hover {
  transform: translateY(-3px);
  border-color: hsl(var(--primary) / 0.3);
  background: hsl(var(--primary) / 0.08);
  box-shadow:
    0 0 0 1px hsl(var(--primary) / 0.12) inset,
    0 12px 26px hsl(0 0% 0% / 0.2),
    0 0 22px hsl(var(--primary) / 0.16);
}

.footer-payment-logo-wrap {
  width: 100%;
  height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-payment-logo {
  width: 100%;
  max-width: 4.9rem;
  max-height: 1.35rem;
  object-fit: contain;
  object-position: center;
  filter:
    drop-shadow(0 0 6px hsl(0 0% 100% / 0.04))
    drop-shadow(0 0 12px hsl(var(--primary) / 0.12));
  transition: transform 0.28s ease, filter 0.28s ease;
}

.footer-payment-logo--bitcoin {
  max-width: 1.45rem;
  max-height: 1.45rem;
}

.footer-payment-card:hover .footer-payment-logo {
  transform: translateY(-1px) scale(1.03);
  filter:
    drop-shadow(0 0 8px hsl(0 0% 100% / 0.06))
    drop-shadow(0 0 16px hsl(var(--primary) / 0.18));
}

.footer-payment-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: hsl(0 0% 100% / 0.72);
  text-align: center;
}

@keyframes footer-social-idle {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

.footer-social-link {
  position: relative;
  width: 2.65rem;
  height: 2.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: hsl(0 0% 100% / 0.04);
  border: 1px solid hsl(var(--primary) / 0.25);
  box-shadow: 0 0 0 0 hsl(var(--primary) / 0);
  animation: footer-social-idle 2.8s ease-in-out infinite;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.footer-social-link:nth-child(2) {
  animation-delay: 0.15s;
}
.footer-social-link:nth-child(3) {
  animation-delay: 0.3s;
}
.footer-social-link:nth-child(4) {
  animation-delay: 0.45s;
}
.footer-social-link:nth-child(5) {
  animation-delay: 0.6s;
}

.footer-social-link::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, hsl(var(--primary) / 0.5), transparent 50%, hsl(var(--primary) / 0.35));
  opacity: 0;
  z-index: -1;
  filter: blur(10px);
  transition: opacity 0.35s ease;
}

.footer-social-link:hover {
  animation: none;
  transform: translateY(-5px) scale(1.08);
  border-color: hsl(var(--primary) / 0.75);
  background: hsl(var(--primary) / 0.12);
  box-shadow:
    0 0 28px hsl(var(--primary) / 0.45),
    0 0 0 1px hsl(var(--primary) / 0.2);
}

.footer-social-link:hover::before {
  opacity: 1;
}

.footer-social-link svg {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-social-link:hover svg {
  transform: scale(1.1);
}

.footer-copy-bar {
  background: hsl(0 0% 0% / 0.25);
  border-top: 1px solid hsl(0 0% 100% / 0.04);
}

.footer-copyright-text {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: hsl(0 0% 100% / 0.38);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
}

.footer-copyright-name {
  font-weight: 600;
  letter-spacing: 0.18em;
  color: hsl(0 0% 100% / 0.55);
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.footer-copyright-text:hover .footer-copyright-name {
  color: hsl(0 0% 100% / 0.78);
  text-shadow: 0 0 18px hsl(var(--primary) / 0.35);
}

.footer-copyright-sep {
  color: hsl(var(--primary) / 0.55);
  font-weight: 300;
}

.footer-terms-link {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(0 0% 100% / 0.45);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s ease;
}

.footer-terms-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, hsl(var(--primary)), transparent);
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.35s ease, opacity 0.35s ease;
  opacity: 0.6;
}

.footer-terms-link:hover {
  color: hsl(var(--primary));
}

.footer-terms-link:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

/* =============================================================================
   HEADER PREMIUM — grid: contador | wordmark | menu + utilidades
============================================================================= */

.nav-header-premium {
  box-shadow: 0 8px 32px hsl(0 0% 0% / 0.25);
}

.nav-premium-grid {
  display: grid;
  gap: 0.5rem 0.65rem;
  padding: 0.65rem 0 0.35rem;
  align-items: center;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr) auto;
  grid-template-areas:
    'live brand iconsMob'
    'menu menu menu';
}

@media (min-width: 1024px) {
  .nav-premium-grid {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    grid-template-areas: 'live brand menu';
    column-gap: 1.25rem;
    padding: 0.85rem 0 0.5rem;
    row-gap: 0;
  }
}

.nav-area-live {
  grid-area: live;
  justify-self: start;
  min-width: 0;
}

.nav-area-brand {
  grid-area: brand;
  justify-self: center;
  text-align: center;
  text-decoration: none;
  line-height: 1;
}

.nav-area-icons-mobile {
  grid-area: iconsMob;
  justify-self: end;
  align-self: center;
}

@media (min-width: 1024px) {
  .nav-area-icons-mobile {
    display: none !important;
  }
}

.nav-area-menu-cluster {
  grid-area: menu;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
  min-width: 0;
}

@media (min-width: 1024px) {
  .nav-area-menu-cluster {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem 1rem;
    flex-wrap: wrap;
  }
}

/* Wordmark BRUXÃO / MENU */
.nav-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.02rem;
  min-width: max-content;
  padding: 0.12rem 0.85rem;
  border-radius: 0.65rem;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.35s ease;
}

.nav-wordmark:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 0 14px hsl(var(--primary) / 0.45));
}

.nav-wordmark-line {
  display: inline-block;
  font-family: 'Kanit', system-ui, sans-serif;
  font-weight: 800;
  font-style: italic;
  line-height: 0.9;
  transform-origin: center;
}

.nav-wordmark-line--1 {
  font-size: clamp(1.18rem, 4.6vw, 1.72rem);
  letter-spacing: 0.16em;
  transform: scaleX(1.12);
  background: linear-gradient(
    95deg,
    #fafafa 0%,
    hsl(var(--primary)) 45%,
    #e8e0ff 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 28px hsl(var(--primary) / 0.35);
}

.nav-wordmark-line--2 {
  font-size: clamp(0.76rem, 2.4vw, 0.98rem);
  letter-spacing: 0.52em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 600;
  transform: scaleX(1.1);
  color: hsl(0 0% 100% / 0.88);
  text-shadow:
    0 0 12px hsl(var(--primary) / 0.4),
    0 0 24px hsl(var(--primary) / 0.15);
}

@media (min-width: 1024px) {
  .nav-wordmark {
    padding-inline: 1.15rem;
  }

  .nav-wordmark-line--1 {
    font-size: 1.88rem;
    letter-spacing: 0.18em;
  }

  .nav-wordmark-line--2 {
    font-size: 0.98rem;
    letter-spacing: 0.72em;
  }
}

/* Menu principal */
.nav-main-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-main-menu--scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.2rem;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.nav-main-menu--scroll::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1024px) {
  .nav-main-menu--scroll {
    overflow: visible;
    mask-image: none;
    padding-bottom: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

.nav-main-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.55rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(0 0% 100% / 0.78);
  text-decoration: none;
  white-space: nowrap;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  transition:
    color 0.3s ease,
    text-shadow 0.3s ease;
}

@media (min-width: 1280px) {
  .nav-main-link {
    font-size: 0.68rem;
    padding: 0.5rem 0.65rem;
  }
}

.nav-main-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0.1rem;
  width: 70%;
  height: 2px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, hsl(var(--primary)), transparent);
  box-shadow: 0 0 12px hsl(var(--primary) / 0.7);
  opacity: 0;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
}

.nav-main-link:hover {
  color: hsl(var(--primary));
  text-shadow: 0 0 16px hsl(var(--primary) / 0.35);
}

.nav-main-link:hover::after {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
}

.nav-main-link--active {
  color: hsl(0 0% 100% / 0.95);
  text-shadow: 0 0 14px hsl(var(--primary) / 0.45);
}

.nav-main-link--active::after {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
}

.nav-main-link--btn.nav-main-link--active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Ícones utilitários */
.nav-util-strip {
  list-style: none;
  margin: 0;
  padding: 0;
}

@keyframes nav-icon-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

.nav-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--primary) / 0.22);
  background: linear-gradient(
    180deg,
    hsl(0 0% 100% / 0.07) 0%,
    hsl(var(--primary) / 0.06) 100%
  );
  backdrop-filter: blur(14px) saturate(1.25);
  -webkit-backdrop-filter: blur(14px) saturate(1.25);
  color: hsl(0 0% 100% / 0.85);
  box-shadow:
    0 0 0 1px hsl(0 0% 100% / 0.04) inset,
    0 10px 24px hsl(0 0% 0% / 0.22),
    0 0 20px hsl(var(--primary) / 0.12);
  animation: nav-icon-float 4.8s ease-in-out infinite;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    color 0.25s ease,
    transform 0.3s ease;
}

.nav-icon-btn:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: hsl(var(--primary) / 0.5);
  background: linear-gradient(
    180deg,
    hsl(var(--primary) / 0.18) 0%,
    hsl(var(--primary) / 0.1) 100%
  );
  box-shadow:
    0 0 0 1px hsl(var(--primary) / 0.16) inset,
    0 14px 28px hsl(0 0% 0% / 0.28),
    0 0 24px hsl(var(--primary) / 0.22);
  color: hsl(var(--primary));
}

.nav-icon-btn--premium[data-state="open"],
.nav-profile-btn[data-state="open"] {
  transform: translateY(-1px);
  border-color: hsl(var(--primary) / 0.58);
  background: linear-gradient(
    180deg,
    hsl(var(--primary) / 0.2) 0%,
    hsl(var(--primary) / 0.12) 100%
  );
  box-shadow:
    0 0 0 1px hsl(var(--primary) / 0.18) inset,
    0 0 28px hsl(var(--primary) / 0.28);
  color: hsl(var(--primary));
}

.nav-icon-btn--accent:hover {
  color: hsl(0 0% 100% / 0.95);
  background: hsl(var(--primary) / 0.85);
  border-color: hsl(var(--primary) / 0.6);
  box-shadow: 0 0 22px hsl(var(--primary) / 0.45);
}

.nav-profile-btn {
  width: 2.45rem;
  height: 2.45rem;
  padding: 0;
}

.nav-profile-avatar {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 9999px;
  box-shadow: 0 0 0 1px hsl(0 0% 100% / 0.12);
}

.nav-profile-fallback {
  width: 1.65rem;
  height: 1.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary) / 0.7));
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 0 16px hsl(var(--primary) / 0.35);
}

.support-flyout,
.profile-flyout {
  background: linear-gradient(
    180deg,
    rgb(var(--background) / 0.96) 0%,
    rgb(var(--background) / 0.92) 100%
  );
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  border: 1px solid hsl(var(--primary) / 0.18);
  box-shadow:
    0 0 0 1px hsl(0 0% 100% / 0.04) inset,
    0 20px 48px hsl(0 0% 0% / 0.38),
    0 0 26px hsl(var(--primary) / 0.12);
}

/* =============================================================================
   BARRA FIXA INFERIOR — prova social / confiança
============================================================================= */

.has-floating-proof-bar {
  padding-bottom: 6.5rem;
}

@media (max-width: 640px) {
  .has-floating-proof-bar {
    padding-bottom: 7.75rem;
  }
}

.floating-proof-bar {
  position: fixed;
  left: 50%;
  bottom: 0.85rem;
  transform: translateX(-50%);
  width: min(calc(100vw - 1rem), 74rem);
  z-index: 35;
  pointer-events: none;
}

.floating-proof-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  padding: 0.5rem;
  border-radius: 1rem;
  border-top: 1px solid hsl(var(--primary) / 0.5);
  border-left: 1px solid hsl(0 0% 100% / 0.06);
  border-right: 1px solid hsl(0 0% 100% / 0.06);
  border-bottom: 1px solid hsl(0 0% 100% / 0.04);
  background: linear-gradient(
    180deg,
    rgb(var(--background) / 0.72) 0%,
    rgb(var(--background) / 0.82) 100%
  );
  backdrop-filter: blur(20px) saturate(1.35);
  -webkit-backdrop-filter: blur(20px) saturate(1.35);
  box-shadow:
    0 0 0 1px hsl(var(--primary) / 0.08) inset,
    0 16px 40px hsl(0 0% 0% / 0.32),
    0 0 34px hsl(var(--primary) / 0.14);
  pointer-events: auto;
}

.floating-proof-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  padding: 0.7rem 0.8rem;
  border-radius: 0.85rem;
  border: 1px solid hsl(0 0% 100% / 0.05);
  background: hsl(0 0% 100% / 0.035);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.floating-proof-item:hover {
  transform: translateY(-2px);
  border-color: hsl(var(--primary) / 0.28);
  background: hsl(var(--primary) / 0.08);
  box-shadow:
    0 0 0 1px hsl(var(--primary) / 0.12) inset,
    0 0 24px hsl(var(--primary) / 0.16);
}

.floating-proof-icon {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 9999px;
  color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.1);
  box-shadow:
    0 0 0 1px hsl(var(--primary) / 0.15) inset,
    0 0 18px hsl(var(--primary) / 0.18);
}

.floating-proof-copy {
  min-width: 0;
}

.floating-proof-copy strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(0 0% 100% / 0.92);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .floating-proof-bar__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .floating-proof-bar {
    width: min(calc(100vw - 0.75rem), 40rem);
    bottom: 0.55rem;
  }

  .floating-proof-bar__inner {
    gap: 0.45rem;
    padding: 0.45rem;
  }

  .floating-proof-item {
    gap: 0.5rem;
    padding: 0.55rem 0.6rem;
  }

  .floating-proof-icon {
    width: 1.75rem;
    height: 1.75rem;
  }

  .floating-proof-copy strong {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }
}

/* =============================================================================
   LIVE USERS WIDGET — navbar (glass + neon)
============================================================================= */

.luw-root--nav {
  position: relative;
  z-index: 2;
  flex-shrink: 1;
  min-width: 0;
  max-width: min(13.5rem, 58vw);
}

@media (min-width: 640px) {
  .luw-root--nav {
    max-width: 15rem;
  }
}

@media (min-width: 1024px) {
  .luw-root--nav {
    max-width: 17rem;
  }
}

.luw-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.5rem 0.35rem 0.35rem;
  border-radius: 0.75rem;
  background: linear-gradient(
    135deg,
    hsl(0 0% 6% / 0.52) 0%,
    hsl(var(--primary) / 0.07) 48%,
    hsl(0 0% 4% / 0.58) 100%
  );
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border: 1px solid hsl(var(--primary) / 0.26);
  box-shadow:
    0 0 0 1px hsl(0 0% 100% / 0.04) inset,
    0 8px 28px hsl(0 0% 0% / 0.28),
    0 0 22px hsl(var(--primary) / 0.1);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.luw-root--nav:hover .luw-inner {
  border-color: hsl(var(--primary) / 0.38);
  box-shadow:
    0 0 0 1px hsl(0 0% 100% / 0.05) inset,
    0 10px 32px hsl(0 0% 0% / 0.32),
    0 0 30px hsl(var(--primary) / 0.16);
}

.luw-root--nav .luw-inner {
  gap: 0.5rem;
  padding: 0.4rem 0.55rem 0.4rem 0.4rem;
}

@media (min-width: 640px) {
  .luw-root--nav .luw-inner {
    gap: 0.6rem;
    padding: 0.45rem 0.65rem 0.45rem 0.45rem;
  }
}

.luw-globe-wrap {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  transform-origin: center;
}

@media (min-width: 640px) {
  .luw-globe-wrap {
    width: 50px;
    height: 50px;
  }
}

.luw-canvas {
  display: block;
  border-radius: 50%;
  opacity: 0.96;
}

.luw-globe-ring {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1px solid hsl(var(--primary) / 0.22);
  box-shadow: 0 0 14px hsl(var(--primary) / 0.12);
  pointer-events: none;
  animation: luw-ring-pulse 3.2s ease-in-out infinite;
}

@keyframes luw-ring-pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.88;
    transform: scale(1.025);
  }
}

.luw-root--nav .luw-globe-wrap {
  animation: luw-globe-breathe 5s ease-in-out infinite;
}

@keyframes luw-globe-breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.028);
  }
}

.luw-copy {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.luw-live-row {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.luw-pulse-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: hsl(var(--primary));
  box-shadow:
    0 0 6px hsl(var(--primary) / 0.85),
    0 0 12px hsl(var(--primary) / 0.45);
  animation: luw-dot-pulse 1.65s ease-in-out infinite;
}

@keyframes luw-dot-pulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

.luw-live-label {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: hsl(0 0% 100% / 0.7);
  line-height: 1;
}

@media (min-width: 640px) {
  .luw-live-label {
    font-size: 0.5625rem;
    letter-spacing: 0.2em;
  }
}

.luw-count-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.2rem 0.35rem;
  line-height: 1.15;
}

.luw-count-suffix {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: hsl(0 0% 100% / 0.48);
}

@media (min-width: 640px) {
  .luw-count-suffix {
    font-size: 0.625rem;
  }
}

.luw-sub {
  margin: 0;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: hsl(0 0% 100% / 0.38);
  line-height: 1.2;
}

@media (min-width: 640px) {
  .luw-sub {
    font-size: 0.5625rem;
  }
}

.luw-count {
  font-family: 'Kanit', system-ui, sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: hsl(0 0% 98% / 0.95);
  text-shadow: 0 0 14px hsl(var(--primary) / 0.28);
  transition: text-shadow 0.35s ease;
}

@media (min-width: 640px) {
  .luw-count {
    font-size: 1.05rem;
  }
}

.luw-root--nav:hover .luw-count {
  text-shadow: 0 0 20px hsl(var(--primary) / 0.38);
}

@media (prefers-reduced-motion: reduce) {
  .luw-globe-ring,
  .luw-pulse-dot,
  .luw-root--nav .luw-globe-wrap,
  .nav-icon-btn {
    animation: none;
  }

  .luw-inner,
  .nav-icon-btn,
  .floating-proof-item,
  .nav-wordmark {
    transition: none;
  }
}

/* =============================================================================
   CYBER FOOTER — premium / high-end / gamer
============================================================================= */

.cf-aura {
  position: absolute;
  inset: auto 0 0;
  top: -18rem;
  pointer-events: none;
  overflow: hidden;
}

.cf-aura-orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(64px);
  opacity: 0.55;
}

.cf-aura-orb--left {
  width: 26rem;
  height: 20rem;
  left: -2rem;
  top: 5rem;
  background: radial-gradient(circle, hsl(var(--primary) / 0.34) 0%, transparent 72%);
}

.cf-aura-orb--right {
  width: 24rem;
  height: 18rem;
  right: -3rem;
  top: 1rem;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.28) 0%, transparent 72%);
}

.cf-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid hsl(0 0% 100% / 0.06);
  background:
    linear-gradient(180deg, rgb(var(--background) / 0.46) 0%, rgb(var(--background) / 0.88) 100%);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  box-shadow:
    inset 0 1px 0 hsl(0 0% 100% / 0.05),
    0 -24px 80px hsl(var(--primary) / 0.08);
}

.cf-top-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    hsl(var(--primary) / 0.18) 18%,
    hsl(var(--primary)) 50%,
    hsl(var(--primary) / 0.18) 82%,
    transparent 100%
  );
  box-shadow: 0 0 18px hsl(var(--primary) / 0.28);
}

.cf-shell {
  position: relative;
  z-index: 1;
  padding-top: 2.4rem;
  padding-bottom: 1.6rem;
}

.cf-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 1100px) {
  .cf-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 1.1rem;
    align-items: start;
  }
}

.cf-col {
  min-width: 0;
}

.cf-panel,
.cf-col--brand {
  padding: 1.15rem;
  border-radius: 1.15rem;
  border: 1px solid hsl(0 0% 100% / 0.06);
  background: linear-gradient(
    180deg,
    hsl(0 0% 100% / 0.04) 0%,
    hsl(var(--primary) / 0.04) 100%
  );
  box-shadow:
    0 0 0 1px hsl(0 0% 100% / 0.03) inset,
    0 18px 44px hsl(0 0% 0% / 0.24);
}

.cf-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 4rem;
  margin-bottom: 1rem;
}

.cf-brand-logo {
  width: auto;
  max-width: min(100%, 17rem);
  max-height: 4rem;
  object-fit: contain;
  filter:
    drop-shadow(0 0 12px hsl(var(--primary) / 0.24))
    drop-shadow(0 0 28px hsl(var(--primary) / 0.12));
}

.cf-brand-fallback {
  font-family: 'Kanit', system-ui, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.08em;
  color: hsl(0 0% 100% / 0.95);
  text-shadow:
    0 0 18px hsl(var(--primary) / 0.28),
    0 0 36px hsl(var(--primary) / 0.12);
}

.cf-description {
  margin: 0 0 1.25rem;
  max-width: 32rem;
  font-size: 0.98rem;
  line-height: 1.8;
  color: hsl(0 0% 100% / 0.7);
}

.cf-trust-grid {
  display: grid;
  gap: 0.7rem;
}

@media (min-width: 640px) {
  .cf-trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.cf-trust-card,
.cf-status-card,
.cf-proof-card,
.cf-payment-card,
.cf-bottom-status-item {
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.cf-trust-card {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.9rem 0.9rem 0.95rem;
  border-radius: 0.9rem;
  border: 1px solid hsl(0 0% 100% / 0.05);
  background: hsl(0 0% 100% / 0.03);
}

.cf-trust-card:hover,
.cf-status-card:hover,
.cf-proof-card:hover,
.cf-payment-card:hover,
.cf-bottom-status-item:hover {
  transform: translateY(-2px);
  border-color: hsl(var(--primary) / 0.26);
  box-shadow:
    0 0 0 1px hsl(var(--primary) / 0.1) inset,
    0 0 26px hsl(var(--primary) / 0.14);
}

.cf-trust-icon,
.cf-proof-icon {
  flex-shrink: 0;
  color: hsl(var(--primary));
  filter: drop-shadow(0 0 8px hsl(var(--primary) / 0.4));
}

.cf-trust-title,
.cf-status-title,
.cf-proof-title,
.cf-bottom-status-title {
  margin: 0 0 0.22rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(0 0% 100% / 0.9);
}

.cf-trust-text,
.cf-status-text,
.cf-proof-text,
.cf-bottom-status-text {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.6;
  color: hsl(0 0% 100% / 0.56);
}

.cf-panel-kicker {
  margin: 0 0 0.9rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsl(0 0% 100% / 0.52);
}

@keyframes cf-status-pulse {
  0%,
  100% {
    opacity: 0.78;
    transform: scale(1);
    box-shadow:
      0 0 0 0 hsl(142 72% 46% / 0.22),
      0 0 10px hsl(142 72% 46% / 0.36);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
    box-shadow:
      0 0 0 6px hsl(142 72% 46% / 0),
      0 0 14px hsl(142 72% 46% / 0.46);
  }
}

.cf-status-list,
.cf-proof-grid {
  display: grid;
  gap: 0.72rem;
}

.cf-status-card,
.cf-proof-card {
  display: flex;
  align-items: flex-start;
  gap: 0.72rem;
  padding: 0.88rem 0.92rem;
  border-radius: 0.9rem;
  border: 1px solid hsl(0 0% 100% / 0.05);
  background: hsl(0 0% 100% / 0.03);
}

.cf-status-dot {
  width: 0.54rem;
  height: 0.54rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background: hsl(142 72% 46%);
  box-shadow: 0 0 12px hsl(142 72% 46% / 0.4);
  animation: cf-status-pulse 2.2s ease-in-out infinite;
  margin-top: 0.38rem;
}

.cf-meta-block {
  margin-top: 1.1rem;
}

.cf-payment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

@media (min-width: 640px) {
  .cf-payment-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.cf-payment-card {
  min-height: 4.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 0.6rem;
  border-radius: 0.95rem;
  border: 1px solid hsl(0 0% 100% / 0.05);
  background: linear-gradient(
    180deg,
    hsl(0 0% 100% / 0.035) 0%,
    hsl(var(--primary) / 0.04) 100%
  );
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
}

.cf-payment-logo-wrap {
  width: 100%;
  height: 1.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cf-payment-logo {
  width: 100%;
  max-width: 5rem;
  max-height: 1.45rem;
  object-fit: contain;
  object-position: center;
  filter:
    drop-shadow(0 0 6px hsl(0 0% 100% / 0.04))
    drop-shadow(0 0 14px hsl(var(--primary) / 0.12));
  transition: transform 0.28s ease, filter 0.28s ease;
}

.cf-payment-logo--bitcoin {
  max-width: 1.55rem;
  max-height: 1.55rem;
}

.cf-payment-card:hover .cf-payment-logo {
  transform: translateY(-1px) scale(1.03);
  filter:
    drop-shadow(0 0 8px hsl(0 0% 100% / 0.06))
    drop-shadow(0 0 18px hsl(var(--primary) / 0.18));
}

.cf-payment-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: hsl(0 0% 100% / 0.72);
  text-align: center;
}

@keyframes cf-social-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

.cf-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.cf-social-link {
  position: relative;
  width: 2.8rem;
  height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid hsl(var(--primary) / 0.22);
  background: hsl(0 0% 100% / 0.04);
  box-shadow: 0 0 0 1px hsl(0 0% 100% / 0.03) inset;
  animation: cf-social-float 3s ease-in-out infinite;
  transition:
    transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.cf-social-link:nth-child(2) {
  animation-delay: 0.15s;
}

.cf-social-link:nth-child(3) {
  animation-delay: 0.3s;
}

.cf-social-link:nth-child(4) {
  animation-delay: 0.45s;
}

.cf-social-link:hover {
  transform: translateY(-4px) scale(1.06);
  border-color: hsl(var(--primary) / 0.48);
  background: hsl(var(--primary) / 0.12);
  box-shadow:
    0 0 0 1px hsl(var(--primary) / 0.12) inset,
    0 0 24px hsl(var(--primary) / 0.24);
}

.cf-social-icon {
  width: 1.2rem;
  height: 1.2rem;
  background: rgb(var(--foreground));
}

.cf-bottom-status {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.2rem;
  padding: 0.9rem;
  border-radius: 1rem;
  border: 1px solid hsl(var(--primary) / 0.16);
  background: linear-gradient(
    180deg,
    rgb(var(--background) / 0.72) 0%,
    rgb(var(--background) / 0.82) 100%
  );
  box-shadow:
    0 0 0 1px hsl(0 0% 100% / 0.03) inset,
    0 14px 36px hsl(0 0% 0% / 0.24),
    0 0 24px hsl(var(--primary) / 0.08);
}

@media (min-width: 720px) {
  .cf-bottom-status {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .cf-bottom-status {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.cf-bottom-status-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  min-height: 4.1rem;
  padding: 0.85rem 0.9rem;
  border-radius: 0.9rem;
  border: 1px solid hsl(0 0% 100% / 0.04);
  background: hsl(0 0% 100% / 0.03);
}

.cf-copy-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(0 0% 100% / 0.04);
}

@media (min-width: 640px) {
  .cf-copy-row {
    flex-direction: row;
  }
}

.cf-copy {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: hsl(0 0% 100% / 0.44);
  text-align: center;
}

@media (min-width: 640px) {
  .cf-copy {
    text-align: left;
  }
}

.cf-terms-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.72rem 1rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--primary) / 0.22);
  background: hsl(0 0% 100% / 0.04);
  color: hsl(0 0% 100% / 0.84);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    color 0.28s ease,
    background 0.28s ease;
}

.cf-terms-btn:hover {
  transform: translateY(-2px);
  border-color: hsl(var(--primary) / 0.44);
  background: hsl(var(--primary) / 0.12);
  color: hsl(var(--primary));
  box-shadow:
    0 0 0 1px hsl(var(--primary) / 0.12) inset,
    0 0 22px hsl(var(--primary) / 0.18);
}

@media (prefers-reduced-motion: reduce) {
  .cf-status-dot,
  .cf-social-link {
    animation: none;
  }

  .cf-trust-card,
  .cf-status-card,
  .cf-proof-card,
  .cf-payment-card,
  .cf-bottom-status-item,
  .cf-social-link,
  .cf-terms-btn {
    transition: none;
  }
}
