/* ===== CSS VARIABLES ===== */
:root {
  --primary-green: #7FD957;
  --bright-green: #4CAF50;
  --dark-green: #2e7d32;
  --pepe-green: #7cb342;
  --bg-light: #F5F9FF;
  --bg-cream: #FFFEF7;
  --bg-white: #FFFFFF;
  --purple: #9c27b0;
  --cyan: #00BCD4;
  --yellow: #FFC107;
  --orange: #FF6B35;
  --pink: #E91E63;
  --black-outline: #000000;
  --text-dark: #1a1a1a;
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Fredoka", cursive;
  background: var(--bg-cream);
  color: var(--text-dark);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* ===== ANIMATED BACKGROUND ===== */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, #F5F9FF 0%, #FFF5E6 50%, #F0FFF0 100%);
}

.stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent
    url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAEklEQVQIW2P8//8/AwMDAwMDAQAkBgMBvR7jugAAAABJRU5ErkJggg==")
    repeat;
  animation: twinkle 200s linear infinite;
  opacity: 0.1;
}

.twinkling {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent
    url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAEklEQVQIW2P8//8/AwMDAwMDAQAkBgMBvR7jugAAAABJRU5ErkJggg==")
    repeat;
  animation: twinkle 100s linear infinite;
  opacity: 0.05;
}

@keyframes twinkle {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}

/* ===== FLOATING MEMES ===== */
.floating-memes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.meme-float {
  position: absolute;
  font-size: 3rem;
  opacity: 0.15;
  animation: float 20s infinite ease-in-out;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.8));
}

.meme-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.meme-2 {
  top: 20%;
  right: 15%;
  animation-delay: 2s;
}
.meme-3 {
  top: 60%;
  left: 5%;
  animation-delay: 4s;
}
.meme-4 {
  top: 70%;
  right: 10%;
  animation-delay: 6s;
}
.meme-5 {
  top: 40%;
  right: 20%;
  animation-delay: 8s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-30px) rotate(5deg);
  }
  50% {
    transform: translateY(-60px) rotate(-5deg);
  }
  75% {
    transform: translateY(-30px) rotate(3deg);
  }
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

/* ===== HERO SECTION ===== */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
}

.logo-container {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 0 30px var(--neon-green));
}

.logo-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid var(--black-outline);
  box-shadow: 
    0 0 0 4px var(--primary-green),
    0 5px 0 var(--black-outline),
    0 0 40px rgba(127, 217, 87, 0.4);
  position: relative;
  z-index: 2;
  background: white;
}

.glow-ring {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--neon-green),
    var(--cyan),
    var(--purple),
    var(--pink),
    var(--neon-green)
  );
  animation: rotate 4s linear infinite;
  z-index: 1;
  opacity: 0.6;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.rotating-slow {
  animation: rotate-slow 20s linear infinite;
}

@keyframes rotate-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.main-title {
  font-family: "Bangers", cursive;
  font-size: clamp(4rem, 15vw, 10rem);
  color: var(--primary-green);
  text-shadow: 
    -5px -5px 0 var(--black-outline),
    5px -5px 0 var(--black-outline),
    -5px 5px 0 var(--black-outline),
    5px 5px 0 var(--black-outline);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  filter: drop-shadow(0 8px 0 rgba(0, 0, 0, 0.15));
}

.dollar {
  color: var(--yellow);
  text-shadow: 
    -4px -4px 0 var(--black-outline),
    4px -4px 0 var(--black-outline),
    -4px 4px 0 var(--black-outline),
    4px 4px 0 var(--black-outline),
    0 0 20px var(--yellow);
}

.tagline {
  font-family: "Titan One", cursive;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--cyan);
  text-shadow: 
    -3px -3px 0 var(--black-outline),
    3px -3px 0 var(--black-outline),
    -3px 3px 0 var(--black-outline),
    3px 3px 0 var(--black-outline);
  margin-bottom: 2rem;
}

.prophecy-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: white;
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  border-radius: 50px;
  border: 5px solid var(--black-outline);
  box-shadow: 
    0 0 0 3px var(--primary-green),
    0 8px 0 var(--black-outline);
}

.year-badge {
  font-family: "Fredoka", cursive;
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
  padding: 0.5rem 1rem;
  background: var(--text-dark);
  border-radius: 20px;
  border: 3px solid var(--black-outline);
  box-shadow: 0 3px 0 var(--black-outline);
}

.year-badge.active {
  background: var(--primary-green);
  color: var(--black-outline);
  animation: pulse-glow 2s infinite;
  font-weight: 900;
}

.arrow {
  font-size: 1.5rem;
  color: var(--yellow);
  filter: drop-shadow(0 0 10px var(--yellow));
}

/* ===== SOCIAL ICONS SECTION ===== */
.social-icons-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0 1.5rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    backdrop-filter: blur(10px);
    border: 4px solid var(--black-outline);
    box-shadow: 
      0 0 0 2px var(--primary-green),
      0 5px 0 var(--black-outline);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(57, 255, 20, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.social-icon:hover::before {
    width: 100%;
    height: 100%;
}

.social-icon:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 
      0 0 0 2px var(--cyan),
      0 10px 0 var(--black-outline),
      0 0 40px rgba(57, 255, 20, 0.6);
}

.social-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary-green);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-icon:hover svg {
    color: #fff;
    transform: scale(1.1);
}

.telegram-icon:hover {
    box-shadow: 
      0 0 0 2px #0088cc,
      0 10px 0 var(--black-outline),
      0 0 40px rgba(0, 136, 204, 0.8);
}

.telegram-icon:hover svg {
    color: #0088cc;
}

.x-icon:hover {
    box-shadow: 
      0 0 0 2px #fff,
      0 10px 0 var(--black-outline),
      0 0 40px rgba(255, 255, 255, 0.6);
}

.x-icon:hover svg {
    color: #fff;
}

.dex-icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.dex-icon:hover img {
    transform: scale(1.1);
}

/* ===== CA SECTION ===== */
.ca-section {
    margin: 2rem auto;
    max-width: 700px;
    text-align: center;
}

.ca-label {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
      -2px -2px 0 var(--black-outline),
      2px -2px 0 var(--black-outline),
      -2px 2px 0 var(--black-outline),
      2px 2px 0 var(--black-outline);
}

.ca-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: white;
    backdrop-filter: blur(10px);
    padding: 1.2rem 2rem;
    border-radius: 20px;
    border: 5px solid var(--black-outline);
    box-shadow: 
      0 0 0 3px var(--primary-green),
      0 8px 0 var(--black-outline);
    transition: all 0.3s ease;
    flex-wrap: wrap;
}

.ca-container:hover {
    box-shadow: 
      0 0 0 3px var(--cyan),
      0 8px 0 var(--black-outline),
      0 0 40px rgba(0, 229, 255, 0.6);
    transform: translateY(-2px);
}

.ca-text {
    font-family: "Courier New", monospace;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 700;
    word-break: break-all;
    flex: 1;
    min-width: 200px;
}

.ca-copy-btn {
    background: var(--primary-green);
    border: 4px solid var(--black-outline);
    padding: 0.7rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    box-shadow: 0 4px 0 var(--black-outline);
}

.ca-copy-btn svg {
    width: 22px;
    height: 22px;
    color: var(--black-outline);
}

.ca-copy-btn:hover {
    transform: translateY(-4px);
    box-shadow: 
      0 8px 0 var(--black-outline),
      0 0 25px rgba(57, 255, 20, 0.8);
    background: var(--cyan);
}

.ca-copy-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--black-outline);
}

/* ===== CHART SECTION ===== */
.chart-section {
    margin: 3rem 0;
    padding: 0 1rem;
}

.chart-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 1.5rem;
    border: 5px solid var(--black-outline);
    box-shadow: 
      0 0 0 3px var(--primary-green),
      0 10px 0 var(--black-outline);
    overflow: hidden;
}

.dex-chart {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 15px;
    background: transparent;
}

/* ===== STORY SECTION ===== */
.story-section {
  margin: 4rem 0;
}

.story-card {
  background: white;
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 3rem;
  border: 5px solid var(--black-outline);
  box-shadow: 
    0 0 0 3px var(--primary-green),
    0 10px 0 var(--black-outline);
}

.section-title {
  font-family: "Titan One", cursive;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-green);
  text-shadow: 
    -3px -3px 0 var(--black-outline),
    3px -3px 0 var(--black-outline),
    -3px 3px 0 var(--black-outline),
    3px 3px 0 var(--black-outline);
}

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

.timeline-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: rgba(127, 217, 87, 0.05);
  padding: 2rem;
  border-radius: 20px;
  border: 4px solid var(--black-outline);
  border-left: 8px solid var(--primary-green);
  box-shadow: 
    0 5px 0 var(--black-outline);
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(10px) translateY(-5px);
  background: rgba(127, 217, 87, 0.15);
  box-shadow: 
    0 8px 0 var(--black-outline);
}

.timeline-icon {
  font-size: 3rem;
  min-width: 60px;
  text-align: center;
  animation: bounce 2s infinite;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
}

.timeline-content h3 {
  font-family: "Fredoka", cursive;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--cyan);
  margin-bottom: 0.5rem;
  text-shadow: 
    -2px -2px 0 var(--black-outline),
    2px -2px 0 var(--black-outline),
    -2px 2px 0 var(--black-outline),
    2px 2px 0 var(--black-outline);
}

.timeline-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

/* ===== FEATURES SECTION ===== */
.features-section {
  margin: 4rem 0;
}

.glow-text {
  animation: glow-pulse 3s infinite;
}

@keyframes glow-pulse {
  0%,
  100% {
    text-shadow: 
      -3px -3px 0 var(--black-outline),
      3px -3px 0 var(--black-outline),
      -3px 3px 0 var(--black-outline),
      3px 3px 0 var(--black-outline);
  }
  50% {
    text-shadow: 
      -3px -3px 0 var(--black-outline),
      3px -3px 0 var(--black-outline),
      -3px 3px 0 var(--black-outline),
      3px 3px 0 var(--black-outline),
      0 0 20px var(--primary-green);
  }
}

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

.feature-card {
  background: white;
  backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 25px;
  text-align: center;
  border: 5px solid var(--black-outline);
  box-shadow: 
    0 0 0 3px var(--primary-green),
    0 8px 0 var(--black-outline);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    transparent,
    rgba(57, 255, 20, 0.1),
    transparent 30%
  );
  animation: rotate 4s linear infinite;
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 
    0 0 0 3px var(--cyan),
    0 15px 0 var(--black-outline);
}

.feature-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: bounce 2s infinite;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
}

.card-1 .feature-icon {
  animation-delay: 0s;
}
.card-2 .feature-icon {
  animation-delay: 0.2s;
}
.card-3 .feature-icon {
  animation-delay: 0.4s;
}
.card-4 .feature-icon {
  animation-delay: 0.6s;
}

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

.feature-card h3 {
  font-family: "Fredoka", cursive;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--cyan);
  margin-bottom: 1rem;
  text-shadow: 
    -2px -2px 0 var(--black-outline),
    2px -2px 0 var(--black-outline),
    -2px 2px 0 var(--black-outline),
    2px 2px 0 var(--black-outline);
}

.feature-card p {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.5;
}

/* ===== CTA SECTION ===== */
.cta-section {
  margin: 4rem 0;
}

.cta-card {
  background: linear-gradient(
    135deg,
    rgba(127, 217, 87, 0.15),
    rgba(0, 188, 212, 0.15)
  );
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 4rem 3rem;
  text-align: center;
  border: 5px solid var(--black-outline);
  box-shadow: 
    0 0 0 4px var(--primary-green),
    0 10px 0 var(--black-outline);
}

.cta-title {
  font-family: "Bangers", cursive;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--yellow);
  text-shadow: 
    -4px -4px 0 var(--black-outline),
    4px -4px 0 var(--black-outline),
    -4px 4px 0 var(--black-outline),
    4px 4px 0 var(--black-outline),
    0 0 20px var(--yellow);
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-family: "Fredoka", cursive;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 4px solid var(--black-outline);
  box-shadow: 0 6px 0 var(--black-outline);
}

.social-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.social-btn:hover::before {
  width: 300px;
  height: 300px;
}

.social-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 11px 0 var(--black-outline);
}

.social-btn:active {
  transform: translateY(2px);
  box-shadow: 0 4px 0 var(--black-outline);
}

.telegram {
  background: linear-gradient(135deg, #0088cc, #00aaff);
  color: #fff;
}

.reddit {
  background: linear-gradient(135deg, #ff4500, #ff6633);
  color: #fff;
}

.btn-icon {
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
}

.btn-text {
  position: relative;
  z-index: 1;
  text-shadow: 
    -1px -1px 0 rgba(0, 0, 0, 0.3),
    1px 1px 0 rgba(0, 0, 0, 0.3);
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 3rem 2rem;
  margin-top: 4rem;
  border-top: 4px solid var(--black-outline);
  box-shadow: 0 -2px 0 var(--primary-green);
}

.footer-horse {
  margin-bottom: 2rem;
}

.footer-logo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--black-outline);
  box-shadow: 
    0 0 0 3px var(--primary-green),
    0 5px 0 var(--black-outline);
  background: white;
}

.gallop {
  animation: gallop 1s infinite;
}

@keyframes gallop {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-5px) rotate(-2deg);
  }
  75% {
    transform: translateY(-5px) rotate(2deg);
  }
}

.footer-text {
  font-size: 0.9rem;
  color: rgba(26, 26, 26, 0.7);
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.footer-copyright {
  font-size: 1rem;
  color: var(--primary-green);
  font-weight: 700;
  text-shadow: 
    -2px -2px 0 var(--black-outline),
    2px -2px 0 var(--black-outline),
    -2px 2px 0 var(--black-outline),
    2px 2px 0 var(--black-outline);
}

/* ===== ANIMATIONS ===== */
.bounce-in {
  animation: bounceIn 1s ease-out;
}

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

.slide-in-top {
  animation: slideInTop 1s ease-out 0.3s both;
}

@keyframes slideInTop {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.slide-in-bottom {
  animation: slideInBottom 1s ease-out 0.5s both;
}

@keyframes slideInBottom {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.fade-in-delay {
  animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.pulse {
  animation: pulse-glow 2s infinite;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .logo-container {
        width: 200px;
        height: 200px;
    }

    .main-title {
        font-size: clamp(3rem, 12vw, 6rem);
    }

    .tagline {
        font-size: clamp(1.2rem, 3.5vw, 2rem);
    }

    .prophecy-badge {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 1.5rem;
    }

    .arrow {
        transform: rotate(90deg);
    }

    /* Social Icons Mobile */
    .social-icons-section {
        gap: 1rem;
    }

    .social-icon {
        width: 55px;
        height: 55px;
    }

    .social-icon svg {
        width: 26px;
        height: 26px;
    }

    .dex-icon img {
        width: 30px;
        height: 30px;
    }

    /* CA Section Mobile */
    .ca-section {
        padding: 0 0.5rem;
    }

    .ca-container {
        padding: 1rem 1.2rem;
        gap: 0.8rem;
    }

    .ca-text {
        font-size: 0.85rem;
        min-width: 150px;
    }

    .ca-copy-btn {
        min-width: 40px;
        height: 40px;
        padding: 0.6rem;
    }

    .ca-copy-btn svg {
        width: 18px;
        height: 18px;
    }

    /* Chart Section Mobile */
    .chart-section {
        margin: 2rem 0;
        padding: 0 0.5rem;
    }

    .chart-container {
        padding: 1rem;
    }

    .dex-chart {
        height: 450px;
    }

    .story-card {
        padding: 2rem 1.5rem;
    }

    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .timeline-icon {
        margin: 0 auto;
        font-size: 2.5rem;
    }

    .timeline-content h3 {
        font-size: 1.3rem;
    }

    .timeline-content p {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .feature-icon {
        font-size: 3rem;
    }

    .feature-card h3 {
        font-size: 1.5rem;
    }

    .feature-card p {
        font-size: 1rem;
    }

    .cta-card {
        padding: 2rem 1.5rem;
    }

    .cta-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .cta-text {
        font-size: 1.1rem;
    }

    .social-links {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .social-btn {
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .meme-float {
        font-size: 2rem;
    }

    .footer-logo {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .logo-container {
        width: 150px;
        height: 150px;
    }

    .main-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .tagline {
        font-size: clamp(1rem, 3vw, 1.5rem);
    }

    .prophecy-badge {
        padding: 0.8rem 1rem;
    }

    .year-badge {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    /* Social Icons Extra Small */
    .social-icons-section {
        gap: 0.8rem;
    }

    .social-icon {
        width: 50px;
        height: 50px;
    }

    .social-icon svg {
        width: 24px;
        height: 24px;
    }

    .dex-icon img {
        width: 28px;
        height: 28px;
    }

    /* CA Section Extra Small */
    .ca-label {
        font-size: 0.85rem;
    }

    .ca-container {
        flex-direction: column;
        padding: 1rem;
        gap: 0.8rem;
    }

    .ca-text {
        font-size: 0.75rem;
        text-align: center;
    }

    .ca-copy-btn {
        width: 100%;
        max-width: 200px;
    }

    /* Chart Section Extra Small */
    .dex-chart {
        height: 350px;
    }

    .story-card {
        padding: 1.5rem 1rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: 2rem;
    }

    .timeline-item {
        padding: 1.2rem;
    }

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

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .timeline-content p {
        font-size: 0.95rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .cta-card {
        padding: 1.5rem 1rem;
    }

    .social-btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    .btn-icon {
        font-size: 1.3rem;
    }

    .meme-float {
        font-size: 1.5rem;
        opacity: 0.1;
    }

    .footer {
        padding: 2rem 1rem;
    }

    .footer-logo {
        width: 70px;
        height: 70px;
    }

    .footer-text {
        font-size: 0.85rem;
    }
}

/* ===== LANDSCAPE MOBILE ===== */
@media (max-width: 900px) and (max-height: 500px) {
    .dex-chart {
        height: 300px;
    }

    .logo-container {
        width: 120px;
        height: 120px;
    }

    .hero {
        padding: 1.5rem 1rem;
    }
}

/* ===== TABLET OPTIMIZATION ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    .dex-chart {
        height: 550px;
    }

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

    .ca-text {
        font-size: 1rem;
    }
}
