/* ==================== BASE VARIABLES ==================== */
:root {
  --bg-main: #0b1020;
  --bg-card: linear-gradient(160deg, #161b3a, #10152f);
  --primary: #7c7cff;
  --secondary: #00e0c6;
  --accent: #ff8bd5;
  --text-main: #edf0ff;
  --text-muted: #a6acd9;
  --radius: 16px;
}

/* ==================== RESET ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, system-ui, sans-serif;
  cursor: auto; /* browser default cursor */
}

body {
  background: var(--bg-main);
  color: var(--text-main);
  cursor: auto; /* browser default cursor */
}


/* ==================== BUTTONS ==================== */
.primary-btn {
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: var(--radius);
  border: none;
  font-weight: 800;
  font-size: 1rem;
  color: #0b1020;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  transition: transform .15s ease, box-shadow .15s ease;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(124,124,255,.35);
}

.primary-btn:active {
  transform: translateY(0);
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  padding: 6rem 1.5rem;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, #7c7cff33, transparent 40%),
    radial-gradient(circle at 80% 30%, #00e0c633, transparent 45%),
    radial-gradient(circle at 50% 80%, #ff8bd533, transparent 45%);
  animation: floatBg 6s linear infinite alternate;
}

@keyframes floatBg {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.hero * {
  position: relative;
  z-index: 1;
}

.hero button {
  margin-top: 2rem;
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  border: none;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  font-weight: 800;
  cursor: pointer;
}

/* ==================== FILTERS ==================== */
.filters {
  max-width: 1200px;
  margin: 2.5rem auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
}

.filters input,
.filters select {
  padding: 1rem;
  border-radius: var(--radius);
  background: #101633;
  border: 1px solid #2b3263;
  color: var(--text-main);
  cursor: text; /* text cursor for typing */
}

@media (max-width: 640px) {
  .filters { grid-template-columns: 1fr; }
}

/* ==================== FOOTER ==================== */
footer {
  background: #070b1a;
  padding: 3rem 1.5rem;
  margin-top: 4rem;
  cursor: auto; /* default cursor */
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

footer h4 {
  margin-bottom: .8rem;
}

footer p, footer span {
  color: var(--text-muted);
  font-size: .95rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ==================== MENU BUTTON ==================== */
.menu-btn {
  display: none;
  font-size: 1.6rem;
}

/* ==================== MOBILE BUTTON TEXT ==================== */
@media (max-width: 640px) {
  button,
  .primary-btn,
  .hero button {
    color: #000 !important; /* black text on mobile */
  }
  .modal-close{
    color: #fff !important;
  }
}

.status-badge.paid { color: #16a34a; }
.status-badge.pending { color: #f59e0b; }
.status-badge.failed { color: #dc2626; }

