body {
  margin: 0;
  font-family: 'Bangers', 'Comic Neue', Arial, sans-serif;
  background: #ffe600;
  color: #222;
  overflow-x: hidden;
}

.hero {
  position: relative;
  background: linear-gradient(180deg, #ff4d4d 0%, #ffe600 100%);
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.city-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: url('https://svgshare.com/i/15wF.svg') repeat-x bottom;
  opacity: 0.5;
  z-index: 1;
}

.rays {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: repeating-conic-gradient(from 0deg, #ffe600 0deg 10deg, #ff4d4d 10deg 20deg);
  opacity: 0.2;
  z-index: 2;
  animation: rays-flash 2s linear infinite;
}

@keyframes rays-flash {
  0% { opacity: 0.2; }
  50% { opacity: 0.4; }
  100% { opacity: 0.2; }
}

.super-bonk-logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border: 8px solid #222;
  border-radius: 50%;
  background: #fff;
  margin: 20px 0 10px 0;
  z-index: 3;
  box-shadow: 0 8px 32px #ff4d4d55;
}

.hero-title {
  font-size: 2.5rem;
  text-align: center;
  color: #fff;
  text-shadow: 4px 4px 0 #222, 8px 8px 0 #ffe600;
  margin: 0 0 30px 0;
  z-index: 3;
  letter-spacing: 2px;
  padding: 0 20px;
}

#bonk-bubbles {
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  height: 80%;
  pointer-events: none;
  z-index: 4;
}

.speech-bubble {
  position: absolute;
  background: #fff;
  border: 4px solid #222;
  border-radius: 30px;
  padding: 18px 32px;
  font-size: 2rem;
  font-family: 'Bangers', 'Comic Neue', Arial, sans-serif;
  color: #ff4d4d;
  box-shadow: 4px 4px 0 #ffe600, 8px 8px 0 #222;
  transform: rotate(-10deg);
  animation: pop-bonk 0.5s cubic-bezier(.68,-0.55,.27,1.55);
  user-select: none;
}

@keyframes pop-bonk {
  0% { transform: scale(0.2) rotate(-10deg); opacity: 0; }
  80% { transform: scale(1.1) rotate(5deg); opacity: 1; }
  100% { transform: scale(1) rotate(-10deg); opacity: 1; }
}

.about, .tokenomics, .join, .gallery {
  padding: 60px 20px 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.about h2, .tokenomics h2, .join h2, .gallery h2 {
  font-size: 2.2rem;
  color: #ff4d4d;
  text-shadow: 2px 2px 0 #ffe600, 4px 4px 0 #222;
  margin-bottom: 20px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.about-story {
  flex: 2;
  font-size: 1.3rem;
  background: #fff8c6;
  border: 3px dotted #ff4d4d;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 2px 2px 0 #ffe600;
}

.comic-panels {
  flex: 3;
  display: flex;
  gap: 12px;
  align-items: center;
}

.panel {
  background: #fff;
  border: 4px solid #222;
  border-radius: 12px;
  width: 100px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bangers', 'Comic Neue', Arial, sans-serif;
  font-size: 1.1rem;
  color: #222;
  box-shadow: 2px 2px 0 #ffe600, 4px 4px 0 #ff4d4d;
}

.panel-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  background: #fff;
  border: 4px solid #222;
  border-radius: 12px;
  box-shadow: 2px 2px 0 #ffe600, 4px 4px 0 #ff4d4d;
  margin-right: 12px;
  margin-bottom: 0;
  display: block;
}

.tokenomics .comic-strip {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 20px;
}

.callout {
  background: #ffe600;
  border: 4px solid #222;
  border-radius: 18px;
  font-family: 'Bangers', 'Comic Neue', Arial, sans-serif;
  font-size: 1.3rem;
  color: #ff4d4d;
  padding: 18px 32px;
  box-shadow: 2px 2px 0 #222, 4px 4px 0 #fff;
  position: relative;
}

.callout::after {
  content: '💥';
  position: absolute;
  right: -24px;
  top: -18px;
  font-size: 2rem;
}

.join .cta {
  background: #ff4d4d;
  color: #fff;
  font-family: 'Bangers', 'Comic Neue', Arial, sans-serif;
  font-size: 1.5rem;
  border: 4px solid #222;
  border-radius: 18px;
  padding: 18px 40px;
  margin: 20px 0;
  box-shadow: 2px 2px 0 #ffe600, 4px 4px 0 #222;
  cursor: pointer;
  transition: background 0.2s;
}

.join .cta:hover {
  background: #ffe600;
  color: #ff4d4d;
}

.social-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 10px;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #fff;
  border: 4px solid #222;
  border-radius: 50%;
  font-size: 2rem;
  color: #ff4d4d;
  box-shadow: 2px 2px 0 #ffe600, 4px 4px 0 #222;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.icon:hover {
  background: #ff4d4d;
  color: #fff;
}

.gallery-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-grid img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border: 4px solid #222;
  border-radius: 18px;
  box-shadow: 2px 2px 0 #ffe600, 4px 4px 0 #ff4d4d;
  background: #fff;
}

@media (max-width: 700px) {
  .about-content {
    flex-direction: column;
    gap: 18px;
  }
  .comic-panels {
    justify-content: center;
  }
  .gallery-grid img {
    width: 100px;
    height: 100px;
  }
  .super-bonk-logo {
    width: 120px;
    height: 120px;
  }
  .hero-title {
    font-size: 1.3rem;
  }
}

.hero-callout {
  display: inline-block;
  margin: 18px auto 0 auto;
  padding: 14px 28px;
  font-family: 'Bangers', 'Comic Neue', Arial, sans-serif;
  font-size: 1.2rem;
  color: #222;
  background: #ffe600;
  border: 4px solid #ff4d4d;
  border-radius: 18px;
  box-shadow: 2px 2px 0 #222, 4px 4px 0 #fff;
  letter-spacing: 1px;
  text-align: center;
  z-index: 5;
  position: relative;
  user-select: all;
}

.x-community {
  padding: 40px 20px 40px 20px;
  max-width: 600px;
  margin: 100px auto 60px auto;
  text-align: center;
  background: #fffbe6;
  border: 6px solid #ff4d4d;
  border-radius: 32px;
  box-shadow: 6px 6px 0 #222, 12px 12px 0 #ffe600;
  position: relative;
}

.x-community h2 {
  font-size: 2.2rem;
  color: #ff4d4d;
  text-shadow: 2px 2px 0 #ffe600, 4px 4px 0 #222;
  margin-bottom: 18px;
  font-family: 'Bangers', 'Comic Neue', Arial, sans-serif;
  font-weight: bold;
  letter-spacing: 2px;
}

.x-community p {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 24px;
  font-family: 'Comic Neue', Arial, sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
}

.x-community-btn {
  background: #ff4d4d;
  color: #fff;
  border: 4px solid #222;
  border-radius: 18px;
  font-family: 'Bangers', 'Comic Neue', Arial, sans-serif;
  font-size: 1.3rem;
  padding: 18px 40px;
  box-shadow: 2px 2px 0 #ffe600, 4px 4px 0 #222;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  transition: background 0.2s, color 0.2s;
  font-weight: bold;
  letter-spacing: 1px;
}

.x-community-btn:hover {
  background: #ffe600;
  color: #ff4d4d;
  border-color: #222;
} 