/* Base */
html,
body {
  background: #0a0a0a;
  color: white;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  overflow-x: hidden;
}

/* Glow blobs */
.glow {
  position: fixed;
  filter: blur(120px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

/* Card */
.card {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(245, 255, 130, 0.15);
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 255, 130, 0.3);
  background: rgba(17, 17, 17, 0.72);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #f5ff82;
  color: #0a0a0a;
  border: 1px solid rgba(245, 255, 130, 0.35);
  font-weight: 700;
  transition: transform 180ms ease, filter 180ms ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn-glass:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
}

.btn-transparent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: white;
  border: 1px solid rgba(245, 255, 130, 0.22);
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn-transparent:hover {
  transform: translateY(-1px);
  background: rgba(245, 255, 130, 0.06);
  border-color: rgba(245, 255, 130, 0.3);
}

/* Nav link */
.nav-link {
  transition: color 180ms ease;
}

.nav-link:hover {
  color: rgba(245, 255, 130, 0.95);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  display: none;
  z-index: 50;
  padding: 90px 18px 28px;
}

.mobile-menu.open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

/* Affiliate card tweaks */
.affiliate-card .card-icon {
  width: 74px;
  height: 74px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(245, 255, 130, 0.2);
  background: rgba(0, 0, 0, 0.35);
  margin-top: 18px;
}

.affiliate-card .card-content {
  padding: 18px 18px 22px;
}

.affiliate-card .button-container {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

/* Simple animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 700ms ease forwards;
}

.animate-slide-up {
  animation: slideUp 700ms ease forwards;
}
