/* ==========================================================================
   SHIBA SPACE (www.shibatoken.space) - MODERN CYBER/GOLD DESIGN SYSTEM
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-primary: #08080c;
  --bg-secondary: #0f0f18;
  --bg-tertiary: #161526;
  --bg-card: rgba(22, 21, 38, 0.75);
  --bg-card-hover: rgba(32, 30, 56, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --bg-glass-strong: rgba(255, 255, 255, 0.07);

  /* Gold Gradients & Accents */
  --gold-primary: #f59e0b;
  --gold-light: #fbbf24;
  --gold-dark: #b45309;
  --gold-glow: rgba(245, 158, 11, 0.4);
  --gold-gradient: linear-gradient(135deg, #fcd34d 0%, #f59e0b 50%, #d97706 100%);
  --gold-border-gradient: linear-gradient(135deg, rgba(251, 191, 36, 0.6), rgba(217, 119, 6, 0.1));

  /* Crimson / Shibarium Red Accents */
  --red-primary: #ff334b;
  --red-dark: #b91c1c;
  --red-glow: rgba(255, 51, 75, 0.4);
  --red-gradient: linear-gradient(135deg, #ff4d6d 0%, #ff334b 50%, #c9184a 100%);

  /* Neon / Cyber Accents */
  --cyan-accent: #06b6d4;
  --purple-accent: #a855f7;
  --green-accent: #10b981;

  /* Typography Colors */
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-gold: #fbbf24;
  --text-crimson: #ff4d6d;

  /* Borders & Shadows */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(245, 158, 11, 0.35);
  --border-red: rgba(255, 51, 75, 0.35);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.7);
  --shadow-gold-glow: 0 0 30px rgba(245, 158, 11, 0.25);
  --shadow-red-glow: 0 0 30px rgba(255, 51, 75, 0.25);

  /* Layout & Sizing */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --container-max: 1320px;

  /* Transitions */
  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #2a2842;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Typography Helpers */
h1, h2, h3, h4, .font-heading {
  font-family: 'Space Grotesk', 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.gradient-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-red {
  background: var(--red-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-hybrid {
  background: linear-gradient(135deg, #fbbf24 0%, #ff4d6d 60%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Canvas Background */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.65;
}

/* Ambient Glow Orbs */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.22;
  animation: floatAmbient 18s ease-in-out infinite alternate;
}

.ambient-gold {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #f59e0b 0%, rgba(245, 158, 11, 0) 70%);
  top: 5%;
  right: -100px;
}

.ambient-crimson {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #ff334b 0%, rgba(255, 51, 75, 0) 70%);
  bottom: 10%;
  left: -150px;
  animation-duration: 22s;
}

@keyframes floatAmbient {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 30px) scale(1.1); }
  100% { transform: translate(30px, -20px) scale(0.95); }
}

/* Global Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   TOP TICKER BAR
   ========================================================================== */
.ticker-wrap {
  width: 100%;
  background: #0a0912;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  padding: 8px 0;
  position: relative;
  z-index: 101;
}

.ticker-content {
  display: flex;
  white-space: nowrap;
  gap: 40px;
  animation: tickerSlide 40s linear infinite;
}

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

.ticker-item .val {
  color: #ffffff;
  font-weight: 700;
}

.ticker-item .positive {
  color: #10b981;
}

.ticker-item .accent {
  color: var(--gold-light);
}

.ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-primary);
  display: inline-block;
}

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

/* ==========================================================================
   POLISHED STICKY HEADER & DROPDOWN SUBMENUS
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 12px 0;
  background: rgba(8, 8, 12, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
  transition: all var(--transition-normal);
}

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

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-main);
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 18px rgba(245, 158, 11, 0.45);
  border: 1.5px solid rgba(245, 158, 11, 0.7);
  flex-shrink: 0;
  transition: transform var(--transition-bounce), box-shadow var(--transition-fast);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.08) rotate(6deg);
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.7);
}

.logo-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.45);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.brand-subtitle {
  font-size: 0.65rem;
  color: var(--gold-light);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
}

/* BSC Pegged Token Box */
.bsc-pegged-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(243, 186, 47, 0.12);
  border: 1px solid rgba(243, 186, 47, 0.35);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  color: #f3ba2f;
  font-size: 0.8rem;
  font-weight: 700;
}

.bsc-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.bsc-feature-item {
  background: rgba(243, 186, 47, 0.04);
  border: 1px solid rgba(243, 186, 47, 0.15);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all var(--transition-fast);
}

.bsc-feature-item:hover {
  background: rgba(243, 186, 47, 0.08);
  border-color: rgba(243, 186, 47, 0.4);
  transform: translateY(-3px);
}

/* Main Navigation Bar */
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
  color: #0f0d03;
  background: var(--gold-gradient);
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.35);
}

/* Dropdown Submenu Container */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-arrow {
  font-size: 0.65rem;
  transition: transform var(--transition-fast);
  color: var(--gold-light);
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  min-width: 250px;
  background: rgba(15, 14, 24, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(245, 158, 11, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}

/* Dropdown Submenu Items */
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.dropdown-item:hover, .dropdown-item.active {
  background: rgba(245, 158, 11, 0.12);
  color: #ffffff;
}

.dropdown-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.dropdown-text {
  display: flex;
  flex-direction: column;
}

.dropdown-title {
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}

.dropdown-desc {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 2px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.chain-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 51, 75, 0.1);
  border: 1px solid rgba(255, 51, 75, 0.3);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffa4b2;
  white-space: nowrap;
}

.live-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--red-primary);
  box-shadow: 0 0 8px var(--red-primary);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all var(--transition-fast);
  font-family: inherit;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #0f0d03;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245, 158, 11, 0.55);
}

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

.btn-crimson {
  background: var(--red-gradient);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(255, 51, 75, 0.35);
}

.btn-crimson:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 51, 75, 0.55);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-light);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 6px 14px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 13px 30px;
  font-size: 1rem;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 290px;
  height: 100vh;
  background: #0d0c17;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1000;
  transition: right 0.35s ease;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-group-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 10px;
  margin-bottom: 4px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.mobile-nav-links a.active, .mobile-nav-links a:hover {
  color: #fff;
  background: rgba(245, 158, 11, 0.15);
}

/* ==========================================================================
   SUBPAGE HERO BANNER
   ========================================================================== */
.page-hero {
  padding: 60px 0 40px 0;
  text-align: center;
  position: relative;
}

.page-hero-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.page-hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.breadcrumb a {
  color: var(--gold-light);
  text-decoration: none;
}

/* Section Header Structure */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}

.section-tag.crimson-tag {
  background: rgba(255, 51, 75, 0.1);
  border-color: rgba(255, 51, 75, 0.25);
  color: var(--red-primary);
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Glassmorphism Card System */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(245, 158, 11, 0.12);
  transform: translateY(-4px);
}

.glass-card.card-crimson:hover {
  border-color: rgba(255, 51, 75, 0.35);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(255, 51, 75, 0.15);
}

/* ==========================================================================
   HERO SECTION (HOME)
   ========================================================================== */
.hero-section {
  padding: 60px 0 80px 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-badge-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--gold-light);
  backdrop-filter: blur(8px);
}

.badge-pill.hot {
  background: rgba(255, 51, 75, 0.15);
  border-color: rgba(255, 51, 75, 0.4);
  color: #ff7588;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 22px;
  font-weight: 800;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-card {
  display: flex;
  flex-direction: column;
}

.hero-stat-val {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  color: #ffffff;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Hero Visual 3D Showcase */
.hero-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mascot-card-outer {
  position: relative;
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-xl);
  padding: 12px;
  background: linear-gradient(145deg, rgba(245, 158, 11, 0.3), rgba(255, 51, 75, 0.2) 50%, rgba(255, 255, 255, 0.05));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(245, 158, 11, 0.2);
  transition: transform 0.4s ease;
}

.mascot-card-inner {
  position: relative;
  border-radius: calc(var(--radius-xl) - 4px);
  overflow: hidden;
  background: #0d0c14;
}

.mascot-card-inner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mascot-card-outer:hover .mascot-card-inner img {
  transform: scale(1.04);
}

/* Floating Status Badges on Mascot */
.float-card {
  position: absolute;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  background: rgba(15, 15, 24, 0.85);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  animation: floatCard 6s ease-in-out infinite alternate;
}

.float-card.top-left {
  top: -15px;
  left: -20px;
  border-color: rgba(245, 158, 11, 0.4);
}

.float-card.bottom-right {
  bottom: -20px;
  right: -20px;
  border-color: rgba(255, 51, 75, 0.4);
  animation-delay: -3s;
}

@keyframes floatCard {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-12px); }
}

.float-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #000;
}

.float-card-icon.crimson {
  background: var(--red-gradient);
  color: #fff;
}

.float-card-content h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}

.float-card-content p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   PILLARS / CORE ADVANTAGES
   ========================================================================== */
.pillars-section {
  padding: 60px 0;
  position: relative;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pillar-card {
  padding: 32px 24px;
  text-align: center;
  position: relative;
}

.pillar-icon-box {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px auto;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(255, 51, 75, 0.15));
  border: 1px solid rgba(245, 158, 11, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold-light);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition-bounce), border-color var(--transition-fast);
}

.pillar-card:hover .pillar-icon-box {
  transform: scale(1.12) rotate(4deg);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold-glow);
}

.pillar-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.pillar-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   INVESTMENT PLANS (SHIBA XPRESS)
   ========================================================================== */
.plans-section {
  padding: 60px 0;
  position: relative;
}

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

.plan-card {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.plan-card.popular {
  border-color: rgba(245, 158, 11, 0.6);
  box-shadow: var(--shadow-lg), 0 0 35px rgba(245, 158, 11, 0.2);
  transform: scale(1.03);
}

.plan-card.popular:hover {
  transform: scale(1.05) translateY(-4px);
}

.plan-ribbon {
  position: absolute;
  top: 20px;
  right: -32px;
  background: var(--gold-gradient);
  color: #000;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 36px;
  transform: rotate(45deg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.5px;
}

.plan-header {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-tag {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.plan-name {
  font-size: 2rem;
  margin: 6px 0 10px 0;
}

.plan-range {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
}

.plan-rate-box {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.rate-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.rate-item:last-child {
  margin-bottom: 0;
}

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

.rate-val {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.rate-val.highlight {
  color: var(--gold-light);
}

.plan-multiplier-badge {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.multiplier-pill {
  flex: 1;
  text-align: center;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 8px 4px;
  border-radius: var(--radius-sm);
}

.multiplier-pill.six-x {
  background: rgba(255, 51, 75, 0.1);
  border-color: rgba(255, 51, 75, 0.25);
}

.multiplier-val {
  font-size: 1.15rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  color: #ffffff;
}

.multiplier-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
}

.plan-features {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.92rem;
  color: #d1d5db;
}

.plan-features li i {
  color: #10b981;
  font-size: 1rem;
}

/* Plan Note Box */
.plan-disclaimer-card {
  background: rgba(245, 158, 11, 0.06);
  border: 1px dashed rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.plan-disclaimer-card i {
  font-size: 1.8rem;
  color: var(--gold-light);
}

.plan-disclaimer-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ==========================================================================
   INTERACTIVE ROI CALCULATOR
   ========================================================================== */
.calculator-section {
  padding: 60px 0;
  position: relative;
}

.calc-card-main {
  padding: 48px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.calc-inputs-col h3 {
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.calc-group {
  margin-bottom: 24px;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.calc-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
}

.calc-val-display {
  font-size: 1.35rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--gold-light);
}

.range-slider {
  width: 100%;
  height: 8px;
  -webkit-appearance: none;
  background: #232238;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-gradient);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.8);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.preset-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.preset-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.preset-btn:hover, .preset-btn.active {
  background: var(--gold-gradient);
  color: #000;
  border-color: transparent;
}

/* Plan Selection Tabs */
.plan-tabs-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.plan-tab-btn {
  padding: 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-fast);
  font-size: 0.88rem;
}

.plan-tab-btn.active {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--gold-light);
  color: #ffffff;
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.2);
}

/* Calc Results Column */
.calc-results-card {
  background: #11101d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.calc-metric-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.calc-metric-box:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

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

.metric-number {
  font-size: 1.35rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  color: #ffffff;
}

.metric-number.gold {
  color: var(--gold-light);
}

.metric-number.red {
  color: #ff526c;
}

/* ==========================================================================
   EXAMPLE PAYOUTS MATRIX TABLE
   ========================================================================== */
.table-section {
  padding: 60px 0;
}

.matrix-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-card);
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 0.92rem;
}

.matrix-table th {
  background: rgba(255, 255, 255, 0.05);
  padding: 16px 12px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  color: #ffffff;
  border-bottom: 2px solid rgba(245, 158, 11, 0.3);
  letter-spacing: 0.5px;
}

.matrix-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: #e2e8f0;
}

.matrix-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.col-invest {
  font-weight: 800;
  color: var(--gold-light) !important;
}

.table-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

.table-badge.two-x {
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.table-badge.six-x {
  background: rgba(255, 51, 75, 0.15);
  color: #ff6e82;
  border: 1px solid rgba(255, 51, 75, 0.3);
}

/* ==========================================================================
   AFFILIATE / LEVEL INCOME & SUPER BONUS
   ========================================================================== */
.rewards-section {
  padding: 60px 0;
  position: relative;
}

/* 21 Level Grid */
.level-income-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 14px;
  margin-bottom: 40px;
}

.level-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  text-align: center;
  transition: all var(--transition-fast);
}

.level-card:hover {
  background: rgba(245, 158, 11, 0.08);
  border-color: var(--gold-light);
  transform: translateY(-3px);
}

.level-number {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.level-percentage {
  font-size: 1.45rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  color: #ffffff;
}

.level-card.tier-1 .level-percentage { color: var(--gold-light); }
.level-card.tier-2 .level-percentage { color: #ff8a9a; }

/* Super Bonus 3-Leg Section */
.super-bonus-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.leg-structure-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.leg-diagram {
  display: flex;
  justify-content: space-around;
  gap: 16px;
  margin: 28px 0;
}

.leg-item {
  flex: 1;
  background: rgba(15, 15, 24, 0.8);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-md);
  padding: 20px 12px;
  text-align: center;
}

.leg-item.middle {
  border-color: rgba(255, 51, 75, 0.3);
}

.leg-ratio {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--gold-light);
}

.leg-item.middle .leg-ratio {
  color: #ff6e82;
}

.leg-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
}

/* Super Bonus Target Table */
.bonus-target-table {
  width: 100%;
  border-collapse: collapse;
}

.bonus-target-table th {
  text-align: left;
  padding: 12px;
  font-size: 0.85rem;
  color: var(--text-dim);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bonus-target-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.95rem;
}

.bonus-target-table .target-val {
  font-weight: 700;
  color: #ffffff;
}

.bonus-target-table .reward-val {
  font-weight: 800;
  color: #10b981;
  font-family: 'Space Grotesk', sans-serif;
}

/* ==========================================================================
   SHIBARIUM L2 & METAVERSE SHOWCASE
   ========================================================================== */
.shibarium-section {
  padding: 60px 0;
  position: relative;
}

.shibarium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.shibarium-metaverse-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 51, 75, 0.25);
  border: 1px solid rgba(255, 51, 75, 0.3);
}

.shibarium-metaverse-visual img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.shibarium-metaverse-visual:hover img {
  transform: scale(1.05);
}

.metaverse-overlay-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.shibarium-feature-list {
  list-style: none;
  margin: 30px 0;
}

.shibarium-feature-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.shibarium-feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 51, 75, 0.12);
  border: 1px solid rgba(255, 51, 75, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #ff526c;
  flex-shrink: 0;
}

.shibarium-feat-content h4 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.shibarium-feat-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   LIVE BURN TRACKER & TOKENOMICS
   ========================================================================== */
.burn-section {
  padding: 60px 0;
  position: relative;
}

.burn-dashboard-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
}

.burn-counter-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 51, 75, 0.35);
  background: radial-gradient(circle at top right, rgba(255, 51, 75, 0.1), transparent 60%), var(--bg-card);
}

.burn-counter-display {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  color: #ff4d6d;
  letter-spacing: 1px;
  margin: 16px 0;
  text-shadow: 0 0 25px rgba(255, 51, 75, 0.5);
  word-break: break-all;
}

.burn-progress-bar-bg {
  width: 100%;
  height: 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.burn-progress-bar-fill {
  height: 100%;
  width: 41.2%;
  background: var(--red-gradient);
  box-shadow: 0 0 16px rgba(255, 51, 75, 0.8);
  border-radius: 6px;
  transition: width 1s ease;
}

.burn-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.burn-stat-box {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.burn-stat-title {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
}

.burn-stat-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 4px;
}

/* Live Feed */
.live-burn-feed-card {
  padding: 24px;
  max-height: 420px;
  overflow-y: auto;
}

.feed-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.feed-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feed-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.85rem;
  animation: slideInDown 0.3s ease;
}

@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.feed-tx {
  font-family: monospace;
  color: var(--gold-light);
}

.feed-amount {
  font-weight: 700;
  color: #ff526c;
}

/* ==========================================================================
   SUPPORTED EXCHANGES GRID (40+ EXCHANGES)
   ========================================================================== */
.exchanges-section {
  padding: 60px 0;
  position: relative;
}

.exchange-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.exchange-filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.exchange-filter-btn:hover, .exchange-filter-btn.active {
  background: var(--gold-gradient);
  color: #000;
  border-color: transparent;
}

.exchanges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
}

.exchange-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.exchange-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-light);
  transform: translateY(-3px);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.exchange-icon {
  font-size: 1.2rem;
  color: var(--gold-light);
}

/* ==========================================================================
   WITHDRAWAL & CAPPING RULES
   ========================================================================== */
.rules-section {
  padding: 60px 0;
}

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

.rule-card {
  padding: 30px;
}

.rule-badge-num {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  margin-bottom: 12px;
}

.rule-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

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

/* ==========================================================================
   PRESENTATION DECK VIEWER & MODAL / IN-PAGE SLIDE DECK
   ========================================================================== */
.whitepaper-banner-section {
  padding: 60px 0;
}

.deck-banner-card {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(255, 51, 75, 0.15) 60%, rgba(22, 21, 38, 0.9));
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-xl);
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.deck-banner-content h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.deck-banner-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin-bottom: 24px;
}

/* Slide Viewer Card (Embedded on presentation page & in modal) */
.slide-viewer-box {
  background: #08080d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.slide-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
}

.slide-title {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--gold-light);
}

.slide-content-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e2e8f0;
  margin-bottom: 24px;
}

.slide-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 12px;
}

/* Slide Thumbnails Grid */
.slide-thumbs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.slide-thumb-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-fast);
}

.slide-thumb-btn:hover, .slide-thumb-btn.active {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--gold-light);
  color: #ffffff;
}

/* ==========================================================================
   CONTACT FORM & SUPPORT
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-card-main {
  padding: 40px;
}

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

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.25);
}

/* ==========================================================================
   MODALS
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.active {
  display: flex;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-container {
  background: #0f0e1a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 900px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 50px rgba(0, 0, 0, 0.9);
  position: relative;
}

.modal-header {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  font-size: 1.2rem;
}

.modal-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.modal-close-btn:hover {
  color: #fff;
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
  flex-grow: 1;
}

/* ==========================================================================
   WEB3 DAPP STAKING DASHBOARD MODAL
   ========================================================================== */
.dapp-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.dapp-wallet-status {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wallet-address-pill {
  font-family: monospace;
  background: #08080d;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--gold-light);
  display: inline-block;
  margin-top: 6px;
}

.dapp-stake-input-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 16px;
  margin: 16px 0;
}

.dapp-stake-input-box input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
}

.reward-ticker-live {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  color: #10b981;
}

/* ==========================================================================
   FAQS & ACCORDIONS
   ========================================================================== */
.faq-section {
  padding: 60px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: rgba(245, 158, 11, 0.4);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
}

.faq-question span.arrow {
  transition: transform var(--transition-fast);
  color: var(--gold-light);
  font-weight: 800;
}

.faq-item.active .faq-question span.arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 20px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #060609;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 70px 0 35px 0;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.contact-info-list {
  list-style: none;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.contact-info-list a {
  color: var(--gold-light);
  text-decoration: none;
}

.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: rgba(15, 15, 24, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #ffffff;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: toastIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   MOBILE BACKDROP & SCROLL LOCK
   ========================================================================== */
body.drawer-open {
  overflow: hidden;
  touch-action: none;
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Floating Back-to-Top Button */
.back-to-top-btn {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #0d0c14;
  border: none;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 95;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-normal);
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.7);
}

/* Prevent auto-zoom on iOS Safari */
input, select, textarea, button {
  font-family: inherit;
}
input[type="text"],
input[type="number"],
input[type="email"],
textarea {
  font-size: 16px !important;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (DESKTOP TO ULTRA-MOBILE)
   ========================================================================== */

/* --- TABLETS & SMALL DESKTOPS (<= 1024px) --- */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-badge-group, .hero-cta-group {
    justify-content: center;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-stats-row {
    max-width: 580px;
    margin: 0 auto;
  }
  .hero-visual-wrapper {
    margin-top: 10px;
  }
  .calc-card-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .super-bonus-layout {
    grid-template-columns: 1fr;
  }
  .shibarium-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .burn-dashboard-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .deck-banner-card {
    flex-direction: column;
    text-align: center;
    padding: 36px;
  }
}

/* --- TABLETS & LARGE SMARTPHONES (<= 768px) --- */
@media (max-width: 768px) {
  :root {
    --container-max: 100%;
  }

  .container {
    padding: 0 18px;
  }

  /* Header & Navigation */
  .site-header {
    padding: 10px 0;
  }

  .header-container {
    gap: 12px;
  }

  .brand-title {
    font-size: 1.05rem;
  }

  .brand-subtitle {
    font-size: 0.6rem;
  }

  .brand-logo-img {
    width: 36px;
    height: 36px;
  }

  .mobile-nav-drawer {
    width: min(320px, 86vw);
    padding: 24px 20px;
  }

  /* Subpage Hero */
  .page-hero {
    padding: 40px 0 24px 0;
  }

  .page-hero-title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
    margin-bottom: 10px;
  }

  .page-hero-desc {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  /* Section Titles */
  .section-header {
    margin-bottom: 36px;
  }

  .section-title {
    font-size: clamp(1.6rem, 5.5vw, 2.2rem);
    margin-bottom: 12px;
  }

  .section-desc {
    font-size: 0.92rem;
  }

  /* Home Hero Section */
  .hero-section {
    padding: 30px 0 45px 0;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(2.1rem, 7.5vw, 3rem);
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .hero-badge-group {
    gap: 8px;
    margin-bottom: 18px;
  }

  .badge-pill {
    padding: 5px 12px;
    font-size: 0.78rem;
  }

  .hero-stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 20px;
  }

  .hero-stat-val {
    font-size: 1.3rem;
  }

  .hero-stat-label {
    font-size: 0.72rem;
  }

  .mascot-card-outer {
    max-width: 320px;
  }

  .float-card.top-left {
    top: -10px;
    left: -10px;
    padding: 8px 12px;
  }

  .float-card.bottom-right {
    bottom: -10px;
    right: -10px;
    padding: 8px 12px;
  }

  .float-card-icon {
    width: 30px;
    height: 30px;
    font-size: 0.95rem;
  }

  .float-card-content h5 {
    font-size: 0.8rem;
  }

  .float-card-content p {
    font-size: 0.68rem;
  }

  /* Cards & Grids */
  .pillars-grid,
  .plans-grid,
  .rules-grid,
  .bsc-card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pillar-card {
    padding: 26px 20px;
  }

  .plan-card {
    padding: 30px 22px;
  }

  .plan-card.popular {
    transform: none;
  }

  .plan-card.popular:hover {
    transform: translateY(-4px);
  }

  .rule-card {
    padding: 24px 20px;
  }

  /* ROI Calculator */
  .calc-card-main {
    padding: 26px 18px;
  }

  .calc-inputs-col h3 {
    font-size: 1.35rem;
    margin-bottom: 18px;
  }

  .calc-results-card {
    padding: 20px 16px;
  }

  .preset-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .preset-btn {
    text-align: center;
    padding: 8px 4px;
    font-size: 0.8rem;
  }

  .range-slider {
    height: 10px;
  }

  .range-slider::-webkit-slider-thumb {
    width: 26px;
    height: 26px;
  }

  /* 21-Level Income Grid */
  .level-income-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .level-card {
    padding: 14px 10px;
  }

  .level-percentage {
    font-size: 1.25rem;
  }

  .level-number {
    font-size: 0.75rem;
  }

  /* Super Bonus 3-Leg */
  .leg-structure-box {
    padding: 24px 18px;
  }

  .leg-diagram {
    gap: 8px;
    margin: 20px 0;
  }

  .leg-item {
    padding: 14px 8px;
  }

  .leg-ratio {
    font-size: 1.3rem;
  }

  .leg-label {
    font-size: 0.72rem;
  }

  /* Burn Tracker */
  .burn-counter-card {
    padding: 26px 18px;
  }

  .burn-counter-display {
    font-size: clamp(1.6rem, 6.5vw, 2.5rem);
  }

  .burn-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .burn-stat-box {
    padding: 12px;
  }

  .burn-stat-number {
    font-size: 1rem;
  }

  .live-burn-feed-card {
    padding: 18px 14px;
    max-height: 360px;
  }

  .feed-item {
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  /* Presentation Deck */
  .slide-viewer-box {
    min-height: 280px;
    padding: 26px 18px;
  }

  .slide-title {
    font-size: 1.35rem;
  }

  .slide-content-text {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .slide-thumbs-grid {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 8px;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .slide-thumb-btn {
    min-width: 95px;
    flex-shrink: 0;
    padding: 8px 6px;
    font-size: 0.76rem;
  }

  /* Supported Exchanges */
  .exchanges-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 10px;
  }

  .exchange-pill {
    padding: 12px 8px;
    font-size: 0.8rem;
  }

  /* Tables */
  .matrix-table-wrap,
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .matrix-table th {
    padding: 12px 8px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .matrix-table td {
    padding: 10px 8px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .bonus-target-table th {
    padding: 10px 8px;
    font-size: 0.78rem;
  }

  .bonus-target-table td {
    padding: 10px 8px;
    font-size: 0.85rem;
  }

  /* Modals */
  .modal-container {
    max-width: 100%;
    border-radius: var(--radius-lg);
  }

  .dapp-modal-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* --- SMARTPHONES (<= 576px) --- */
@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }

  /* Header Compactification */
  .site-header {
    padding: 8px 0;
  }

  .chain-badge {
    display: none;
  }

  #sound-toggle-btn {
    display: none;
  }

  .brand-subtitle {
    display: none;
  }

  .brand-title {
    font-size: 1rem;
  }

  .brand-logo-img {
    width: 34px;
    height: 34px;
  }

  .header-actions {
    gap: 8px;
  }

  .btn-sm {
    padding: 7px 12px;
    font-size: 0.78rem;
  }

  /* Hero CTA Buttons */
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 32px;
  }

  .hero-cta-group .btn {
    width: 100%;
    padding: 12px 20px;
  }

  .hero-stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .hero-stat-val {
    font-size: 1.15rem;
  }

  .hero-stat-label {
    font-size: 0.68rem;
  }

  .mascot-card-outer {
    max-width: 270px;
  }

  .float-card {
    position: relative;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    margin: 8px 0;
    width: 100%;
    animation: none;
  }

  /* Plan selection tabs in ROI calculator */
  .plan-tabs-row {
    gap: 6px;
  }

  .plan-tab-btn {
    font-size: 0.75rem;
    padding: 8px 2px;
  }

  .calc-val-display {
    font-size: 1.15rem;
  }

  .metric-number {
    font-size: 1.15rem;
  }

  /* Slide Controls */
  .slide-controls {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .slide-controls .btn {
    width: 100%;
  }

  .slide-controls span {
    text-align: center;
    margin: 4px 0;
  }

  /* Web3 Bottom Sheet Modal on Mobile */
  .modal-backdrop {
    padding: 0;
    align-items: flex-end;
  }

  .modal-container {
    width: 100%;
    max-height: 88vh;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
  }

  .modal-header {
    padding: 14px 18px;
  }

  .modal-body {
    padding: 16px;
  }

  .reward-ticker-live {
    font-size: 1.45rem;
  }

  /* Toast Centering on Mobile */
  .toast-container {
    left: 14px;
    right: 14px;
    bottom: 16px;
  }

  .toast {
    font-size: 0.85rem;
    padding: 12px 16px;
    width: 100%;
  }

  /* Disclaimer / Note boxes */
  .plan-disclaimer-card {
    flex-direction: column;
    text-align: center;
    padding: 14px;
    gap: 8px;
  }

  /* Exchange filter buttons */
  .exchange-filter-tabs {
    gap: 6px;
  }

  .exchange-filter-btn {
    padding: 6px 12px;
    font-size: 0.78rem;
  }

  .exchanges-grid {
    grid-template-columns: repeat(auto-fill, minmax(95px, 1fr));
    gap: 8px;
  }

  .exchange-pill {
    padding: 10px 4px;
    font-size: 0.75rem;
  }
}

/* --- ULTRA-SMALL PHONES (<= 380px) --- */
@media (max-width: 380px) {
  .hero-title {
    font-size: 1.85rem;
  }

  .hero-stats-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-stat-card {
    align-items: center;
    text-align: center;
  }

  .level-income-grid {
    grid-template-columns: 1fr;
  }

  .leg-diagram {
    flex-direction: column;
  }

  .burn-stats-grid {
    grid-template-columns: 1fr;
  }

  .preset-buttons {
    grid-template-columns: repeat(2, 1fr);
  }
}

