*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-deep: #0d0d1c;
  --bg-card: rgba(255,255,255,0.04);
  --orange: #ff6b2b;
  --orange-light: #ff9548;
  --purple: #7c3aed;
  --purple-light: #a855f7;
  --text: #e8e6f0;
  --text-muted: rgba(255,255,255,0.5);
  --text-dim: rgba(255,255,255,0.25);
  --border-subtle: rgba(255,255,255,0.08);
  --border-orange: rgba(255,107,43,0.2);
  --border-purple: rgba(124,58,237,0.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: #0d0d1c;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.page-bg {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(124,58,237,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 10%, rgba(255,107,43,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(124,58,237,0.07) 0%, transparent 60%),
    #0d0d1c;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ff6b2b, #ff9548, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.orange-gradient {
  background: linear-gradient(135deg, #ff6b2b 0%, #ff9548 50%, #ffb347 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.purple-gradient {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #ff5a1a 0%, #ff7c3a 60%, #ff9548 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-orange:hover { transform: translateY(-1px); box-shadow: 0 8px 25px rgba(255,107,43,0.35); }

.btn-purple {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 60%, #8b5cf6 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-purple:hover { transform: translateY(-1px); box-shadow: 0 8px 25px rgba(124,58,237,0.35); }

.btn-full { width: 100%; }

.btn-outline-small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.2s;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
}
.btn-outline-small:hover { border-color: rgba(255,255,255,0.3); color: #fff; }

.glass-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
}

.orange-glass {
  background: rgba(255,107,43,0.07);
  border: 1px solid rgba(255,107,43,0.2);
}

.purple-glass {
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.25);
}

.section-divider {
  background: linear-gradient(90deg, transparent, rgba(255,107,43,0.35), rgba(124,58,237,0.35), transparent);
  height: 1px;
}

.pulse-orange { animation: pulseOrange 2.2s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
@keyframes pulseOrange {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,43,0.45); }
  50% { box-shadow: 0 0 0 14px rgba(255,107,43,0); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes priceZoom {
  0%, 100% { transform: scale(1); text-shadow: 0 0 0px rgba(255,107,43,0); }
  40% { transform: scale(1.10); text-shadow: 0 0 40px rgba(255,107,43,0.55), 0 0 80px rgba(255,107,43,0.25); }
  60% { transform: scale(1.10); text-shadow: 0 0 40px rgba(255,107,43,0.55), 0 0 80px rgba(255,107,43,0.25); }
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@keyframes sparkleSweep {
  0% { background-position: 200% center; }
  100% { background-position: -50% center; }
}

.flash-bar-outer {
  overflow: hidden;
  border-top: 1px solid rgba(255,107,43,0.22);
  border-bottom: 1px solid rgba(255,107,43,0.22);
  background: linear-gradient(90deg, #0d0814 0%, #110820 40%, #160a2a 60%, #0d0814 100%);
  padding: 8px 0;
}

.flash-bar-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
  align-items: center;
  gap: 24px;
}
.flash-bar-track:hover { animation-play-state: paused; }

.flash-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.flash-icon { color: #ff6b2b; font-size: 1rem; }

.sparkle-price {
  display: inline-block;
  font-weight: 900;
  background: linear-gradient(90deg, #ff8c42 0%, #ffda6a 20%, #fff5c0 38%, #ffffff 50%, #fff5c0 62%, #ffda6a 80%, #ff8c42 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: sparkleSweep 2s linear infinite;
}

.flash-bar-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,107,43,0.5);
  flex-shrink: 0;
}

.nav-simple {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-simple .btn-orange {
  padding: 10px 24px;
  font-size: 0.85rem;
  border-radius: 10px;
}

.hero {
  text-align: center;
  padding: 60px 24px 40px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ff6b2b;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero-trust .stars { color: #fbbf24; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}

.hero-icons {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hero-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatSlow 4s ease-in-out infinite;
  position: relative;
}

.hero-icon-box svg { width: 28px; height: 28px; }

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
}

.section {
  padding: 60px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.bundle-section { overflow: hidden; position: relative; padding: 60px 0; }

.bundle-row {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: marqueeScroll 40s linear infinite;
  will-change: transform;
}

.bundle-row-reverse {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: marqueeReverse 40s linear infinite;
  will-change: transform;
  margin-top: 16px;
}

.bundle-row:hover, .bundle-row-reverse:hover { animation-play-state: paused; }

.bundle-screenshot {
  flex-shrink: 0;
  width: 340px;
  height: 240px;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.bundle-screenshot:hover {
  transform: scale(1.03);
  border-color: rgba(255,107,43,0.45);
}

.bundle-fade-left {
  position: absolute; left: 0; top: 0; bottom: 0; width: 100px;
  background: linear-gradient(to right, #0d0d1c, transparent);
  pointer-events: none; z-index: 2;
}
.bundle-fade-right {
  position: absolute; right: 0; top: 0; bottom: 0; width: 100px;
  background: linear-gradient(to left, #0d0d1c, transparent);
  pointer-events: none; z-index: 2;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}

.category-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 14px;
  transition: all 0.2s;
  cursor: default;
}
.category-card:hover { transform: translateY(-2px); }

.category-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-info h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.category-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 640px) { .comparison-grid { grid-template-columns: 1fr; } }

.comparison-card {
  padding: 32px 28px;
  border-radius: 16px;
}

.comparison-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.comparison-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.check-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(34,197,94,0.15); border: 1.5px solid #22c55e;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: #22c55e; font-size: 12px;
}

.cross-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(255,255,255,0.04); border: 1.5px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: rgba(255,255,255,0.3); font-size: 12px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-card {
  padding: 24px;
  border-radius: 16px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem; color: #fff; flex-shrink: 0;
}

.testimonial-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-role { font-size: 0.75rem; color: var(--text-muted); }
.testimonial-stars { color: #fbbf24; font-size: 0.8rem; margin-bottom: 12px; }

.testimonial-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 16px;
}

.testimonial-highlight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #22c55e;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.feature-card {
  padding: 28px;
  border-radius: 14px;
  text-align: center;
}

.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}

.feature-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 0.8rem; color: var(--text-muted); }

.faq-list { max-width: 700px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}
.faq-question:hover { color: #ff6b2b; }

.faq-chevron {
  transition: transform 0.3s;
  color: var(--text-muted);
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner { padding-bottom: 20px; }

.final-cta {
  text-align: center;
  padding: 80px 24px;
}

.price-display {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  color: #ff6b2b;
  display: inline-block;
  animation: priceZoom 2.4s ease-in-out infinite;
}

.price-original {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 12px;
}

.footer {
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer p { font-size: 0.75rem; color: var(--text-dim); }

.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 12px 16px;
  background: linear-gradient(180deg, transparent, #0d0d1c 30%);
}
@media (max-width: 768px) { .mobile-sticky-cta { display: flex; gap: 12px; align-items: center; } }

.mobile-sticky-cta .price-info {
  display: flex;
  flex-direction: column;
}
.mobile-sticky-cta .price-info .current {
  font-size: 1.2rem;
  font-weight: 900;
  color: #ff6b2b;
}
.mobile-sticky-cta .price-info .original {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.mobile-sticky-cta .btn-orange {
  flex: 1;
  padding: 12px;
  font-size: 0.9rem;
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal-overlay.active { display: flex; }

.modal-card {
  background: linear-gradient(145deg, #1a0f2e, #140821);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 28px;
  max-width: 440px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.4);
  font-size: 18px;
  transition: all 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.1); color: #fff; }

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.step-dot {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: #fff;
}

.step-line {
  width: 32px; height: 4px; border-radius: 4px;
}

.upi-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 8px;
}

.upi-id {
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ff6b2b;
  letter-spacing: 0.5px;
}

.copy-btn {
  padding: 6px 14px;
  border-radius: 8px;
  border: none;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  color: #fff;
}

.pay-apps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.pay-app-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}
.pay-app-btn:hover { transform: translateY(-1px); }

.pay-app-btn span {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus { border-color: #ff6b2b; }
.form-group input::placeholder { color: rgba(255,255,255,0.2); }

.form-error {
  color: #f87171;
  font-size: 0.75rem;
  margin-top: 4px;
}

.form-hint {
  font-size: 0.65rem;
  color: var(--text-dim);
  margin-top: 4px;
}

.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.modal-actions .btn-back {
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.modal-actions .btn-back:hover { border-color: rgba(255,255,255,0.3); color: #fff; }

.modal-actions .btn-orange { flex: 1; }

.modal-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.7rem;
  color: var(--text-dim);
}

.countdown-grid {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}

.countdown-box {
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.35);
  border-radius: 10px;
  min-width: 72px;
  padding: 12px 8px;
  text-align: center;
}

.countdown-box .number {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}

.countdown-box .unit {
  display: block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 2px;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 20px 24px;
  max-width: 800px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.trust-item svg { color: #22c55e; }

.stats-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px 24px;
  flex-wrap: wrap;
}

.stat-item { text-align: center; }
.stat-item .number {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
}
.stat-item .label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.yt-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

.yt-embed {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.yt-embed iframe {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border: none;
}

.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.login-card {
  background: linear-gradient(145deg, #1a0f2e, #140821);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px 32px;
  max-width: 420px;
  width: 100%;
}

.login-header {
  text-align: center;
  margin-bottom: 32px;
}
.login-header .logo { font-size: 2rem; }
.login-header h2 { font-size: 1.4rem; font-weight: 800; margin: 16px 0 8px; }
.login-header p { font-size: 0.85rem; color: var(--text-muted); }

.login-footer {
  margin-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.login-footer a { color: #ff6b2b; font-weight: 600; }

.alert {
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}
.alert-error {
  background: rgba(248,113,113,0.1);
  border: 1px solid rgba(248,113,113,0.25);
  color: #f87171;
}
.alert-success {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  color: #22c55e;
}

.access-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  max-width: 1200px;
  margin: 0 auto;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.user-greeting {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.access-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px;
}

.access-approved, .access-pending {
  text-align: center;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.status-verified {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #22c55e;
}
.status-pending {
  background: rgba(251,191,36,0.1);
  border: 1px solid rgba(251,191,36,0.3);
  color: #fbbf24;
}
.status-rejected {
  background: rgba(248,113,113,0.1);
  border: 1px solid rgba(248,113,113,0.3);
  color: #f87171;
}

.access-approved h1, .access-pending h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.access-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 40px;
}

.course-links-grid {
  text-align: left;
  margin-top: 32px;
}

.course-link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 14px;
  transition: all 0.2s;
  text-decoration: none;
  margin-bottom: 16px;
}
.course-link-card:hover { transform: translateY(-2px); }

.main-drive {
  background: linear-gradient(135deg, rgba(255,107,43,0.08), rgba(124,58,237,0.08));
  border: 1px solid rgba(255,107,43,0.2);
}
.main-drive:hover { border-color: rgba(255,107,43,0.4); }

.course-link-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.drive-icon { background: rgba(255,107,43,0.15); color: #ff6b2b; }

.course-link-info h3 { font-size: 1rem; font-weight: 700; }
.course-link-info p { font-size: 0.8rem; color: var(--text-muted); }

.bonus-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 32px 0 16px;
  color: var(--text);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.bonus-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.2s;
  text-decoration: none;
}
.bonus-card:hover { border-color: rgba(124,58,237,0.35); transform: translateY(-1px); }

.bonus-title { font-size: 0.8rem; font-weight: 600; color: var(--text); }
.bonus-size { font-size: 0.7rem; font-weight: 700; color: var(--purple-light); }

.pending-details-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 24px;
  max-width: 400px;
  margin: 0 auto 32px;
  text-align: left;
}

.pending-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pending-detail-row:last-child { border-bottom: none; }

.detail-label { font-size: 0.8rem; color: var(--text-muted); }
.detail-value { font-size: 0.85rem; font-weight: 600; }
.status-text-pending { color: #fbbf24; }

.pending-info-box {
  background: rgba(124,58,237,0.06);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 12px;
  padding: 20px 24px;
  max-width: 500px;
  margin: 0 auto 24px;
  text-align: left;
}
.pending-info-box h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 12px; }
.pending-info-box ul { list-style: none; }
.pending-info-box li {
  padding: 6px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pending-info-box li::before { content: "✓"; color: #22c55e; font-weight: 700; }

.support-text {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 24px;
}
.support-text a, .support-email { color: #ff6b2b; font-weight: 600; }

.admin-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 12px;
}

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

.admin-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  padding: 20px;
  border-radius: 14px;
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.stat-card.stat-pending { border-color: rgba(251,191,36,0.3); }
.stat-card.stat-verified { border-color: rgba(34,197,94,0.3); }
.stat-card.stat-rejected { border-color: rgba(248,113,113,0.3); }

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
}
.stat-pending .stat-number { color: #fbbf24; }
.stat-verified .stat-number { color: #22c55e; }
.stat-rejected .stat-number { color: #f87171; }

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.search-bar {
  margin-bottom: 24px;
}
.search-bar form {
  display: flex;
  gap: 12px;
  align-items: center;
}
.search-bar input {
  flex: 1;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
}
.search-bar input:focus { border-color: #ff6b2b; }
.search-bar input::placeholder { color: rgba(255,255,255,0.2); }
.search-bar .btn-orange { padding: 12px 24px; font-size: 0.85rem; }

.table-wrapper {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 768px) { .table-wrapper { display: none; } }

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.admin-table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.admin-table code {
  background: rgba(255,107,43,0.1);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  color: #ff9548;
}

.badge {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}
.badge-pending { background: rgba(251,191,36,0.1); color: #fbbf24; border: 1px solid rgba(251,191,36,0.3); }
.badge-verified { background: rgba(34,197,94,0.1); color: #22c55e; border: 1px solid rgba(34,197,94,0.3); }
.badge-rejected { background: rgba(248,113,113,0.1); color: #f87171; border: 1px solid rgba(248,113,113,0.3); }

.actions-cell { white-space: nowrap; }

.action-btn {
  padding: 6px 14px;
  border-radius: 6px;
  border: none;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  margin-right: 4px;
  transition: all 0.2s;
}
.btn-approve { background: rgba(34,197,94,0.15); color: #22c55e; border: 1px solid rgba(34,197,94,0.3); }
.btn-approve:hover { background: rgba(34,197,94,0.25); }
.btn-reject { background: rgba(248,113,113,0.15); color: #f87171; border: 1px solid rgba(248,113,113,0.3); }
.btn-reject:hover { background: rgba(248,113,113,0.25); }
.btn-pending-action { background: rgba(251,191,36,0.15); color: #fbbf24; border: 1px solid rgba(251,191,36,0.3); }
.btn-pending-action:hover { background: rgba(251,191,36,0.25); }

.mobile-cards { display: none; }
@media (max-width: 768px) { .mobile-cards { display: block; } }

.payment-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 16px;
}

.card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.card-detail {
  font-size: 0.8rem;
  padding: 6px 0;
  color: rgba(255,255,255,0.7);
}
.card-detail span { color: var(--text-muted); margin-right: 8px; }
.card-detail code {
  background: rgba(255,107,43,0.1);
  padding: 2px 6px;
  border-radius: 4px;
  color: #ff9548;
}

.card-actions {
  margin-top: 12px;
  display: flex;
  gap: 8px;
}

.empty-state {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-icons { gap: 16px; }
  .nav-simple { padding: 12px 16px; }
  .section { padding: 40px 16px; }
  .categories-grid { grid-template-columns: 1fr; }
  .modal-card { padding: 24px 20px; }
  .admin-nav { padding: 12px 16px; }
  .admin-container { padding: 20px 16px; }
  .bonus-grid { grid-template-columns: 1fr; }
}
