input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  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);
  }
}


#cart-drawer[data-state="open"] {
  animation: fade-in 0.4s forwards;
}

body.cart-open,
body.dialog-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
}

#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;
}

/* Mobile drawer: slide content in/out based on open state */
#mobile-drawer[data-state="open"] {
  animation: fade-in 0.4s forwards;
}

#mobile-drawer[data-state="closed"] {
  animation: fade-out 0.4s forwards;
}

#mobile-drawer[data-state="open"] #mobile-drawer-content {
  transform: translateX(0);
}

#mobile-drawer[data-state="closed"] #mobile-drawer-content {
  transform: translateX(100%);
}

.dialog[data-state="open"] {
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  animation: fade-in 0.4s forwards;
}

.dialog[data-state="closed"] {
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  animation: fade-out 0.4s forwards;
}

.dialog[data-state="open"] > div {
  animation: dialog-in 0.15s forwards;
}

.dialog[data-state="closed"] > div {
  animation: dialog-out 0.15s forwards;
}

@keyframes dialog-in {
  from {
      opacity: 0;
      transform: translateY(-24px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes dialog-out {
  from {
      opacity: 1;
      transform: translateY(0);
  }
  to {
      opacity: 0;
      transform: translateY(-24px);
  }
}

.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));
}

@keyframes loading {
  0% {
      left: -50%;
  }

  to {
      left: 100%;
  }
}

.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;
}

.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);
  }
}

.nav-link-hover {
  position: relative;
}
.nav-link-hover::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 0;
  height: 3px;
  background: hsl(var(--primary));
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-link-hover:hover::after {
  width: 100%;
}


@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


.gradient-text {
  background: linear-gradient(
    45deg,
    hsl(var(--primary)),
    hsl(var(--primary) / 0.8),
    hsl(var(--primary) / 0.6),
    hsl(var(--primary) / 0.9),
    hsl(var(--primary)),
    hsl(var(--primary) / 0.7),
    hsl(var(--primary) / 0.5),
    hsl(var(--primary) / 0.8)
  );
  background-size: 400% 400%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 3s ease-in-out infinite;
}

.goal-bar {
  background-color: #181A28;

  margin-top: 8px;
  width: 100%;
  height: 18px;
  border-radius: 99px;

  position: relative;

  overflow: hidden;

  span {
    position: absolute;
    z-index: 1;
    right: 0;
    font-size: 14px;
    font-weight: 600;
    padding-right: 5px;
    top: 50%;
    transform: translateY(-50%);
  }

  &::after {
    content: "";
  
    position: absolute;
  
    width: var(--goal_percent);
    height: 18px;
  
    background-color: hsl(var(--primary));
  
    background-image: linear-gradient(
      -45deg, 
      rgba(255, 255, 255, .1) 25%, 
      transparent 25%, 
      transparent 50%, 
      rgba(255, 255, 255, .1) 50%, 
      rgba(255, 255, 255, .1) 75%, 
      transparent 75%, 
      transparent
    );
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.neon-3d-text {
  font-family: 'Orbitron', sans-serif;
  color: hsl(var(--primary));
  text-shadow:
    1px 1px 0 white,
    2px 2px 0 hsl(var(--primary) / 0.5),
    3px 3px 0 hsl(var(--primary) / 0.35),
    4px 4px 0 hsl(var(--primary) / 0.2),
    5px 5px 0 hsl(var(--primary) / 0.1),
    0 0 10px hsl(var(--primary) / 0.6),
    0 0 30px hsl(var(--primary) / 0.3),
    0 0 60px hsl(var(--primary) / 0.15);
  transition: text-shadow 0.3s ease, transform 0.3s ease;
}

.neon-3d-link {
  perspective: 500px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.neon-3d-link:hover .neon-3d-text {
  text-shadow:
    1px 1px 0 white,
    2px 2px 0 hsl(var(--primary) / 0.6),
    3px 3px 0 hsl(var(--primary) / 0.45),
    4px 4px 0 hsl(var(--primary) / 0.3),
    5px 5px 0 hsl(var(--primary) / 0.2),
    6px 6px 2px hsl(var(--primary) / 0.1),
    0 0 20px hsl(var(--primary) / 0.8),
    0 0 40px hsl(var(--primary) / 0.5),
    0 0 80px hsl(var(--primary) / 0.3);
}

.neon-3d-link:hover {
  transform: scale(1.05) rotateX(-3deg) rotateY(2deg);
}

/* ========== Mundo Cobblemon Style ========== */

@keyframes hero-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.02); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-hero-float {
  animation: hero-float 8s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulse-glow 4s ease-in-out infinite;
}

.animate-fade-up {
  animation: fade-up 0.8s ease-out forwards;
}

.animate-fade-up-delay-1 {
  animation: fade-up 0.8s ease-out 0.15s forwards;
  opacity: 0;
}

.animate-fade-up-delay-2 {
  animation: fade-up 0.8s ease-out 0.3s forwards;
  opacity: 0;
}

.animate-fade-up-delay-3 {
  animation: fade-up 0.8s ease-out 0.45s forwards;
  opacity: 0;
}

.text-gradient-primary {
  background: linear-gradient(
    135deg,
    hsl(var(--primary)),
    hsl(var(--primary) / 0.8),
    hsl(var(--primary)),
    hsl(var(--secondary, var(--primary)))
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-glow-1 {
  top: 10%;
  left: 5%;
  width: 600px;
  height: 600px;
  background: hsl(var(--primary) / 0.1);
  animation: hero-float 8s ease-in-out infinite;
}

.hero-glow-2 {
  bottom: 10%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: hsl(var(--primary) / 0.05);
  animation: pulse-glow 6s ease-in-out infinite;
}

.hero-glow-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: hsl(var(--primary) / 0.05);
  filter: blur(200px);
}

.community-card {
  position: relative;
  border-radius: 2.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem;
  text-align: center;
}

@media (min-width: 768px) {
  .community-card {
    padding: 6rem;
  }
}

.community-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, hsl(var(--primary) / 0.1), transparent, transparent);
  opacity: 0;
  transition: opacity 1s;
  transform: scale(1.5);
}

.community-card:hover::before {
  opacity: 1;
}

.community-glow-1 {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  width: 6rem;
  height: 6rem;
  background: hsl(var(--primary) / 0.2);
  border-radius: 50%;
  filter: blur(48px);
  animation: pulse-glow 4s ease-in-out infinite;
}

.community-glow-2 {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 8rem;
  height: 8rem;
  background: #5865F2;
  opacity: 0.2;
  border-radius: 50%;
  filter: blur(48px);
  animation: hero-float 6s ease-in-out infinite;
}

.pill-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.375rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}

.pill-nav a {
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

@media (min-width: 1280px) {
  .pill-nav a {
    padding: 0.5rem 1.5rem;
  }
}

.pill-nav a:hover {
  color: white;
}

.pill-nav a.active {
  color: black;
}

.pill-nav a.active::before {
  content: '';
  position: absolute;
  inset: 0;
  background: white;
  border-radius: 9999px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  z-index: -1;
}

/* How to Play page */
.step-card {
  position: relative;
  background: rgb(var(--muted));
  border: 1px solid rgb(var(--border));
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
}

.step-card:hover {
  border-color: hsl(var(--primary) / 0.5);
  transform: translateY(-4px);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsl(var(--primary) / 0.2);
  border: 1px solid hsl(var(--primary) / 0.3);
  color: hsl(var(--primary));
  font-weight: 800;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* ========== Featured Platforms Section ========== */

@keyframes platform-shine {
  0% { left: -100%; }
  100% { left: 200%; }
}

@keyframes benefit-fade-in {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-6px) rotate(2deg); }
}

.platform-showcase {
  position: relative;
  background: linear-gradient(135deg, rgba(27, 32, 45, 0.95), rgba(21, 25, 35, 0.98));
  border: 1px solid hsl(var(--primary) / 0.2);
  border-radius: 1.5rem;
  padding: 2.5rem;
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.platform-showcase:hover {
  border-color: hsl(var(--primary) / 0.4);
  box-shadow: 0 0 60px hsl(var(--primary) / 0.08), 0 0 120px hsl(var(--primary) / 0.04);
}

.platform-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, hsl(var(--primary)), transparent);
  opacity: 0.6;
}

.platform-showcase::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, hsl(var(--primary) / 0.03), transparent);
  animation: platform-shine 6s ease-in-out infinite;
  pointer-events: none;
}

.platform-showcase .showcase-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.15;
}

.platform-showcase .showcase-glow-1 {
  top: -50px;
  right: -50px;
  background: hsl(var(--primary));
}

.platform-showcase .showcase-glow-2 {
  bottom: -80px;
  left: -60px;
  background: hsl(var(--primary) / 0.5);
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.15);
  border: 1px solid hsl(var(--primary) / 0.3);
  color: hsl(var(--primary));
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: float-badge 4s ease-in-out infinite;
}

.platform-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid transparent;
}

.platform-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.platform-btn:hover::before {
  opacity: 1;
}

.platform-btn-modrinth {
  background: linear-gradient(135deg, #1bd96a22, #1bd96a11);
  color: #1bd96a;
  border-color: #1bd96a33;
}

.platform-btn-modrinth:hover {
  background: linear-gradient(135deg, #1bd96a33, #1bd96a22);
  box-shadow: 0 0 30px #1bd96a22, 0 8px 32px rgba(0,0,0,0.3);
  transform: translateY(-3px);
  border-color: #1bd96a55;
}

.platform-btn-curseforge {
  background: linear-gradient(135deg, #f1643122, #f1643111);
  color: #f16431;
  border-color: #f1643133;
}

.platform-btn-curseforge:hover {
  background: linear-gradient(135deg, #f1643133, #f1643122);
  box-shadow: 0 0 30px #f1643122, 0 8px 32px rgba(0,0,0,0.3);
  transform: translateY(-3px);
  border-color: #f1643155;
}

.platform-btn .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  flex-shrink: 0;
}

.platform-btn-modrinth .btn-icon {
  background: #1bd96a22;
}

.platform-btn-curseforge .btn-icon {
  background: #f1643122;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.3s;
  animation: benefit-fade-in 0.5s ease-out forwards;
  opacity: 0;
}

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }
.benefit-item:nth-child(5) { animation-delay: 0.5s; }

.benefit-item:hover {
  background: hsl(var(--primary) / 0.05);
  border-color: hsl(var(--primary) / 0.15);
  transform: translateX(4px);
}

.benefit-item .check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: hsl(var(--primary) / 0.2);
  color: hsl(var(--primary));
  flex-shrink: 0;
  font-size: 0.875rem;
}

.platform-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  background: hsl(var(--primary) / 0.05);
  border: 1px solid hsl(var(--primary) / 0.15);
}

.platform-notice .notice-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: hsl(var(--primary) / 0.2);
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.season-highlight {
  position: relative;
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, hsl(var(--primary) / 0.08), transparent, hsl(var(--primary) / 0.05));
  border: 1px solid hsl(var(--primary) / 0.15);
  overflow: hidden;
}

.season-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, hsl(var(--primary) / 0.6), transparent);
}

/* ========== Game Systems Section ========== */

.system-card {
  position: relative;
  background: rgb(var(--muted));
  border: 1px solid rgb(var(--border));
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s;
}

.system-card:hover {
  border-color: hsl(var(--primary) / 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.system-card .system-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: hsl(var(--primary) / 0.15);
  border: 1px solid hsl(var(--primary) / 0.2);
  color: hsl(var(--primary));
  flex-shrink: 0;
  margin-bottom: 1rem;
}

.system-card .command-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.625rem;
  border-radius: 0.375rem;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  font-size: 0.75rem;
  font-family: 'Roboto Condensed', monospace;
  font-weight: 600;
  border: 1px solid hsl(var(--primary) / 0.15);
  margin-top: 0.5rem;
  margin-right: 0.25rem;
}

/* ========== Commands Reference Section ========== */

.command-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.command-row:last-child {
  border-bottom: none;
}

.command-row:hover {
  background: hsl(var(--primary) / 0.05);
}

.command-row code {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: 'Roboto Condensed', monospace;
  border: 1px solid hsl(var(--primary) / 0.15);
  white-space: nowrap;
  min-width: 140px;
}

.command-row span {
  color: rgb(var(--muted-foreground));
  font-size: 0.875rem;
}

/* ========== Content Section Styles ========== */

.content-section {
  position: relative;
}

.content-section .section-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.content-section .section-divider::before,
.content-section .section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(var(--primary) / 0.2), transparent);
}

.progression-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.875rem;
  border-radius: 0.625rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  transition: all 0.2s;
}

.progression-item:hover {
  background: hsl(var(--primary) / 0.08);
  border-color: hsl(var(--primary) / 0.2);
  color: white;
}

.progression-item .prog-icon {
  color: hsl(var(--primary));
  font-size: 0.75rem;
}

/* ========== Final CTA Banner ========== */

.final-cta {
  position: relative;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgb(var(--muted)), rgba(21, 25, 35, 0.95));
  border: 1px solid rgb(var(--border));
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, hsl(var(--primary) / 0.06), transparent 70%);
  pointer-events: none;
}

@media (max-width: 640px) {
  .platform-showcase {
    padding: 1.5rem;
  }
  .platform-btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
  }
  .command-row code {
    min-width: 110px;
    font-size: 0.75rem;
  }
}

