/* ===== Custom Properties & Variables ===== */
:root {
  --primary-color: #6366f1;
  --primary-color-dark: #4f46e5;
  --secondary-color: #0ea5e9;
  
  --bg-dark: #0f172a;
  --bg-darker: #0b0f19;
  --card-bg: rgba(30, 41, 59, 0.7);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  
  --success: #10b981;
  --warning: #f59e0b;
  
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-bg: rgba(15, 23, 42, 0.65);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ===== Reset & Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

.section-padding {
  padding: 6rem 0;
}

/* ===== Typography ===== */
.text-gradient {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #818cf8;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-family: var(--font-heading);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  gap: 0.5rem;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
}

.btn-secondary {
  background: var(--card-bg);
  color: white;
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid var(--glass-border);
}

.btn-outline:hover {
  border-color: var(--primary-color);
  background: rgba(99, 102, 241, 0.1);
}

/* ===== Glassmorphism Utilities ===== */
.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  box-shadow: var(--glass-shadow);
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.25rem 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(11, 15, 25, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--primary-color);
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text-main);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 10s infinite ease-in-out alternate;
}

.shape-1 {
  top: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(99, 102, 241, 0.4);
}

.shape-2 {
  bottom: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(14, 165, 233, 0.3);
  animation-delay: -5s;
}

.shape-3 {
  top: 40%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: rgba(139, 92, 246, 0.3);
  transform: translate(-50%, -50%);
  animation-delay: -2.5s;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 50px) scale(1.1); }
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.hero-content p {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.stats-row {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.hero-image {
  position: relative;
  perspective: 1000px;
}

.main-image-card {
  position: relative;
  padding: 1rem;
  transform: rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s ease;
  transform-style: preserve-3d;
}

.main-image-card:hover {
  transform: rotateY(0) rotateX(0);
}

.dashboard-preview {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.floating-card {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transform: translateZ(30px);
}

.floating-card .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #818cf8;
  font-size: 1.25rem;
}

.users-card .icon {
  background: rgba(16, 185, 129, 0.2);
  color: var(--success);
}

.floating-card .details {
  display: flex;
  flex-direction: column;
}

.floating-card .label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.floating-card .value {
  font-weight: 700;
  font-family: var(--font-heading);
}

.revenue-card {
  top: -20px;
  right: -30px;
  animation: float-y 4s infinite ease-in-out alternate;
}

.users-card {
  bottom: -20px;
  left: -30px;
  animation: float-y 5s infinite ease-in-out alternate-reverse;
}

@keyframes float-y {
  0% { transform: translateZ(30px) translateY(0); }
  100% { transform: translateZ(30px) translateY(-15px); }
}

/* ===== Features Section ===== */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 1rem;
  background: rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #818cf8;
  font-size: 1.75rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #cbd5e1;
}

.feature-list i {
  color: var(--success);
  font-size: 0.875rem;
}

/* ===== About Section ===== */
.about {
  background-color: var(--bg-dark);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  position: relative;
}

.about-img-1 {
  width: 100%;
  border-radius: 1rem;
  margin-top: 3rem;
  box-shadow: var(--glass-shadow);
}

.about-img-2 {
  width: 100%;
  border-radius: 1rem;
  box-shadow: var(--glass-shadow);
}

.image-grid::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
  bottom: -20px;
  left: -20px;
  z-index: -1;
  opacity: 0.5;
  filter: blur(20px);
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.about-highlights {
  margin-top: 2.5rem;
}

.highlight {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.highlight-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  background: rgba(99, 102, 241, 0.1);
  padding: 1rem;
  border-radius: 0.75rem;
  height: max-content;
}

.highlight h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.highlight p {
  font-size: 1rem;
  margin-bottom: 0;
}

/* ===== Deposit Section ===== */
.deposit-box {
  display: grid;
  grid-template-columns: 3fr 2fr;
  overflow: hidden;
}

.deposit-content {
  padding: 4rem;
}

.deposit-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.deposit-content > p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.accounts-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.account-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.account-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.network-logo {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
}

.airtel .network-logo { color: #ef4444; }
.tigo .network-logo { color: #3b82f6; }

.account-details {
  display: flex;
  flex-direction: column;
}

.account-name {
  font-weight: 600;
  color: white;
}

.account-number {
  color: var(--text-muted);
  font-family: monospace;
  font-size: 1.125rem;
}

.copy-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.deposit-note {
  background: rgba(59, 130, 246, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  border-left: 4px solid var(--secondary-color);
  font-size: 0.9rem;
  color: #cbd5e1;
}

.deposit-image {
  background: url('assets/images/4.jpg') center/cover;
  position: relative;
}

.deposit-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent, var(--card-bg));
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--glass-border);
  padding-top: 5rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-info p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 80%;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-links h3, .footer-contact h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links ul a {
  color: var(--text-muted);
}

.footer-links ul a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.whatsapp-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 600;
  border: 1px solid rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}

.whatsapp-link:hover {
  background: #25D366;
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid var(--glass-border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ===== Animations & Reveals ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .hero-container, .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content h1 { font-size: 3rem; }
  .hero-content p { margin: 0 auto 2.5rem; }
  .hero-buttons { justify-content: center; }
  .stats-row { justify-content: center; }
  
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  
  .deposit-box { grid-template-columns: 1fr; }
  .deposit-image { display: none; }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .features-grid { grid-template-columns: 1fr; }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links { justify-content: center; }
  .whatsapp-link { justify-content: center; }
  .account-card { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ==========================================================
   PURE CSS REPLACEMENTS FOR CLIENT IMAGES
   ========================================================== */

/* 1. Logo Replacement (logo.jpeg) */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.css-logo {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #FFD700, #F7E08B, #B8860B);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
  position: relative;
  overflow: hidden;
}
.logo-mark {
  color: #111;
  font-weight: 900;
  font-size: 1.8rem;
  font-family: var(--font-heading);
  position: relative;
  z-index: 2;
}
.css-logo::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(45deg, rgba(255,255,255,0.2), transparent);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text span {
  color: #FFD700;
}
.logo-sub {
  font-size: 0.65rem;
  font-family: serif;
  font-style: italic;
  color: #F7E08B;
  margin-top: 3px;
  letter-spacing: 0.5px;
}

/* 2. Dashboard Preview Replacement (1.jpg) */
.dashboard-preview-css {
  background: #000;
  border-radius: 12px;
  padding: 1.5rem;
  color: white;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  position: relative;
  overflow: hidden;
  border: 1px solid #333;
}
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.dash-logo {
  color: #33A1FF;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.dash-action-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.action-btn {
  background: linear-gradient(135deg, #FF1A1A, #D91E5B);
  border-radius: 10px;
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.action-btn:hover {
  transform: translateY(-5px);
}
.action-btn i {
  font-size: 1.5rem;
}
.dash-stats {
  background: linear-gradient(135deg, #FF1A1A, #D91E5B);
  border-radius: 10px;
  display: flex;
  padding: 1.5rem 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 20px rgba(217, 30, 91, 0.3);
}
.stat-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.line-right {
  border-right: 1px solid rgba(255,255,255,0.3);
}
.stat-lbl {
  font-size: 0.8rem;
  opacity: 0.9;
  margin-bottom: 0.25rem;
}
.stat-val {
  font-size: 1.2rem;
  font-weight: 700;
}
.dash-vip-card {
  background: #fff;
  color: #333;
  border-radius: 10px;
  display: flex;
  overflow: hidden;
}
.vip-icon {
  background: #f0f0f0;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #10b981;
  width: 30%;
}
.vip-details {
  padding: 1rem;
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.vip-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 0.25rem;
}
.vip-row:last-child { border-bottom: none; }
.vip-row .highlight { color: #FF1A1A; font-weight: 700; }

/* 3. About Section Replacements (2.jpg & 3.jpg) */
.commissions-css {
  background: radial-gradient(circle at center, #0080FF, #003366);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.commissions-css::before {
  content: '$ $ $';
  position: absolute;
  font-size: 2rem;
  color: rgba(255,255,255,0.1);
  top: 10%; right: 10%;
  letter-spacing: 2rem;
  transform: rotate(15deg);
}
.comm-header {
  text-align: center;
  margin-bottom: 2rem;
}
.comm-title {
  font-size: 2rem;
  color: #fff;
  text-shadow: 2px 2px 0px #FFD700;
  margin-bottom: 0.5rem;
}
.comm-ribbon {
  display: inline-block;
  background: #FF1A1A;
  color: white;
  padding: 0.5rem 1.5rem;
  font-weight: 700;
  border-radius: 20px;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.comm-levels {
  display: flex;
  gap: 1rem;
}
.level-card {
  flex: 1;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform 0.3s ease;
}
.level-card:hover { transform: translateY(-5px) scale(1.05); }
.lvl-a { border-top: 4px solid #FF5722; }
.lvl-b { border-top: 4px solid #4CAF50; }
.lvl-c { border-top: 4px solid #00BCD4; }
.lvl-title { font-weight: 700; margin-bottom: 0.5rem; }
.lvl-pct { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.lvl-a .lvl-pct { color: #FF5722; }
.lvl-b .lvl-pct { color: #4CAF50; }
.lvl-c .lvl-pct { color: #00BCD4; }
.lvl-desc { font-size: 0.8rem; color: #ccc; }

.vip-plans-css {
  background: radial-gradient(circle at top right, #001A33, #000);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid #FFD700;
}
.gold-text {
  color: #FFD700;
  text-shadow: 0 2px 10px rgba(255,215,0,0.3);
  margin-bottom: 1.5rem;
}
.gold-table {
  width: 100%;
  border-collapse: collapse;
}
.gold-table th {
  background: rgba(255,215,0,0.1);
  color: #FFD700;
  padding: 1rem;
  text-align: left;
  border-bottom: 2px solid #FFD700;
}
.gold-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255,215,0,0.2);
  color: #fff;
}
.gold-table tr:hover td {
  background: rgba(255,255,255,0.05);
}

/* 4. Deposit Illustration Replacement (4.jpg) */
.referral-rewards-css {
  background: linear-gradient(135deg, #00204d, #001229);
  border-radius: 15px;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
}
.ref-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 0;
}
.referral-rewards-css > * { position: relative; z-index: 1; }
.ref-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.ref-title {
  color: #FFEB3B;
  font-size: 1.8rem;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 #0056b3;
  letter-spacing: 1px;
}
.ref-fire {
  color: #FF5722;
  font-size: 1.5rem;
  animation: flicker 1.5s infinite alternate;
}
@keyframes flicker {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.2); opacity: 1; }
}
.ref-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ref-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1rem;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.ref-card:hover { transform: translateY(-10px); }
.ref-pill {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}
.orange .ref-pill { background: #FF5722; }
.green .ref-pill { background: #4CAF50; }
.purple .ref-pill { background: #9C27B0; }

.ref-earn {
  color: #111;
  font-weight: 800;
  font-size: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.ref-sub {
  color: #666;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ref-icon {
  margin-top: 1rem;
  font-size: 2rem;
  opacity: 0.2;
}
.orange .ref-icon { color: #FF5722; }
.green .ref-icon { color: #4CAF50; }
.purple .ref-icon { color: #9C27B0; }

@media (max-width: 992px) {
  .dashboard-preview-css { margin-top: 2rem; }
  .image-grid { display: flex; flex-direction: column; }
  .COMMISSIONS-css { margin-bottom: 2rem; }
  .ref-cards { grid-template-columns: 1fr; }
}

