/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  /* Color Palette */
  --bg-color: #080c14;
  --bg-glow-1: rgba(59, 130, 246, 0.12);
  --bg-glow-2: rgba(6, 182, 212, 0.08);
  --primary: #3b82f6;
  --primary-hover: #2563eb;
  --primary-glow: rgba(59, 130, 246, 0.35);
  --accent: #06b6d4;
  --accent-hover: #0891b2;
  --accent-glow: rgba(6, 182, 212, 0.3);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #64748b;
  
  /* UI Components */
  --card-bg: rgba(15, 23, 42, 0.65);
  --card-border: rgba(59, 130, 246, 0.15);
  --card-border-hover: rgba(59, 130, 246, 0.35);
  --input-bg: rgba(15, 23, 42, 0.8);
  --input-border: rgba(148, 163, 184, 0.15);
  --input-focus: #3b82f6;
  
  /* Status Colors */
  --success: #10b981;
  --success-glow: rgba(16, 185, 129, 0.2);
  --error: #f43f5e;
  --error-glow: rgba(244, 63, 94, 0.2);
  --warning: #fbbf24;
  
  /* Fonts & Radius */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-title: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Ambient Background Lights */
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
}

.bg-glow-1 {
  width: 500px;
  height: 500px;
  background: var(--bg-glow-1);
  top: -100px;
  right: -100px;
  animation: pulseGlow 12s infinite alternate;
}

.bg-glow-2 {
  width: 600px;
  height: 600px;
  background: var(--bg-glow-2);
  top: 500px;
  left: -200px;
  animation: pulseGlow 16s infinite alternate-reverse;
}

@keyframes pulseGlow {
  0% { transform: scale(1) translate(0, 0); opacity: 0.8; }
  100% { transform: scale(1.15) translate(50px, 30px); opacity: 1; }
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
.badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  font-family: var(--font-title);
}

.section-title {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 48px;
  font-size: 16px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(59, 130, 246, 0.5);
  background: linear-gradient(135deg, var(--primary-hover), var(--accent-hover));
}

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

.btn-secondary {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-block {
  display: width;
  width: 100%;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 12, 20, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 18px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(88, 101, 242, 0.1);
  border: 1px solid rgba(88, 101, 242, 0.2);
  color: #5865F2 !important;
  border-radius: var(--radius-sm);
}

.social-link:hover {
  background: rgba(88, 101, 242, 0.2);
  border-color: rgba(88, 101, 242, 0.4);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.server-status {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--success);
  animation: blink 2s infinite alternate;
}

@keyframes blink {
  0% { opacity: 0.4; }
  100% { opacity: 1; }
}

.status-text {
  font-size: 13px;
  color: var(--text-muted);
}

.status-text strong {
  color: #ffffff;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 80px 0;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.hero-info {
  padding-top: 20px;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 54px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
}

/* Payment Safety Info Card */
.payment-safety-card {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 24px;
  border-radius: var(--radius-md);
  max-width: 520px;
}

.safety-title {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.safety-title::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent);
}

.safety-text {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.payment-logos {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.payment-logos span {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dark);
  border: 1px dashed rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   DONATION BOX / FORM APP
   ========================================================================== */
.donate-box-wrapper {
  perspective: 1000px;
}

.donate-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(59, 130, 246, 0.03);
  overflow: hidden;
  transition: var(--transition);
}

.donate-box:hover {
  border-color: var(--card-border-hover);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(59, 130, 246, 0.08);
}

.donate-tabs {
  display: flex;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tab-btn {
  flex: 1;
  background: none;
  border: none;
  padding: 18px;
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.tab-btn:hover {
  color: #ffffff;
}

.tab-btn.active {
  color: #ffffff;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.donate-content {
  padding: 28px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

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

/* Forms */
.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
}

input[type="text"],
input[type="number"],
input[type="email"],
select {
  width: 100%;
  background-color: var(--input-bg);
  border: 1px solid var(--input-border);
  color: #ffffff;
  padding: 12px 16px;
  font-size: 15px;
  border-radius: var(--radius-md);
  outline: none;
  font-family: var(--font-sans);
  transition: var(--transition);
}

input:focus, select:focus {
  border-color: var(--input-focus);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.15);
  background-color: rgba(15, 23, 42, 0.95);
}

/* Input with Verify Button inside */
.input-with-action {
  display: flex;
  gap: 8px;
}

.btn-verify {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-verify:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Suffix Wrapper for input */
.suffix-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-suffix {
  position: absolute;
  right: 16px;
  color: var(--text-muted);
  font-weight: 600;
  pointer-events: none;
}

.suffix-wrapper input {
  padding-right: 36px;
}

/* Verify Status Label */
.verify-status, .promo-status {
  font-size: 12px;
  margin-top: 6px;
  font-weight: 500;
  display: none;
}

.verify-status.success, .promo-status.success {
  color: var(--success);
  display: block;
}

.verify-status.error, .promo-status.error {
  color: var(--error);
  display: block;
}

/* Quick amounts list */
.quick-amounts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.quick-amounts button {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  padding: 8px 0;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.quick-amounts button:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}

.quick-amounts button.active {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.15);
}

/* Calculation Widget */
.calculation-widget {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 16px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 8px;
}

.calc-row:last-child {
  margin-bottom: 0;
}

.calc-row span {
  color: var(--text-muted);
}

.calc-row strong {
  color: #ffffff;
  font-weight: 600;
}

.calc-row.highlighted {
  font-size: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  padding-top: 8px;
  margin-top: 8px;
}

.calc-row.highlighted strong {
  background: linear-gradient(135deg, #60a5fa, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 18px;
}

.bonus-row {
  display: none;
}

.bonus-tag {
  background: var(--success-glow);
  color: var(--success);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Item Description Card for Packages */
.item-description-card {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 18px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.item-description-card h4 {
  font-family: var(--font-title);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.item-description-card p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.pkg-price-badge {
  font-size: 13px;
  color: var(--text-muted);
}

.pkg-price-badge strong {
  color: #ffffff;
  font-size: 15px;
}

/* Payment Methods Grid selector */
.payment-methods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.payment-method-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 14px;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.payment-method-card input[type="radio"] {
  position: absolute;
  top: 14px;
  right: 14px;
  accent-color: var(--primary);
}

.payment-method-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.payment-method-card.active {
  background: rgba(59, 130, 246, 0.05);
  border-color: var(--primary);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.1);
}

.method-title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 2px;
}

.method-subtitle {
  font-size: 11px;
  color: var(--text-muted);
}

/* Checkbox alignment */
.checkbox-group {
  display: flex;
  gap: 8px;
  margin: 22px 0;
  align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--primary);
  cursor: pointer;
}

.checkbox-group label {
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 0;
  cursor: pointer;
  user-select: none;
}

.checkbox-group label a {
  text-decoration: underline;
}

.donation-warning-text {
  font-size: 11px;
  color: var(--text-dark);
  line-height: 1.5;
  margin-top: -12px;
  margin-bottom: 20px;
  text-align: left;
}

.donation-warning-text a {
  color: var(--text-muted);
  text-decoration: underline;
}

.donation-warning-text a:hover {
  color: #ffffff;
}

/* ==========================================================================
   RECENT DONATIONS FEED (TICKER)
   ========================================================================== */
.live-ticker-section {
  padding: 40px 0;
  background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.02), transparent);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.section-header-compact {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.section-header-compact h3 {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.live-pulse {
  width: 6px;
  height: 6px;
  background-color: var(--error);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--error);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.ticker-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 10px 0;
}

/* Edge Blurs for premium fade effect */
.ticker-wrapper::before,
.ticker-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.ticker-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-color), transparent);
}

.ticker-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-color), transparent);
}

.ticker-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: tickerSlide 35s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes tickerSlide {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.ticker-item {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.ticker-user {
  font-weight: 600;
  color: #ffffff;
}

.ticker-amount {
  color: var(--accent);
  font-weight: 700;
}

.ticker-package {
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary);
  border: 1px solid rgba(59, 130, 246, 0.15);
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.ticker-time {
  color: var(--text-dark);
  font-size: 11px;
}

.placeholder-item {
  color: var(--text-muted);
  border: none;
  background: none;
}

/* ==========================================================================
   HOW TO PLAY
   ========================================================================== */
.how-to-section {
  padding: 100px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.04);
}

.step-num {
  font-family: var(--font-title);
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.15;
  position: absolute;
  top: 15px;
  right: 25px;
}

.step-card h3 {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.step-link-btn {
  display: inline-block;
  color: var(--primary);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1.5px solid rgba(59, 130, 246, 0.3);
  padding-bottom: 2px;
}

.step-link-btn:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* IP Copy block */
.server-ip-box {
  display: flex;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 4px 4px 4px 16px;
  align-items: center;
  justify-content: space-between;
}

.ip-address {
  font-family: var(--font-title);
  font-size: 13px;
  color: #ffffff;
  font-weight: 500;
}

.ip-copy-btn {
  background: var(--primary);
  border: none;
  color: #ffffff;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.ip-copy-btn:hover {
  background: var(--primary-hover);
}

.ip-copy-btn.copied {
  background: var(--success);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: #04060a;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 60px 0 40px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
}

.logo-footer {
  margin-bottom: 14px;
}

.copyright {
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.merchant-desc {
  font-size: 11px;
  color: var(--text-dark);
  line-height: 1.6;
}

.footer-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-links-col h4 {
  font-family: var(--font-title);
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-links-col a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer-links-col a:hover {
  color: #ffffff;
  padding-left: 2px;
}

/* ==========================================================================
   MODALS
   ========================================================================== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 6, 10, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  animation: modalScale 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalScale {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-content h3 {
  font-family: var(--font-title);
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 12px;
}

.modal-content p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.modal-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  border-top-color: var(--primary);
  margin: 0 auto 24px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .hero-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-description {
    max-width: 600px;
  }
  
  .payment-safety-card {
    max-width: 600px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 42px;
  }
  
  .nav-menu {
    position: fixed;
    top: 73px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 73px);
    background: #080c14;
    flex-direction: column;
    padding: 40px;
    gap: 24px;
    transition: var(--transition);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-right {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .quick-amounts {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .payment-methods-grid {
    grid-template-columns: 1fr;
  }
  
  .donate-content {
    padding: 20px;
  }
}
