/* Custom Font */
@font-face {
  font-family: 'Moochi Jelly';
  src: url('../Moochi Jelly.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Comfortaa', sans-serif;
  line-height: 1.6;
  color: #fbf4e7;
  background: #0352f9;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: #0352f9 url('/backg.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 82, 249, 0.4);
  pointer-events: none;
}

.hero-container {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 4rem !important;
  align-items: center !important;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left !important;
}

/* Force desktop layout stability */
@media (min-width: 769px) {
  .hero-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 4rem !important;
    text-align: left !important;
  }
  
  .hero-content {
    order: 1 !important;
  }
  
  .hero-visual {
    order: 2 !important;
  }
}

.hero-content {
  order: 1;
}

.hero-visual {
  order: 2;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  margin-bottom: 1.5rem;
}

.ticker {
  display: block;
  font-family: 'Moochi Jelly', cursive;
  font-size: 4rem;
  font-weight: 400;
  color: #fbf4e7;
  filter: drop-shadow(3px 3px 0px #000000);
  animation: glow 3s ease-in-out infinite alternate;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  transform: perspective(500px) rotateX(5deg);
}

.subtitle {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fbf4e7;
  margin-top: 0.5rem;
  letter-spacing: 2px;
  filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.3));
}

.hero-description {
  font-size: 1.2rem;
  color: #fbf4e7;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.stat {
  text-align: center;
}

.hero-stats .stat-number {
  display: block;
  font-family: 'Moochi Jelly', cursive;
  font-size: 2rem;
  font-weight: 800;
  color: white;
  filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.3));
}

.hero-stats .stat-label {
  display: block;
  font-size: 0.9rem;
  color: white;
  margin-top: 0.25rem;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 5px 5px 0px #000000;
  font-family: 'Comfortaa', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: #fbf4e7;
  color: #0352f9;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 7px 7px 0px #000000;
  animation: bounce 0.6s ease-in-out;
}

.btn-secondary {
  background: #fbf4e7;
  color: #0352f9;
  border: 2px solid #0352f9;
}

.btn-secondary:hover {
  background: #fbf4e7;
  transform: translateY(-2px);
  box-shadow: 7px 7px 0px #000000;
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.8rem;
  box-shadow: none;
}

.btn-small:hover,
.btn-small.btn-primary:hover,
.btn-small.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: none !important;
}

.btn-small i {
  margin-right: 6px;
  font-size: 0.75rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  border: 2px solid rgba(59, 130, 246, 0.3);
  text-decoration: none;
  color: white;
  box-shadow: 3px 3px 0px #000000;
}

.social-btn:hover {
  background: rgba(59, 130, 246, 0.2);
  transform: translateY(-2px);
  box-shadow: 5px 5px 0px #000000, 0 5px 15px rgba(59, 130, 246, 0.4);
}

.social-btn img {
  width: 24px;
  height: 24px;
}

.social-btn i {
  font-size: 20px;
  color: white;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.coin-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.main-logo {
  width: 300px;
  height: 300px;
  animation: float 6s ease-in-out infinite;
  background: transparent;
  object-fit: contain;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.float-item {
  position: absolute;
  font-size: 2rem;
  animation: floatAround 10s infinite linear;
}

.float-item:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.float-item:nth-child(2) {
  top: 80%;
  right: 20%;
  animation-delay: -2.5s;
}

.float-item:nth-child(3) {
  bottom: 60%;
  left: 80%;
  animation-delay: -5s;
}

.float-item:nth-child(4) {
  top: 50%;
  right: 10%;
  animation-delay: -7.5s;
}

/* Section Styles */
section {
  padding: 80px 0;
  position: relative;
}

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

.section-header h2 {
  font-family: 'Moochi Jelly', cursive;
  font-size: 3rem;
  font-weight: 800;
  color: #fbf4e7;
  margin-bottom: 1rem;
  filter: drop-shadow(2px 2px 0px #000000);
  letter-spacing: 2px;
  text-transform: uppercase;
  transform: perspective(500px) rotateX(5deg);
  transition: all 0.3s ease;
}

.section-header h2:hover {
  transform: perspective(500px) rotateX(5deg) scale(1.1);
  animation: wiggle 0.8s ease-in-out;
}

.section-header p {
  font-size: 1.2rem;
  color: #fbf4e7;
}

/* Section Actions */
.section-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.section-actions .btn {
  padding: 12px 24px;
  font-size: 0.95rem;
  min-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.section-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* About Section */
.about {
  background: #0352f9;
  position: relative;
}

/* Fish decoration on COMMUNITY card */
.about-card:nth-child(3) {
  position: relative;
  overflow: visible;
}

.about-card:nth-child(3)::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: url('/fish.png') no-repeat center;
  background-size: contain;
  z-index: 10;
  pointer-events: none;
}

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

.about-card {
  background: #fbf4e7;
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(3, 82, 249, 0.2);
  box-shadow: 8px 8px 0px #000000, 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  background: #fbf4e7;
  box-shadow: 12px 12px 0px #000000, 0 16px 48px rgba(0, 0, 0, 0.25);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #0352f9;
}

.about-card h3 {
  font-family: 'Moochi Jelly', cursive;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0352f9;
  margin-bottom: 1rem;
  filter: drop-shadow(1px 1px 0px rgba(0, 0, 0, 0.2));
}

.about-card p {
  color: #000000;
  line-height: 1.6;
}

/* Tokenomics Section */
.tokenomics {
  background: #0352f9;
}

.tokenomics-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tokenomics-chart {
  display: flex;
  justify-content: center;
}

.chart-placeholder {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: conic-gradient(
    #3b82f6 0deg 288deg,
    #60a5fa 288deg 342deg,
    #93c5fd 342deg 360deg
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 8px 8px 0px #000000, 0 0 50px rgba(59, 130, 246, 0.3);
}

.chart-placeholder::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: #fbf4e7;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.tokenomics-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  background: #fbf4e7;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid rgba(3, 82, 249, 0.2);
  box-shadow: 4px 4px 0px #000000, 0 4px 16px rgba(0, 0, 0, 0.1);
}

.detail-label {
  color: #000000;
  font-weight: 500;
}

.detail-value {
  color: #0352f9;
  font-weight: 700;
  font-family: 'Moochi Jelly', cursive;
  filter: drop-shadow(1px 1px 0px rgba(0, 0, 0, 0.2));
}

/* How to Buy Section */
.how-to-buy {
  background-color: #0352f9;
  background-attachment: fixed;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.step {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: #fbf4e7;
  border-radius: 16px;
  border: 1px solid rgba(3, 82, 249, 0.2);
  box-shadow: 6px 6px 0px #000000, 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-2px);
  background: #fbf4e7;
  box-shadow: 8px 8px 0px #000000, 0 12px 40px rgba(0, 0, 0, 0.2);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #0352f9, #0352f9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Moochi Jelly', cursive;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  box-shadow: 4px 4px 0px #000000, 0 4px 16px rgba(3, 82, 249, 0.3);
}

.step-content h3 {
  font-family: 'Moochi Jelly', cursive;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0352f9;
  margin-bottom: 0.5rem;
  filter: drop-shadow(1px 1px 0px rgba(0, 0, 0, 0.2));
}

.step-content p {
  color: #000000;
  line-height: 1.5;
}

.buy-button-container {
  text-align: center;
}

/* Footer */
.footer {
  background: #0352f9;
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(59, 130, 246, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.footer-main {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(96, 165, 250, 0.3);
}

.footer-logo span {
  font-family: 'Moochi Jelly', cursive;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fbf4e7;
  filter: drop-shadow(1px 1px 0px rgba(0, 0, 0, 0.3));
}

.footer-main p {
  color: #fbf4e7;
  max-width: 300px;
  line-height: 1.6;
  margin: 1rem 0 1.5rem 0;
  font-size: 1rem;
  text-align: left;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials .social-btn {
  width: 40px;
  height: 40px;
  font-size: 0.9rem;
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-info {
  text-align: right;
}

.footer-info p {
  color: #fbf4e7;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes floatAround {
  0% {
    transform: rotate(0deg) translateX(150px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(150px) rotate(-360deg);
  }
}

@keyframes glow {
  from {
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
  }
  to {
    text-shadow: 0 0 30px rgba(96, 165, 250, 0.8), 0 0 40px rgba(59, 130, 246, 0.4);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes bounce {
  0% { transform: translateY(-2px) scale(1.05); }
  25% { transform: translateY(-8px) scale(1.1); }
  50% { transform: translateY(-4px) scale(1.08); }
  75% { transform: translateY(-6px) scale(1.09); }
  100% { transform: translateY(-2px) scale(1.05); }
}

@keyframes wiggle {
  0% { transform: perspective(500px) rotateX(5deg) rotate(0deg); }
  15% { transform: perspective(500px) rotateX(5deg) rotate(-5deg); }
  30% { transform: perspective(500px) rotateX(5deg) rotate(5deg); }
  45% { transform: perspective(500px) rotateX(5deg) rotate(-3deg); }
  60% { transform: perspective(500px) rotateX(5deg) rotate(3deg); }
  75% { transform: perspective(500px) rotateX(5deg) rotate(-1deg); }
  100% { transform: perspective(500px) rotateX(5deg) rotate(0deg); }
}

/* Enhanced Scroll Animations - DISABLED */
.animate-prepare {
  opacity: 1;
  transform: translateY(0);
  transition: none;
}

.animate-fade-up {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.animate-scale-in {
  opacity: 1 !important;
  transform: scale(1) !important;
  transition: none;
}

.animate-slide-in {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.animate-prepare.step {
  transform: translateX(0);
}

.animate-prepare.detail-item {
  transform: scale(1);
}

/* Smooth scroll behavior enhancement - DISABLED */
@media (prefers-reduced-motion: no-preference) {
  .animate-prepare {
    transition-duration: 0s;
  }
  
  .btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .main-logo {
    transition: transform 0.3s ease-out;
  }
}

/* Mobile responsive styles for hero and general layout */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    text-align: center !important;
  }
  
  .hero-content {
    order: 1 !important;
  }
  
  .hero-visual {
    order: 2 !important;
  }
  
  .ticker {
    font-size: 3rem;
  }
  
  .subtitle {
    font-size: 1.2rem;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 1rem;
  }
  
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .hero-buttons .btn-small {
    padding: 6px 12px;
    font-size: 0.7rem;
  }
  
  .hero-buttons .btn-small i {
    margin-right: 4px;
    font-size: 0.65rem;
  }
  
  .main-logo {
    width: 250px;
    height: 250px;
  }
  
  /* Mobile MrBeast Image */
  .mrbeast-image {
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 1;
    pointer-events: none;
  }
  
  .mrbeast-image img {
    height: 120px !important;
    opacity: 1 !important;
  }
  
  .tokenomics-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .footer-main {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-info {
    text-align: center;
  }
  
  .step {
    flex-direction: column;
    text-align: center;
  }
}

/* First Mission Section */
.first-mission {
  padding: 80px 0;
  background: rgba(251, 244, 231, 0.05);
  position: relative;
  overflow: hidden;
}

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

.mission-text p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.mission-warning {
  color: #ff6b6b;
  font-weight: 600;
  font-size: 1.3rem !important;
}

.mission-button {
  margin-top: 2rem;
}

/* MrBeast Image */
.mrbeast-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.mrbeast-image img {
  height: 400px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.first-mission:hover .mrbeast-image img {
  opacity: 1;
}

/* Optimized Tokenomics Section - 100vh Layout */
.tokenomics {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 2rem 0;
  position: relative;
}

.tokenomics .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Token decoration */
.tokenomics::before {
  content: '';
  position: absolute;
  top: 25%;
  left: 8%;
  width: 150px;
  height: 150px;
  background: url('/token.png') no-repeat center;
  background-size: contain;
  z-index: 10;
  pointer-events: none;
}

/* Make token smaller and repositioned on mobile */
@media (max-width: 768px) {
  .tokenomics::before {
    width: 60px;
    height: 60px;
    top: 15%;
    left: 5%;
  }
}

.tokenomics-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  height: 80vh;
  max-height: 800px;
}

/* Left Column - Metrics and Distribution */
.tokenomics-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Key Metrics Row */
.tokenomics-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.metric-card {
  background: #fbf4e7;
  padding: 1.2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(3, 82, 249, 0.2);
  box-shadow: 6px 6px 0px #000000, 0 6px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-3px);
  box-shadow: 8px 8px 0px #000000, 0 12px 32px rgba(0, 0, 0, 0.25);
}

.metric-icon {
  font-size: 1.8rem;
  color: #0352f9;
  margin-bottom: 0.5rem;
}

.metric-card h3 {
  font-family: 'Moochi Jelly', cursive;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0352f9;
  margin-bottom: 0.3rem;
  filter: drop-shadow(1px 1px 0px rgba(0, 0, 0, 0.2));
}

.metric-card p {
  color: #000000;
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0;
}

/* Distribution Section - Ultra Compact */
.tokenomics-distribution {
  background: rgba(251, 244, 231, 0.05);
  padding: 0.8rem;
  border-radius: 12px;
  border: 2px solid rgba(3, 82, 249, 0.1);
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.distribution-header {
  text-align: center;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}

.distribution-header h3 {
  font-family: 'Moochi Jelly', cursive;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fbf4e7;
  margin-bottom: 0.1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.distribution-header p {
  color: rgba(251, 244, 231, 0.8);
  font-size: 0.65rem;
  margin: 0;
  line-height: 1.2;
}

.distribution-grid {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  overflow: hidden;
  min-height: 0;
}

.distribution-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #fbf4e7;
  padding: 0.3rem 0.4rem;
  border-radius: 4px;
  border: 1px solid rgba(3, 82, 249, 0.2);
  box-shadow: 1px 1px 0px #000000, 0 1px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  min-height: 0;
  flex-shrink: 0;
  height: auto;
  max-height: 40px;
}

.distribution-item:hover {
  transform: translateY(-1px);
  box-shadow: 2px 2px 0px #000000, 0 2px 6px rgba(0, 0, 0, 0.15);
}

.distribution-item.major {
  border: 1px solid #0352f9;
  background: linear-gradient(135deg, #fbf4e7 0%, rgba(3, 82, 249, 0.05) 100%);
}

.distribution-item.special {
  border: 1px solid #ff6b6b;
  background: linear-gradient(135deg, #fbf4e7 0%, rgba(255, 107, 107, 0.05) 100%);
}

.distribution-bar {
  position: relative;
  background: rgba(3, 82, 249, 0.1);
  height: 14px;
  width: 35px;
  border-radius: 7px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, #0352f9, #60a5fa);
  border-radius: 7px;
  transition: width 2s ease;
}

.distribution-item.special .bar-fill {
  background: linear-gradient(90deg, #ff6b6b, #ffa8a8);
}

.percentage {
  position: relative;
  z-index: 2;
  font-family: 'Moochi Jelly', cursive;
  font-weight: 700;
  color: #fbf4e7;
  font-size: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.distribution-info {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.distribution-info h4 {
  font-family: 'Moochi Jelly', cursive;
  font-size: 0.6rem;
  font-weight: 700;
  color: #0352f9;
  margin-bottom: 0.05rem;
  filter: drop-shadow(1px 1px 0px rgba(0, 0, 0, 0.2));
  line-height: 1;
}

.distribution-info p {
  color: #000000;
  line-height: 1.1;
  margin: 0;
  font-size: 0.48rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Right Column - Security Features */
.tokenomics-right {
  display: flex;
  flex-direction: column;
}

.tokenomics-security {
  background: rgba(251, 244, 231, 0.03);
  padding: 2rem;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.security-header {
  text-align: center;
  margin-bottom: 2rem;
}

.security-header h3 {
  font-family: 'Moochi Jelly', cursive;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fbf4e7;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  flex: 1;
}

.security-item {
  background: #fbf4e7;
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(3, 82, 249, 0.2);
  box-shadow: 6px 6px 0px #000000, 0 6px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.security-item:hover {
  transform: translateY(-3px);
  box-shadow: 8px 8px 0px #000000, 0 12px 32px rgba(0, 0, 0, 0.25);
}

.security-item i {
  font-size: 2rem;
  color: #0352f9;
  margin-bottom: 0.8rem;
  display: block;
}

.security-item h4 {
  font-family: 'Moochi Jelly', cursive;
  font-size: 1rem;
  font-weight: 700;
  color: #0352f9;
  margin-bottom: 0.5rem;
  filter: drop-shadow(1px 1px 0px rgba(0, 0, 0, 0.2));
}

.security-item p {
  color: #000000;
  line-height: 1.5;
  font-size: 0.85rem;
  margin: 0;
}

/* Mobile responsiveness for 100vh layout */
@media (max-width: 1024px) {
  .tokenomics-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    height: auto;
    max-height: none;
  }
  
  .tokenomics-left {
    gap: 1rem;
  }
  
  .distribution-grid {
    max-height: 250px;
  }
  
  .security-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .tokenomics {
    min-height: auto;
    padding: 1rem 0;
  }
  
  .tokenomics-container {
    gap: 1rem;
  }
  
  .tokenomics-metrics {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }
  
  .metric-card {
    padding: 1rem;
  }
  
  .distribution-item {
    flex-direction: row;
    text-align: left;
    gap: 0.3rem;
    padding: 0.25rem 0.35rem;
    max-height: 35px;
  }
  
  .distribution-bar {
    width: 30px;
    height: 12px;
  }
  
  .percentage {
    font-size: 0.45rem;
  }
  
  .distribution-info h4 {
    font-size: 0.55rem;
  }
  
  .distribution-info p {
    font-size: 0.42rem;
  }
  
  .security-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .security-item {
    padding: 1.2rem;
  }
}

/* Roadmap Section */
.roadmap {
  padding: 80px 0;
  background: rgba(251, 244, 231, 0.03);
}

.roadmap-toggle {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.toggle-btn {
  background: transparent;
  border: 2px solid #fbf4e7;
  color: #fbf4e7;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  font-weight: 600;
}

.toggle-btn.active,
.toggle-btn:hover {
  background: #fbf4e7;
  color: #0352f9;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

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

.roadmap-content.hidden {
  display: none;
}

.roadmap-item {
  background: #fbf4e7;
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(3, 82, 249, 0.2);
  box-shadow: 8px 8px 0px #000000, 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.roadmap-item:hover {
  transform: translateY(-5px);
  background: #fbf4e7;
  box-shadow: 12px 12px 0px #000000, 0 16px 48px rgba(0, 0, 0, 0.25);
}

.roadmap-phase {
  background: #fbf4e7;
  color: #0352f9;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.roadmap-item h3 {
  font-family: 'Moochi Jelly', cursive;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0352f9;
  margin-bottom: 1rem;
  filter: drop-shadow(1px 1px 0px rgba(0, 0, 0, 0.2));
}

.roadmap-item ul {
  list-style: none;
  text-align: left;
}

.roadmap-item li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  color: #000000;
  line-height: 1.6;
}

.roadmap-item li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: #0352f9;
  font-weight: bold;
}

.roadmap-visual {
  background: #fbf4e7;
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(3, 82, 249, 0.2);
  box-shadow: 8px 8px 0px #000000, 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.roadmap-visual:hover {
  transform: translateY(-5px);
  background: #fbf4e7;
  box-shadow: 12px 12px 0px #000000, 0 16px 48px rgba(0, 0, 0, 0.25);
}

.roadmap-visual p {
  color: #000000;
  font-size: 1.2rem;
  margin: 0;
}

/* Impact Tracker Section */
.impact-tracker {
  padding: 80px 0;
  background: rgba(251, 244, 231, 0.05);
}

.impact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.map-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.impact-map {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.africa-map {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  filter: sepia(20%) hue-rotate(200deg) saturate(1.2) contrast(1.1);
}

.countries-list {
  background: rgba(251, 244, 231, 0.1);
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid rgba(251, 244, 231, 0.2);
}

.countries-list h3 {
  font-family: 'Moochi Jelly', cursive;
  font-size: 1.8rem;
  color: #fbf4e7;
  margin-bottom: 1.5rem;
  text-align: center;
}

.country-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.country-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 0.5rem;
  background: rgba(251, 244, 231, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.country-item:hover {
  background: rgba(251, 244, 231, 0.15);
  transform: translateX(5px);
}

.country-marker {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fbf4e7;
}

.country-name {
  font-weight: 600;
  color: #fbf4e7;
  min-width: 80px;
}

.project-name {
  color: rgba(251, 244, 231, 0.8);
  font-size: 0.9rem;
}

.well-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
}

.coin-marker {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #0352f9;
  background: #fbf4e7;
  animation: pulse 2s infinite;
  box-shadow: 4px 4px 0px #000000;
  transition: all 0.3s ease;
  padding: 3px;
}

.well-marker:hover .coin-marker {
  transform: scale(1.2);
  box-shadow: 6px 6px 0px #000000;
}

.marker-popup {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: #fbf4e7;
  color: #0352f9;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  border: 2px solid #0352f9;
  box-shadow: 2px 2px 0px #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 20;
}

.marker-popup::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #0352f9;
}

.well-marker:hover .marker-popup {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

/* Remove old custom marker styles */
.custom-well-marker {
  display: none;
}

/* Remove leaflet specific styles */
.leaflet-container,
.leaflet-control-container {
  display: none;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.impact-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.impact-stat {
  background: #fbf4e7;
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(3, 82, 249, 0.2);
  box-shadow: 8px 8px 0px #000000, 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.impact-stat:hover {
  transform: translateY(-5px);
  background: #fbf4e7;
  box-shadow: 12px 12px 0px #000000, 0 16px 48px rgba(0, 0, 0, 0.25);
}

.impact-stat .stat-number {
  display: block;
  font-family: 'Moochi Jelly', cursive;
  font-size: 2.5rem;
  font-weight: 700;
  color: #0352f9;
  margin-bottom: 1rem;
  filter: drop-shadow(1px 1px 0px rgba(0, 0, 0, 0.2));
}

.impact-stat .stat-label {
  font-size: 1rem;
  color: #000000;
  line-height: 1.6;
}

/* Team Section */
.team {
  padding: 80px 0;
  background: rgba(251, 244, 231, 0.03);
}

.team-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.team-info p {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.team-info strong {
  color: #fbf4e7;
  font-weight: 700;
}

/* Footer Updates */
.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-links {
  display: flex;
  gap: 3rem;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #fbf4e7;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(251, 244, 231, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #fbf4e7;
}

.disclaimer {
  font-size: 0.9rem;
  opacity: 0.7;
  font-style: italic;
}

/* Mobile Responsiveness for New Sections */
@media (max-width: 768px) {
  .tokenomics-badges {
    grid-template-columns: 1fr;
  }
  
  .impact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .map-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .africa-map {
    height: 300px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
  
  .roadmap-toggle {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .ticker {
    font-size: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .main-logo {
    width: 200px;
    height: 200px;
  }
}

/* Navigation Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 70px;
}

.nav-brand {
  display: none;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  color: #fbf4e7;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 50%;
  background: rgba(3, 82, 249, 0.8);
  border: 2px solid rgba(251, 244, 231, 0.6);
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  background: #fbf4e7;
  color: #0352f9;
  transform: translateY(-4px) scale(1.05);
  border-color: #0352f9;
  box-shadow: 5px 8px 15px rgba(0, 0, 0, 0.4);
}

.nav-link i {
  font-size: 1.3rem;
  transition: all 0.3s ease;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-link:hover i {
  transform: scale(1.1);
}

.nav-link span {
  display: none;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  display: none;
  background: rgba(3, 82, 249, 0.9);
  border: 2px solid rgba(251, 244, 231, 0.6);
  border-radius: 8px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1002;
}

.mobile-nav-toggle:hover {
  background: #fbf4e7;
  border-color: #0352f9;
  transform: translateY(-50%) translateY(-2px);
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.6);
}

.burger-icon {
  position: relative;
  width: 24px;
  height: 18px;
  margin: auto;
  transition: all 0.3s ease;
}

.burger-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fbf4e7;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-nav-toggle:hover .burger-icon span {
  background: #0352f9;
}

.burger-icon span:nth-child(1) {
  top: 0;
}

.burger-icon span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.burger-icon span:nth-child(3) {
  bottom: 0;
}

/* Burger icon animation when open */
.mobile-nav-toggle.open .burger-icon span:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
  margin-top: -1.5px;
}

.mobile-nav-toggle.open .burger-icon span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.open .burger-icon span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 50%;
  margin-bottom: -1.5px;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(3, 82, 249, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 2rem;
  padding: 2rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fbf4e7;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 12px;
  background: rgba(251, 244, 231, 0.1);
  border: 2px solid rgba(251, 244, 231, 0.3);
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  min-width: 200px;
  justify-content: center;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: #fbf4e7;
  color: #0352f9;
  transform: translateY(-3px);
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.5);
}

.mobile-nav-link i {
  font-size: 1.5rem;
}

.mobile-nav-link span {
  font-family: 'Moochi Jelly', cursive;
  font-weight: 700;
}

/* Mobile Responsive Navigation */
@media (max-width: 768px) {
  .navbar {
    background: rgba(3, 82, 249, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(251, 244, 231, 0.1);
    padding: 0.8rem 0;
  }
  
  .navbar .container {
    height: 60px;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-nav-overlay {
    display: block;
  }
  
  /* Show brand on mobile */
  .nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1003;
  }
  
  .nav-brand img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid rgba(251, 244, 231, 0.6);
  }
  
  .nav-brand span {
    font-family: 'Moochi Jelly', cursive;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fbf4e7;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }
  
  /* Ensure proper spacing for mobile hero */
  .hero {
    padding-top: 100px;
  }
  
  .page-hero {
    padding: 120px 0 80px;
  }
}

/* Additional mobile fixes */
@media (max-width: 480px) {
  .mobile-nav-toggle {
    width: 45px;
    height: 45px;
  }
  
  .burger-icon {
    width: 20px;
    height: 16px;
  }
  
  .nav-brand span {
    font-size: 1rem;
  }
  
  .nav-brand img {
    width: 30px;
    height: 30px;
  }
  
  .mobile-nav-link {
    font-size: 1.3rem;
    padding: 0.8rem 1.5rem;
    min-width: 180px;
  }
}

/* Page Hero */
.page-hero {
  background: #0352f9;
  padding: 150px 0 100px;
  text-align: center;
}

.page-hero-content h1 {
  font-family: 'Moochi Jelly', cursive;
  font-size: 3.5rem;
  font-weight: 900;
  color: #fbf4e7;
  margin-bottom: 1rem;
  text-shadow: 3px 3px 0px #000000;
}

.page-hero-content p {
  font-size: 1.2rem;
  color: #0352f9;
  max-width: 600px;
  margin: 0 auto;
}

/* Top Donators Styles */
.top-donators-section {
  padding: 100px 0;
  background: #0352f9;
}

.podium-container {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 2rem;
  margin: 4rem 0;
}

.podium-item {
  text-align: center;
}

.podium-rank {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.podium-rank i {
  font-size: 2rem;
}

.podium-rank span {
  font-family: 'Moochi Jelly', cursive;
  font-weight: 700;
  color: #fbf4e7;
}

.podium-card {
  background: #fbf4e7;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(3, 82, 249, 0.2);
  box-shadow: 8px 8px 0px #000000;
  transition: all 0.3s ease;
  min-width: 250px;
}

.podium-card.champion {
  transform: scale(1.1);
  border: 2px solid #FFD700;
}

.donator-avatar {
  font-size: 4rem;
  color: #0352f9;
  margin-bottom: 1rem;
}

.podium-card h3 {
  font-family: 'Moochi Jelly', cursive;
  color: #0352f9;
  margin-bottom: 1rem;
}

.donation-amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0352f9;
  margin-bottom: 0.5rem;
}

.wells-funded {
  color: #666;
  margin-bottom: 0.5rem;
}

.location {
  color: #999;
  font-size: 0.9rem;
}

/* Donators List */
.donators-list {
  margin-top: 4rem;
}

.list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.list-header h3 {
  font-family: 'Moochi Jelly', cursive;
  color: #fbf4e7;
  font-size: 2rem;
}

.total-stats {
  display: flex;
  gap: 2rem;
}

.donators-table {
  background: rgba(251, 244, 231, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 8px 8px 0px #000000;
}

.table-row {
  display: grid;
  grid-template-columns: 80px 1fr 120px 100px 150px;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  align-items: center;
}

.table-row.header {
  background: rgba(3, 82, 249, 0.1);
  font-weight: 700;
  color: #0352f9;
}

.table-row:not(.header):hover {
  background: rgba(251, 244, 231, 0.05);
}

.donator i {
  margin-right: 0.5rem;
  color: #0352f9;
}

.coming-soon-row {
  padding: 2rem;
  text-align: center;
}

.coming-soon-content {
  color: #fbf4e7;
}

.coming-soon-content i {
  font-size: 2rem;
  color: #0352f9;
  margin-bottom: 1rem;
}

/* Become a Hero Section */
.become-hero {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}

.hero-card {
  background: #fbf4e7;
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  max-width: 500px;
  box-shadow: 8px 8px 0px #000000;
}

.hero-icon {
  font-size: 3rem;
  color: #0352f9;
  margin-bottom: 1rem;
}

.hero-card h3 {
  font-family: 'Moochi Jelly', cursive;
  color: #0352f9;
  margin-bottom: 1rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* Leaderboard Styles */
.leaderboard-section {
  padding: 100px 0;
  background: #0352f9;
}

.leaderboard-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: rgba(251, 244, 231, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 8px;
  color: #fbf4e7;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  box-shadow: 4px 4px 0px #000000;
}

.tab-btn:hover,
.tab-btn.active {
  background: #fbf4e7;
  color: #0352f9;
  box-shadow: 6px 6px 0px #000000;
  transform: translateY(-2px);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.leaderboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fbf4e7;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 6px 6px 0px #000000;
}

.stat-icon {
  font-size: 2rem;
  color: #0352f9;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0352f9;
}

.stat-label {
  color: #666;
  font-size: 0.9rem;
}

.leaderboard-table .table-row.featured {
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
}

.holder-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.holder-tag {
  background: #ff6b6b;
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
}

.status-badge {
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.status-badge.locked { background: #ff6b6b; color: white; }
.status-badge.diamond { background: #00d2ff; color: white; }
.status-badge.hodl { background: #4ecdc4; color: white; }
.status-badge.donor { background: #45b7d1; color: white; }
.status-badge.active { background: #96ceb4; color: white; }

.pnl.positive { color: #4ecdc4; font-weight: 600; }
.pnl.negative { color: #ff6b6b; font-weight: 600; }

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

.mvp-card {
  background: #fbf4e7;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 8px 8px 0px #000000;
}

.mvp-avatar {
  font-size: 4rem;
  color: #0352f9;
  margin-bottom: 1rem;
}

.mvp-card h3 {
  font-family: 'Moochi Jelly', cursive;
  color: #0352f9;
  margin-bottom: 0.5rem;
}

.mvp-role {
  color: #666;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.mvp-contributions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contribution {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #333;
}

.contribution i {
  color: #0352f9;
}

/* Impact Reports Styles */
.impact-overview {
  padding: 100px 0;
  background: #0352f9;
}

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

.metric-card.large {
  background: #fbf4e7;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 8px 8px 0px #000000;
}

.metric-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.metric-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #0352f9;
  font-family: 'Moochi Jelly', cursive;
}

.metric-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
}

.metric-sublabel {
  color: #666;
  font-size: 0.9rem;
}

/* Project Reports */
.project-reports {
  padding: 100px 0;
  background: #0352f9;
}

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

.report-card {
  background: #fbf4e7;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 8px 8px 0px #000000;
}

.report-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(3, 82, 249, 0.1);
}

.report-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #0352f9;
  font-weight: 600;
}

.report-status span {
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.report-status.completed span { background: #4ecdc4; color: white; }
.report-status.in-progress span { background: #ffa726; color: white; }
.report-status.planning span { background: #ab47bc; color: white; }

.report-content {
  padding: 1.5rem;
}

.report-content h3 {
  font-family: 'Moochi Jelly', cursive;
  color: #0352f9;
  margin-bottom: 1rem;
}

.report-stats {
  display: flex;
  gap: 2rem;
  margin: 1rem 0;
}

.report-stats .stat {
  text-align: center;
}

.report-stats .number {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0352f9;
}

.report-stats .label {
  font-size: 0.8rem;
  color: #666;
}

.progress-bar {
  background: rgba(3, 82, 249, 0.1);
  border-radius: 8px;
  overflow: hidden;
  margin: 1rem 0;
  position: relative;
  height: 20px;
}

.progress-fill {
  background: #0352f9;
  height: 100%;
  transition: width 0.3s ease;
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.8rem;
  font-weight: 600;
  color: #333;
}

.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(3, 82, 249, 0.1);
  padding: 1rem;
  border-radius: 8px;
  color: #0352f9;
  margin: 1rem 0;
}

.report-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(3, 82, 249, 0.05);
}

.report-date {
  color: #666;
  font-size: 0.9rem;
}

/* Transparency Section */
.transparency-section {
  padding: 100px 0;
  background: #0352f9;
}

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

.transparency-card {
  background: #fbf4e7;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 8px 8px 0px #000000;
}

.transparency-card .card-icon {
  font-size: 3rem;
  color: #0352f9;
  margin-bottom: 1rem;
}

.transparency-card h3 {
  font-family: 'Moochi Jelly', cursive;
  color: #0352f9;
  margin-bottom: 1rem;
}

/* Impact CTA */
.impact-cta {
  padding: 100px 0;
  background: #0352f9;
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.cta-text {
  flex: 1;
}

.cta-text h2 {
  font-family: 'Moochi Jelly', cursive;
  color: #fbf4e7;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-text p {
  color: #0352f9;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
}


