/* ============================================
   BestCryptoPresales – Light Theme Stylesheet
   Clean Light Crypto Theme | Bootstrap 5 | Responsive
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  --primary: #0066cc;
  --primary-dark: #0052a3;
  --primary-light: #e8f0fe;
  --secondary: #6d28d9;
  --accent: #d97706;
  --danger: #dc2626;
  --success: #059669;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --bg-card2: #f1f5f9;
  --border: rgba(0, 102, 204, 0.15);
  --border-light: #e2e8f0;
  --text: #1e293b;
  --text-muted: #64748b;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 30px rgba(0, 102, 204, 0.12);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --transition: 0.3s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  /*color: var(--text);*/
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

/* ============================================
   TICKER BAR
   ============================================ */
.ticker-wrapper {
  background: var(--primary);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
}

.ticker-inner {
  display: flex;
  align-items: center;
  width: 100%;
}

.ticker-label {
  background: rgba(0,0,0,0.2);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ticker-track {
  display: flex;
  gap: 36px;
  animation: tickerScroll 40s linear infinite;
  white-space: nowrap;
  padding-left: 20px;
}

.ticker-track span { font-size: 12px; color: rgba(255,255,255,0.85); }
.ticker-track span strong { color: #fff; }
.ticker-track .up { color: #a7f3d0; font-size: 11px; }
.ticker-track .down { color: #fecaca; font-size: 11px; }

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   NAVBAR
   ============================================ */
#mainNav {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: 14px 0;
  transition: all var(--transition);
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

#mainNav.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text) !important;
}

.brand-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
}

.brand-text span { color: var(--primary); }

.navbar-toggler {
  border: 1px solid var(--border-light);
  color: var(--primary);
  font-size: 1.4rem;
  padding: 4px 10px;
}
.navbar-toggler:focus { box-shadow: none; }

.nav-link {
  color: var(--text-muted) !important;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 14px !important;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary) !important;
  background: var(--primary-light);
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 8px 18px !important;
  border-radius: 50px;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 102, 204, 0.3);
  background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
}

/* ============================================
   HERO
   ============================================ */
.hero-section {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #f0f7ff 0%, #faf5ff 50%, #fff7ed 100%);
}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 10% 40%, rgba(0, 102, 204, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 85% 20%, rgba(109, 40, 217, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 90%, rgba(217, 119, 6, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 102, 204, 0.08);
  border: 1px solid rgba(0, 102, 204, 0.25);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
}

.gradient-text {
  display: block;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-subtitle strong { color: var(--primary); }

.stat-box {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 10px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-image-wrapper {
  position: relative;
  display: inline-block;
}

.hero-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  animation: heroFloat 5s ease-in-out infinite;
  max-height: 440px;
  object-fit: cover;
  width: 100%;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-md);
  animation: cardPulse 3s ease-in-out infinite;
}

.card-1 { bottom: 30px; left: -20px; animation-delay: 0s; }
.card-2 { top: 30px; right: -20px; animation-delay: 1.5s; }

@keyframes cardPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 18px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.trust-row { text-align: center; }

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px;
  border-right: 1px solid var(--border-light);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}
.trust-item:last-child { border-right: none; }
.trust-item i { font-size: 1.4rem; color: var(--primary); }

/* ============================================
   SECTION COMMON
   ============================================ */
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid rgba(0, 102, 204, 0.2);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}

/* ============================================
   PRESALE CARDS
   ============================================ */
.section-presales { background: var(--bg-light); }

.presale-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.presale-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 102, 204, 0.14);
  border-color: rgba(0, 102, 204, 0.3);
}

.presale-card.featured {
  border-color: rgba(217, 119, 6, 0.4);
  box-shadow: 0 0 0 1px rgba(217, 119, 6, 0.15), var(--shadow-md);
}

.presale-card.featured:hover {
  border-color: var(--accent);
  box-shadow: 0 16px 48px rgba(217, 119, 6, 0.18);
}

.featured-ribbon {
  position: absolute;
  top: 14px;
  left: 0;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 14px 4px 10px;
  border-radius: 0 20px 20px 0;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 180px;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.presale-card:hover .card-img-wrap img { transform: scale(1.05); }

.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}

.badge-live { background: rgba(5, 150, 105, 0.15); color: #059669; border: 1px solid rgba(5, 150, 105, 0.35); }
.badge-hot { background: rgba(220, 38, 38, 0.12); color: #dc2626; border: 1px solid rgba(220, 38, 38, 0.25); }
.badge-upcoming { background: rgba(59, 130, 246, 0.12); color: #2563eb; border: 1px solid rgba(59, 130, 246, 0.25); }

.card-body-inner { padding: 20px; flex: 1; display: flex; flex-direction: column; }

.coin-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border-light);
  object-fit: cover;
  flex-shrink: 0;
}

.card-title { font-size: 1rem; font-weight: 700; color: var(--text); }
.ticker-sym { color: var(--text-muted); font-weight: 400; font-size: 0.85rem; }

.chain-tag {
  font-size: 0.72rem;
  color: var(--primary);
  background: var(--primary-light);
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 600;
}

.card-desc { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 14px; flex: 1; }

.progress { height: 6px; background: #e2e8f0; border-radius: 10px; }
.progress-bar { border-radius: 10px; background: linear-gradient(90deg, var(--primary), var(--secondary)); }

.card-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 4px;
}
.card-meta span { display: flex; align-items: center; gap: 4px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.35) !important;
  filter: brightness(1.08);
}

.btn-outline-primary {
  border: 1.5px solid var(--primary) !important;
  color: var(--primary) !important;
  background: transparent !important;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.btn-outline-primary:hover {
  background: var(--primary-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 102, 204, 0.15) !important;
}

.btn-outline-light {
  border-color: rgba(30, 41, 59, 0.3) !important;
  color: var(--text) !important;
  background: transparent !important;
}
.btn-outline-light:hover {
  background: rgba(30, 41, 59, 0.06) !important;
  border-color: rgba(30, 41, 59, 0.5) !important;
}

.btn-warning {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
}

.btn-danger {
  background: var(--danger) !important;
  border-color: var(--danger) !important;
  color: #fff !important;
  animation: urgencyPulse 2s ease-in-out infinite;
}

@keyframes urgencyPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(220, 38, 38, 0); }
}

/* ============================================
   NEWS SECTION
   ============================================ */
.section-news { background: var(--bg-white); }

.news-card-featured {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  box-shadow: var(--shadow);
}
.news-card-featured:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.news-card-featured img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.news-card-featured:hover img { transform: scale(1.04); }

.news-card-body { padding: 20px; }

.news-card-featured h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.news-card-featured h3 a { color: inherit; }
.news-card-featured h3 a:hover { color: var(--primary); }
.news-card-featured p { font-size: 0.9rem; color: var(--text-muted); }

.news-cat {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.news-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 10px;
}
.news-meta i { margin-right: 4px; }

.news-card-small {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  display: flex;
  gap: 14px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.news-card-small:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.news-card-small img {
  width: 120px;
  min-width: 120px;
  height: 90px;
  object-fit: cover;
}

.news-small-body {
  padding: 12px 14px 12px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-small-body h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.4;
  color: var(--text);
}
.news-small-body h4 a { color: inherit; }
.news-small-body h4 a:hover { color: var(--primary); }

/* ============================================
   WHY US – FEATURE CARDS
   ============================================ */
.section-why { background: var(--bg-light); }

.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  height: 100%;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(0, 102, 204, 0.25); box-shadow: var(--shadow-md); }
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.08), rgba(109, 40, 217, 0.08));
  border: 1px solid rgba(0, 102, 204, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0 auto 16px;
}

.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.feature-card p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.section-how {
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.step-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  height: 100%;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.step-card:hover { transform: translateY(-4px); border-color: rgba(0, 102, 204, 0.3); box-shadow: var(--shadow-md); }

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.step-card p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* ============================================
   NEWSLETTER
   ============================================ */
.section-newsletter { background: var(--bg-white); }

.newsletter-box {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(109, 40, 217, 0.05));
  border: 1px solid rgba(0, 102, 204, 0.18);
  border-radius: 20px;
  padding: 44px 40px;
}
.newsletter-box h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 10px; color: var(--text); }
.newsletter-box p { font-size: 0.95rem; color: var(--text-muted); }

.newsletter-form .input-group {
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.newsletter-form .form-control {
  background: transparent;
  border: none;
  color: var(--text);
  padding: 14px 18px;
  font-size: 0.9rem;
}
.newsletter-form .form-control::placeholder { color: var(--text-muted); }
.newsletter-form .form-control:focus { box-shadow: none; background: transparent; color: var(--text); }
.newsletter-form .btn { padding: 14px 22px; border-radius: 0; font-size: 0.9rem; }
.form-text { color: var(--text-muted); font-size: 0.78rem; margin-top: 8px; display: block; }
.logo {
    height: 60px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

@media (max-width: 992px) {
    .logo {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .logo {
        height: 40px;
    }
}

@media (max-width: 576px) {
    .logo {
        height: 35px;
    }
}

/* ============================================
   LEARN SECTION
   ============================================ */
.section-learn { background: var(--bg-light); }

.learn-card {
  display: block;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px;
  height: 100%;
  transition: all var(--transition);
  color: inherit;
  box-shadow: var(--shadow);
}
.learn-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 102, 204, 0.3);
  box-shadow: 0 12px 36px rgba(0, 102, 204, 0.12);
  color: inherit;
}

.learn-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 14px;
}

.learn-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.learn-card p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 16px; }

.learn-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #1e293b;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 60px;
  padding-bottom: 0;
  color: #cbd5e1;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.footer-brand .brand-text span { color: #60a5fa; }

.footer-desc { font-size: 0.875rem; color: #94a3b8; max-width: 300px; }

.social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 1rem;
  transition: all var(--transition);
}
.social-links a:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); }

.site-footer h5 { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: #94a3b8; margin-bottom: 14px; }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li + li { margin-top: 8px; }
.footer-links a { font-size: 0.875rem; color: #94a3b8; transition: color var(--transition); }
.footer-links a:hover { color: #60a5fa; }

.disclaimer-text { font-size: 0.8rem; color: #94a3b8; line-height: 1.6; }

.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.footer-badges span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-top { padding-bottom: 40px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.8rem; color: #94a3b8; margin: 0; }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 999;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 102, 204, 0.35);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-3px); }

/* ============================================
   BOOTSTRAP OVERRIDES
   ============================================ */
.form-control:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.12) !important;
}

/* Table overrides */
.table { color: var(--text); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, #f0f7ff 0%, #faf5ff 100%) !important;
  border-bottom: 1px solid var(--border-light) !important;
}

/* Sidebar for news */
.sidebar-widget {
  background: var(--bg-white) !important;
  border: 1px solid var(--border-light) !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow) !important;
}
.sidebar-widget a { color: var(--text); }
.sidebar-widget a:hover { color: var(--primary); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.99);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 16px;
    margin-top: 10px;
    box-shadow: var(--shadow-md);
  }
  .nav-link { padding: 10px 16px !important; }
  .hero-section { padding: 60px 0 40px; min-height: auto; }
  .hero-float-card { display: none; }
  .hero-stats .stat-num { font-size: 1.2rem; }
  .card-1, .card-2 { display: none; }
}

@media (max-width: 767.98px) {
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-actions .btn { width: 100%; }
  .section-title { font-size: 1.7rem; }
  .newsletter-box { padding: 28px 20px; }
  .footer-bottom { text-align: center; justify-content: center; }
  .trust-item { font-size: 0.78rem; }
  .trust-item i { font-size: 1.2rem; }
  .news-card-small img { width: 90px; min-width: 90px; height: 80px; }
}

@media (max-width: 575.98px) {
  .ticker-wrapper { height: 34px; }
  .ticker-track { gap: 24px; font-size: 11px; }
  .presale-card .card-img-wrap { height: 160px; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in-up { animation: fadeInUp 0.7s ease both; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Particle dots */
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.2;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.2; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-100px) translateX(30px); opacity: 0; }
}