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

/* iOS Safari Background Fix - HIGH PRIORITY */
@supports (-webkit-touch-callout: none) {
  body {
    background: #1A1A1A !important;
    background-attachment: scroll !important;
    animation: none !important;
    background-image: none !important;
  }
  
  body::before {
    display: none !important;
  }
  
  /* Force override any other background styles */
  html, body {
    background: #1A1A1A !important;
    background-attachment: scroll !important;
    animation: none !important;
    background-image: none !important;
  }
  
  /* Prevent any background animations */
  * {
    animation: none !important;
  }
}

/* Force iOS background fix */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  _::-webkit-full-page-media, _:future, :root body {
    background: #1A1A1A !important;
    background-attachment: scroll !important;
    animation: none !important;
    background-image: none !important;
  }
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #2D1B69 0%, #1A1A1A 50%, #2D1B69 100%);
  background-attachment: fixed;
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
  color: #FFFFFF;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Safari/iOS compatibility - static background fallback */
@supports (-webkit-touch-callout: none) {
  body {
    background: #1A1A1A !important;
    background-attachment: scroll !important;
    animation: none !important;
  }
  
  body::before {
    display: none !important;
  }
}

/* Mobile browsers - disable animations for better performance */
@media (max-width: 768px) {
  body {
    background: #1A1A1A !important;
    background-attachment: scroll !important;
    animation: none !important;
  }
  
  body::before {
    display: none !important;
  }
}

/* Additional iOS Safari fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  _::-webkit-full-page-media, _:future, :root body {
    background: #1A1A1A !important;
    background-attachment: scroll !important;
    animation: none !important;
  }
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(74, 144, 226, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(156, 39, 176, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 40% 40%, rgba(255, 152, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(45, 27, 105, 0.95);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(74, 144, 226, 0.2);
  z-index: 1000;
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  position: relative;
}

.nav-logo {
  position: absolute;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.logo-nav {
  height: 59px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(74, 144, 226, 0.4));
  box-shadow: 0 0 20px rgba(74, 144, 226, 0.3), 
              0 0 40px rgba(74, 144, 226, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-top: 1px;
}

.logo-nav:hover {
  box-shadow: 0 0 25px rgba(74, 144, 226, 0.5), 
              0 0 50px rgba(74, 144, 226, 0.2);
  transform: scale(1.05);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #4A90E2;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover {
  color: #fff;
  background: rgba(74, 144, 226, 0.15);
  transform: translateY(-1px);
}

.mine-now-btn {
  position: absolute;
  right: 2rem;
  background: linear-gradient(135deg, #4A90E2 0%, #4CAF50 100%);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.7rem 1.3rem !important;
  box-shadow: 0 3px 12px rgba(74, 144, 226, 0.3);
  text-shadow: none;
  text-decoration: none;
  border-radius: 8px;
}

.mine-now-btn:hover {
  background: linear-gradient(135deg, #4CAF50 0%, #4A90E2 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(74, 144, 226, 0.5);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(15, 5, 32, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0.7rem 1rem;
  transition: all 0.3s ease;
}

.dropdown-link:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #ffd700;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.accent-text {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Download Cards */
.download-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.download-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(42, 42, 42, 0.8);
  border: 2px solid rgba(74, 144, 226, 0.3);
  border-radius: 12px;
  text-decoration: none;
  color: #FFFFFF;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  min-width: 200px;
}

.download-card:hover {
  border-color: rgba(74, 144, 226, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.2);
}

.download-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(74, 144, 226, 0.2);
  border-radius: 8px;
  color: #4A90E2;
}

.download-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.download-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.download-store {
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* Specific colors for each store */
.google-play:hover {
  border-color: rgba(76, 175, 80, 0.6);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
}

.google-play:hover .download-icon {
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
}

.app-store:hover {
  border-color: rgba(76, 175, 80, 0.6);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
}

.app-store:hover .download-icon {
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
}

.android-apk:hover {
  border-color: rgba(76, 175, 80, 0.6);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
}

.android-apk:hover .download-icon {
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
}

/* Live Stats */
.live-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding: 0 2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 2rem 3rem;
  text-align: center;
  backdrop-filter: blur(10px);
  min-width: 240px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.stat-number {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 0.3rem;
  line-height: 1.1;
  word-break: break-word;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.2;
}

/* CTA Secondary */
.cta-secondary {
  color: #ffd700;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  color: #ffed4e;
  transform: translateX(5px);
}

/* The 1 Million Mission Section */
.million-mission {
  padding: 6rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.mission-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.mission-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mission-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4rem;
}

/* Progress Bar */
.progress-container {
  margin-bottom: 4rem;
}

.progress-bar {
  width: 100%;
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
  background-size: 200% 100%;
  animation: progressShine 2s ease-in-out infinite;
  border-radius: 6px;
  transition: width 0.5s ease;
}

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

.progress-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.current-users {
  color: #ffd700;
  font-size: 2rem;
  font-weight: 700;
}

.target-users {
  color: rgba(255, 255, 255, 0.7);
}

/* Mission Grid */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.mission-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.mission-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 1rem;
}

.mission-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 1rem;
}

/* Footer */
.footer {
  background: rgba(26, 26, 26, 0.95);
  border-top: 1px solid rgba(74, 144, 226, 0.2);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

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

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.community-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #4A90E2;
  margin: 0;
  text-align: center;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(74, 144, 226, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(74, 144, 226, 0.2);
  color: #4A90E2;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(74, 144, 226, 0.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(74, 144, 226, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 1.5rem;
  }
  
  .nav-menu {
    gap: 0.3rem;
  }
  
  .nav-link {
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem;
  }
  
  .mine-now-btn {
    padding: 0.6rem 1.1rem !important;
    margin-left: 0.5rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .live-stats {
    gap: 1rem;
  }
  
  .stat-card {
    min-width: 200px;
    padding: 1.5rem 2rem;
  }
  
  .download-buttons {
    gap: 1rem;
  }
  
  .download-card {
    min-width: 180px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(15, 5, 32, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-link {
    padding: 1rem 2rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  }
  
  .mine-now-btn {
    margin: 1rem 2rem;
    text-align: center;
    border-radius: 8px;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero {
    padding: 6rem 1rem 4rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .download-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
  
  .live-stats {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .stat-card {
    min-width: auto;
    width: 100%;
    max-width: 300px;
    height: 100px;
    padding: 1.5rem 2rem;
  }
  
  .stat-number {
    font-size: 1.1rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
  }
  
  .download-card {
    min-width: auto;
    width: 100%;
    max-width: 300px;
  }
  
  .million-mission {
    padding: 4rem 1rem;
  }
  
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-social {
    gap: 1.5rem;
  }
  
  .boost-mining {
    padding: 4rem 1rem;
  }
  
  .boost-title {
    font-size: 2.5rem;
  }
  
  .boost-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .boost-card {
    padding: 2rem 1.5rem;
  }
  
  .boost-cta {
    padding: 2rem 1.5rem;
  }
  
  .boost-cta h3 {
    font-size: 1.5rem;
  }
  
  /* Boost Mining Page Mobile */
  .boost-hero {
    padding: 6rem 1rem 3rem;
  }
  
  .boost-hero-title {
    font-size: 2.5rem;
  }
  
  .boost-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .formula-section,
  .boosters-section,
  .boost-cta-section {
    padding: 4rem 1rem;
  }
  
  .formula-title,
  .boosters-title {
    font-size: 2.5rem;
  }
  
  .formula-grid,
  .boosters-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .formula-card,
  .booster-card {
    padding: 2rem 1.5rem;
  }
  
  .boost-cta-container h2 {
    font-size: 2rem;
  }
  
  /* Road to $0.10 Page Mobile */
  .road-hero {
    padding: 6rem 1rem 3rem;
  }
  
  .road-hero-title {
    font-size: 2.5rem;
  }
  
  .road-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .roadmap-section,
  .why-section,
  .road-cta-section {
    padding: 4rem 1rem;
  }
  
  .roadmap-title,
  .why-title {
    font-size: 2.5rem;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-marker {
    width: 60px;
    height: 60px;
    margin-right: 1rem;
  }
  
  .marker-icon {
    font-size: 1.5rem;
  }
  
  .timeline-content {
    padding: 1.5rem;
  }
  
  .timeline-content h3 {
    font-size: 1.3rem;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .why-item {
    padding: 2rem 1.5rem;
  }
  
  .road-cta-container h2 {
    font-size: 2rem;
  }
  
  /* Community Hub Page Mobile */
  .community-hero {
    padding: 6rem 1rem 3rem;
  }
  
  .community-hero-title {
    font-size: 2.5rem;
  }
  
  .community-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .spaces-section,
  .leaderboard-section,
  .events-section,
  .community-cta-section {
    padding: 4rem 1rem;
  }
  
  .spaces-title,
  .leaderboard-title,
  .events-title {
    font-size: 2.5rem;
  }
  
  .spaces-grid,
  .events-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .space-card,
  .event-card {
    padding: 2rem 1.5rem;
  }
  
  .leaderboard-header,
  .leaderboard-row {
    grid-template-columns: 60px 1fr 100px 80px;
    gap: 0.5rem;
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  .community-cta-container h2 {
    font-size: 2rem;
  }
}

/* Boost Mining Page Specific Styles */
.boost-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, rgba(45, 27, 105, 0.3) 0%, rgba(26, 26, 26, 0.3) 50%, rgba(45, 27, 105, 0.3) 100%);
}

.boost-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.boost-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.boost-hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Formula Section */
.formula-section {
  padding: 6rem 2rem;
  background: rgba(255, 255, 255, 0.02);
}

.formula-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.formula-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3rem;
  line-height: 1.2;
}

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

.formula-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.formula-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.1);
}

.formula-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.formula-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.formula-rate {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 1rem;
}

.formula-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
}

.example-box {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  max-width: 600px;
  margin: 0 auto;
}

.example-box h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.example-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Boosters Section */
.boosters-section {
  padding: 6rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.boosters-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.boosters-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3rem;
  line-height: 1.2;
}

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

.booster-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.booster-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.1);
}

.booster-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.booster-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.booster-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
}

/* CTA Section */
.boost-cta-section {
  padding: 6rem 2rem;
  background: rgba(255, 215, 0, 0.05);
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.boost-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.boost-cta-container h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.boost-cta-container p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.boost-cta-btn {
  display: inline-block;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #1A1A1A;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

  .boost-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  }

/* Road to $0.10 Page Specific Styles */
.road-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, rgba(45, 27, 105, 0.3) 0%, rgba(26, 26, 26, 0.3) 50%, rgba(45, 27, 105, 0.3) 100%);
}

.road-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.road-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.road-hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Roadmap Timeline Section */
.roadmap-section {
  padding: 6rem 2rem;
  background: rgba(255, 255, 255, 0.02);
}

.roadmap-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.roadmap-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 4rem;
  line-height: 1.2;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #ffd700, rgba(255, 215, 0, 0.3));
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: flex-start;
}

.timeline-marker {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 3px solid rgba(255, 215, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.timeline-marker.completed {
  border-color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
}

.timeline-marker.active {
  border-color: #4CAF50;
  background: rgba(76, 175, 80, 0.1);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
  100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

.marker-icon {
  font-size: 2rem;
}

.timeline-content {
  flex: 1;
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateX(5px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.timeline-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.timeline-range {
  font-size: 1.1rem;
  color: #ffd700;
  font-weight: 500;
  margin-bottom: 1rem;
}

.progress-container {
  margin: 1rem 0;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.progress-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.timeline-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 1rem;
}

/* Why $0.10 Section */
.why-section {
  padding: 6rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.why-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.why-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3rem;
  line-height: 1.2;
}

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

.why-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.why-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.1);
}

.why-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.why-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.why-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
}

/* CTA Section */
.road-cta-section {
  padding: 6rem 2rem;
  background: rgba(255, 215, 0, 0.05);
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.road-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.road-cta-container h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.road-cta-container p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.road-cta-btn {
  display: inline-block;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #1A1A1A;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

  .road-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  }

/* Community Hub Page Specific Styles */
.community-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, rgba(45, 27, 105, 0.3) 0%, rgba(26, 26, 26, 0.3) 50%, rgba(45, 27, 105, 0.3) 100%);
}

.community-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.community-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.community-hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Community Spaces Section */
.spaces-section {
  padding: 6rem 2rem;
  background: rgba(255, 255, 255, 0.02);
}

.spaces-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.spaces-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3rem;
  line-height: 1.2;
}

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

.space-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.space-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.1);
}

.space-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.space-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.space-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.space-status {
  display: inline-block;
  background: rgba(255, 152, 0, 0.2);
  color: #FF9800;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.space-btn {
  display: inline-block;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #1A1A1A;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.space-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.space-btn.disabled {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  cursor: not-allowed;
  box-shadow: none;
}

.space-btn.disabled:hover {
  transform: none;
  box-shadow: none;
}

/* Leaderboard Section */
.leaderboard-section {
  padding: 6rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.leaderboard-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.leaderboard-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.leaderboard-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.leaderboard-table {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.leaderboard-header {
  display: grid;
  grid-template-columns: 80px 1fr 150px 120px;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 215, 0, 0.1);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  font-weight: 600;
  color: #FFFFFF;
  font-size: 1rem;
}

.leaderboard-row {
  display: grid;
  grid-template-columns: 80px 1fr 150px 120px;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.leaderboard-row:hover {
  background: rgba(255, 215, 0, 0.05);
}

.leaderboard-row:last-child {
  border-bottom: none;
}

.leaderboard-row.top-1 {
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
  border-left: 4px solid #ffd700;
}

.leaderboard-row.top-2 {
  background: linear-gradient(90deg, rgba(192, 192, 192, 0.1), rgba(192, 192, 192, 0.05));
  border-left: 4px solid #C0C0C0;
}

.leaderboard-row.top-3 {
  background: linear-gradient(90deg, rgba(205, 127, 50, 0.1), rgba(205, 127, 50, 0.05));
  border-left: 4px solid #CD7F32;
}

.rank-col {
  font-weight: 600;
  color: #ffd700;
  font-size: 1.2rem;
}

.miner-col {
  font-weight: 500;
  color: #FFFFFF;
  text-align: left;
}

.stc-col {
  font-weight: 600;
  color: #4CAF50;
}

.rate-col {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

/* Events Section */
.events-section {
  padding: 6rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.events-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.events-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3rem;
  line-height: 1.2;
}

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

.event-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.1);
}

.event-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.event-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.event-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.event-status {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.event-status.active {
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
}

.event-status.upcoming {
  background: rgba(255, 152, 0, 0.2);
  color: #FF9800;
}

/* CTA Section */
.community-cta-section {
  padding: 6rem 2rem;
  background: rgba(255, 215, 0, 0.05);
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.community-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.community-cta-container h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.community-cta-container p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.community-cta-btn {
  display: inline-block;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #1A1A1A;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.community-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* How to Boost Mining Section */
.boost-mining {
  padding: 6rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.boost-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.boost-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.boost-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.boost-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.boost-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.boost-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.1);
}

.boost-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.boost-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.boost-rate {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 1rem;
}

.boost-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
}

.boost-cta {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.boost-cta h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.boost-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.boost-btn {
  display: inline-block;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #1A1A1A;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.boost-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Firebase Integration Styles */
.connection-status {
  position: fixed;
  top: 100px;
  right: 20px;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1001;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.connection-status.connected {
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
  border-color: rgba(76, 175, 80, 0.3);
}

.connection-status.disconnected {
  background: rgba(244, 67, 54, 0.2);
  color: #F44336;
  border-color: rgba(244, 67, 54, 0.3);
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(74, 144, 226, 0.3);
  border-top: 2px solid #4A90E2;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Enhanced Progress Bar Animations */
.mission-progress-bar {
  transition: width 1s ease-in-out;
}

.mission-progress-bar.shining {
  position: relative;
  overflow: hidden;
}

.mission-progress-bar.shining::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shine 1s ease-in-out;
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Number Animation Styles */
.stat-number {
  transition: all 0.3s ease;
}

.stat-number.updating {
  color: #4A90E2;
  text-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
}

/* Error States */
.firebase-error {
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #F44336;
  padding: 10px;
  border-radius: 8px;
  margin: 10px 0;
  font-size: 0.9rem;
}

/* Offline Mode Indicator */
.offline-mode {
  background: rgba(255, 152, 0, 0.1);
  border: 1px solid rgba(255, 152, 0, 0.3);
  color: #FF9800;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  text-align: center;
  margin: 10px 0;
}

/* Responsive Firebase Elements */
@media (max-width: 768px) {
  .connection-status {
    top: 65px;
    right: 10px;
    font-size: 0.7rem;
    padding: 6px 10px;
  }
  
  .firebase-error,
  .offline-mode {
    font-size: 0.8rem;
    padding: 8px;
  }
  
  /* Mobile Navigation Improvements */
  .navbar {
    padding: 0.5rem 0;
    min-height: 60px;
  }
  
  .nav-container {
    padding: 0 1rem;
    min-height: 50px;
  }
  
  .nav-logo {
    height: 67px;
    margin-top: 1px;
  }
  
  .logo-nav {
    height: 61px;
    width: auto;
  }
  
  .nav-menu {
    max-height: 80vh;
    overflow-y: auto;
    top: 60px;
  }
  
  .dropdown-menu {
    position: static;
    background: rgba(15, 5, 32, 0.95);
    box-shadow: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
  }
  
  .dropdown-link {
    padding: 0.8rem 3rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  }
  
  /* Mobile Hero Improvements */
  .hero {
    padding: 6rem 1rem 3rem;
    margin-top: 0;
  }
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  /* Mobile Live Stats Improvements */
  .stat-card {
    height: 80px;
    padding: 1rem 1.5rem;
  }
  
  .stat-number {
    font-size: 1rem;
  }
  
  .stat-label {
    font-size: 0.65rem;
  }
  
  /* Mobile Download Cards */
  .download-card {
    padding: 1rem;
  }
  
  .download-content {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  /* Mobile Mission Section */
  .mission-title {
    font-size: 1.8rem;
  }
  
  .mission-subtitle {
    font-size: 1rem;
  }
  
  .mission-card {
    padding: 1.5rem 1rem;
  }
  
  /* Mobile Footer */
  .footer-social {
    gap: 1rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
  }
  
  /* Mobile Boost Mining Page */
  .boost-hero-title {
    font-size: 1.8rem;
  }
  
  .boost-hero-subtitle {
    font-size: 1rem;
  }
  
  .formula-card {
    padding: 1.5rem 1rem;
  }
  
  .booster-card {
    padding: 1.5rem 1rem;
  }
  
  .boosters-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .booster-icon {
    font-size: 2.5rem;
  }
  
  .booster-card h3 {
    font-size: 1.2rem;
  }
  
  .booster-card p {
    font-size: 0.9rem;
  }
  
  /* Mobile Road to Price Page */
  .road-hero-title {
    font-size: 1.8rem;
  }
  
  .road-hero-subtitle {
    font-size: 1rem;
  }
  
  .timeline-content {
    padding: 1rem;
  }
  
  .timeline-content h3 {
    font-size: 1.2rem;
  }
  
  /* Mobile Community Page */
  .community-hero-title {
    font-size: 1.8rem;
  }
  
  .community-hero-subtitle {
    font-size: 1rem;
  }
  
  .space-card,
  .event-card {
    padding: 1.5rem 1rem;
  }
  
  /* Mobile FAQ Page */
  .faq-container {
    padding: 2rem 1rem;
  }
  
  .faq-title {
    font-size: 1.8rem;
  }
  
  /* Mobile Contact Page */
  .contact-container {
    padding: 2rem 1rem;
  }
  
  .contact-title {
    font-size: 1.8rem;
  }
  
  /* Mobile Policy/Terms Pages */
  .privacy-policy,
  .terms-conditions {
    padding: 6rem 1rem 2rem 1rem;
  }
  
  .privacy-policy h1,
  .terms-conditions h1 {
    font-size: 1.8rem;
  }
  
  /* Mobile White Paper Page */
  .whitepaper {
    padding: 6rem 1rem 2rem 1rem;
  }
  
  .whitepaper h1 {
    font-size: 1.8rem;
  }
  
  /* Mobile FAQ Page - ensure consistent spacing */
  .container {
    padding: 6rem 1rem 2rem 1rem;
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2D1B69, #1A1A1A);
  color: white;
  padding: 1rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  border-top: 2px solid #4A90E2;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.4;
}

.cookie-text a {
  color: #4A90E2;
  text-decoration: none;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cookie-btn.accept {
  background: linear-gradient(135deg, #4A90E2, #9C27B0);
  color: white;
}

.cookie-btn.accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
}

.cookie-btn.decline {
  background: transparent;
  color: #ccc;
  border: 1px solid #ccc;
}

.cookie-btn.decline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

/* Mobile responsive for cookie banner */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .cookie-text {
    font-size: 0.85rem;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
}
