:root {
  --bg-color: #000000;
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.08);
  --text-main: #ffffff;
  --text-muted: #a0a5ad;
  --accent: #00ff88;
  --accent-glow: rgba(0, 255, 136, 0.35);
  --green-accent: #00ff88;
  --green-dark: #00c868;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

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

/* Utility Classes */
.hidden {
  display: none !important;
}

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

/* Background Gradients Glow */
.bg-glow-1 {
  position: fixed;
  top: -10%;
  left: 20%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.12) 0%, rgba(0,0,0,0) 70%);
  z-index: -1;
  pointer-events: none;
}

.bg-glow-2 {
  position: fixed;
  bottom: 10%;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.08) 0%, rgba(0,0,0,0) 70%);
  z-index: -1;
  pointer-events: none;
}

/* ─── Navigation Header ─────────────────────────────────────────────────── */
.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}

.nav-logo h1 {
  background: linear-gradient(90deg, #00f0ff, #ff007f);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #00f0ff;
  display: inline-block;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

.nav-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 240, 255, 0.3);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.nav-social-btn:hover {
  background: rgba(0, 240, 255, 0.12);
  border-color: rgba(255, 0, 127, 0.6);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.35);
  transform: translateY(-1px);
}

.nav-social-name {
  color: #fff !important;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.2px;
}

.nav-social-badge {
  background: linear-gradient(90deg, #00f0ff, #ff007f);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.18rem 0.55rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  box-shadow: 0 2px 8px rgba(255, 0, 127, 0.35);
}

.nav-admin-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  transition: all 0.3s ease !important;
}

.nav-admin-btn:hover {
  background: var(--accent);
  color: #000 !important;
  border-color: var(--accent);
}

/* ─── Hero Section ──────────────────────────────────────────────────────── */
.hero-section {
  text-align: center;
  padding: 5rem 1rem 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.3);
  color: var(--accent);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.gradient-text {
  background: linear-gradient(90deg, #00ff88, #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary-glow {
  background: var(--green-accent);
  color: #000000;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.35);
  transition: all 0.3s ease;
}

.btn-primary-glow:hover {
  transform: translateY(-3px);
  background: #25ff98;
  box-shadow: 0 15px 40px rgba(0, 255, 136, 0.55);
}

.btn-secondary-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-secondary-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--green-accent);
  color: var(--green-accent);
}

/* ─── MediaFire Trust Banner & Info ─────────────────────────────────────── */
.mediafire-trust-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.25);
  border-radius: 50px;
  padding: 0.65rem 1.4rem;
  margin: -1.2rem auto 2.5rem auto;
  max-width: 680px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
}

.trust-shield {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 255, 136, 0.15);
  flex-shrink: 0;
}

.trust-text {
  font-size: 0.88rem;
  color: #cfd3dc;
  text-align: left;
  line-height: 1.35;
}

.trust-text strong {
  color: #00ff88;
  font-weight: 700;
}

.mediafire-note-box {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 12px;
  padding: 1rem 1.4rem;
  max-width: 800px;
  margin: 2rem auto 0 auto;
  text-align: left;
  color: #cfd3dc;
  font-size: 0.88rem;
  line-height: 1.5;
}

.mediafire-note-box svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.mediafire-note-box strong {
  color: #00f0ff;
}

@media (max-width: 640px) {
  .mediafire-trust-banner {
    border-radius: 14px;
    padding: 0.75rem 1rem;
    margin: -1rem 0.5rem 2rem 0.5rem;
    flex-direction: row;
    text-align: left;
  }
  .trust-text {
    font-size: 0.82rem;
  }
  .mediafire-note-box {
    margin: 1.5rem 0.5rem 0 0.5rem;
    padding: 0.85rem 1rem;
    font-size: 0.82rem;
  }
}

/* ─── App Mockup Showcase ──────────────────────────────────────────────── */
.app-mockup-wrapper {
  max-width: 1000px;
  margin: 0 auto 5rem;
  padding: 0 1rem;
}

.app-mockup-card {
  background: rgba(18, 18, 28, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.mockup-title {
  margin-left: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: monospace;
}

/* ─── Differentials Section ────────────────────────────────────────────── */
.differentials-section {
  max-width: 1200px;
  margin: 0 auto 6rem;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

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

.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.diff-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.diff-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 136, 0.3);
}

.diff-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(0, 255, 136, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--green-accent);
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
}

.diff-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.diff-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ─── Comparison Table (BaixaHit vs Sites Genéricos) ────────────────────── */
.comparison-section {
  max-width: 1000px;
  margin: 0 auto 6rem;
  padding: 0 1.5rem;
}

.comparison-table-wrapper {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
  background: rgba(255, 255, 255, 0.04);
  font-size: 1rem;
  font-weight: 700;
}

.highlight-col {
  color: var(--green-accent);
  font-weight: 800;
}

.check-icon { color: #00ff88; font-weight: bold; }
.cross-icon { color: #888888; font-weight: bold; }

/* ─── How It Works Section (Tutorial & Guide) ───────────────────────────── */
.how-it-works-section {
  max-width: 1200px;
  margin: 0 auto 6rem;
  padding: 0 1.5rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

.step-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 2rem 1.6rem;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 136, 0.3);
}

.step-number {
  width: 44px;
  height: 44px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid var(--green-accent);
  color: var(--green-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.step-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #fff;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.features-explanation-card {
  margin-top: 2.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feat-col h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green-accent);
}

.feat-col p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ─── Pricing Section ──────────────────────────────────────────────────── */
.pricing-section {
  max-width: 1200px;
  margin: 0 auto 6rem;
  padding: 0 1.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.price-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.25);
}

.price-card.featured {
  background: rgba(0, 255, 136, 0.04);
  border: 2px solid var(--green-accent);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
}

.badge-featured {
  position: absolute;
  top: -14px;
  right: 25px;
  background: var(--green-accent);
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  letter-spacing: 1px;
}

.plan-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.plan-price {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.plan-price span {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 400;
}

.plan-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.8rem;
  min-height: 2.8rem;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}

.plan-features li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
}

.plan-btn {
  width: 100%;
  padding: 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--green-accent);
  background: rgba(0, 255, 136, 0.08);
  color: var(--green-accent);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.plan-btn:hover {
  background: var(--green-accent);
  color: #000;
  box-shadow: 0 0 20px var(--accent-glow);
}

.plan-btn.featured-btn {
  background: var(--green-accent);
  color: #000;
  font-weight: 800;
  border: none;
}

.plan-btn.featured-btn:hover {
  background: #25ff98;
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.6);
  transform: scale(1.02);
}

/* ─── Footer ────────────────────────────────────────────────────────────── */
footer {
  text-align: center;
  padding: 3rem 1rem;
  border-top: 1px solid var(--card-border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ─── Admin Dashboard Specific Styling ──────────────────────────────────── */
.admin-container {
  max-width: 1100px;
  margin: 2rem auto 5rem;
  padding: 0 1.5rem;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--card-border);
}

.admin-login-modal {
  max-width: 420px;
  margin: 6rem auto;
  background: rgba(18, 18, 28, 0.9);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  backdrop-filter: blur(20px);
}

.admin-input-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.admin-input-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.admin-input-group input,
.admin-input-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}

.admin-input-group input:focus {
  border-color: var(--accent);
}

.admin-btn-action {
  width: 100%;
  padding: 0.8rem 1.5rem;
  background: var(--green-accent);
  color: #000;
  border: none;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

.admin-btn-action:hover {
  opacity: 0.9;
}

.generator-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.generated-key-banner {
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid var(--green-accent);
  border-radius: 12px;
  padding: 1.2rem;
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.generated-key-banner strong {
  font-family: monospace;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 1px;
}

.copy-btn {
  background: var(--green-accent);
  color: #000;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.copy-btn:hover {
  opacity: 0.9;
}

.keys-table-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  overflow: hidden;
}

.keys-table {
  width: 100%;
  border-collapse: collapse;
}

.keys-table th, .keys-table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
}

.keys-table th {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
}

.badge-key-pro {
  background: rgba(0, 255, 136, 0.15);
  color: var(--green-accent);
  border: 1px solid var(--green-accent);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}

.badge-key-vip {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ─── Mobile Responsiveness & PWA Optimizations ──────────────────────────── */
@media (max-width: 768px) {
  .nav-header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    text-align: center;
  }

  .nav-links {
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-section {
    padding: 2.5rem 1rem 3rem;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    padding: 0 0.5rem;
  }

  .btn-primary-glow,
  .btn-secondary-glass {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }

  .differentials-section,
  .comparison-section,
  .pricing-section {
    margin-bottom: 3.5rem;
    padding: 0 1rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .differentials-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  .app-mockup-wrapper {
    padding: 0 0.5rem;
    margin-bottom: 3rem;
  }

  .app-mockup-card {
    padding: 1rem 0.8rem;
  }

  .mockup-player-panel {
    flex-direction: column;
  }

  /* Admin mobile responsiveness */
  .admin-login-modal {
    margin: 2rem 1rem;
    padding: 2rem 1.2rem;
  }

  .admin-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .generator-card {
    padding: 1.2rem;
  }

  .generated-key-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .copy-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.85rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.8rem;
  }

  .plan-price {
    font-size: 2rem;
  }
}

/* ─── Premium Pop-up Modal & Toasts (Replaces Native Alert/Confirm) ──────── */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 99999;
  pointer-events: none;
}

.toast-msg {
  background: rgba(18, 18, 30, 0.95);
  border: 1px solid var(--accent);
  color: #fff;
  padding: 1rem 1.4rem;
  border-radius: 12px;
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--accent-glow);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  animation: slideInToast 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  pointer-events: auto;
  max-width: 380px;
}

.toast-msg.toast-error {
  border-color: #ff4d4d;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 77, 77, 0.4);
}

.toast-msg.toast-pro {
  border-color: var(--pink-accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 0, 127, 0.4);
}

@keyframes slideInToast {
  from {
    transform: translateY(30px) scale(0.9);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* Custom Modal Dialog */
.custom-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99990;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 1rem;
}

.custom-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.custom-modal-card {
  background: rgba(18, 18, 30, 0.96);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2.2rem 2rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  transform: scale(0.92);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-modal-backdrop.active .custom-modal-card {
  transform: scale(1);
}

.custom-modal-icon {
  font-size: 2.8rem;
  margin-bottom: 0.8rem;
}

.custom-modal-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: #fff;
}

.custom-modal-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.8rem;
}

.custom-modal-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}

.custom-modal-btn {
  flex: 1;
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}

.custom-modal-btn.btn-confirm {
  background: var(--green-accent);
  color: #000;
  font-weight: 800;
}

.custom-modal-btn.btn-danger {
  background: #ff4d4d;
  color: #fff;
}

.custom-modal-btn.btn-cancel {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.custom-modal-btn:hover {
  opacity: 0.9;
}

/* ─── Modern Footer & Legal Links ───────────────────────────────────────── */
footer {
  text-align: center;
  padding: 3rem 1.5rem 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(7, 7, 13, 0.8);
  backdrop-filter: blur(10px);
  margin-top: 4rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #00f0ff;
  text-decoration: underline;
}

.footer-dot {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
}

footer p {
  color: #6c7280;
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
}

.footer-disclaimer {
  max-width: 720px;
  margin: 0.8rem auto 0 auto !important;
  font-size: 0.78rem !important;
  color: #555b66 !important;
  line-height: 1.5;
}


