@import url("css2-1");

@font-face {
  font-family: "Comicbon";
  src: url("Comicbon.ttf") format("truetype");
}

@font-face {
  font-family: "Comicy";
  src: url("Comicy.ttf") format("truetype");
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: rgb(97, 76, 255);

  --bg-secondary: #5041d9;

  --accent-neon: #000;

  --accent-pink: #06f652;

  --text-primary: #ffffff;

  --glow-green: rgba(78, 255, 125, 0.5);
  --glow-pink: #06f652e2;
}

body {
  font-family: "Comicbon", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

/* Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4rem;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.logo img {
  height: 50px;
}

nav ul {
  display: flex;
  gap: 3rem;
  list-style: none;
}

nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--glow-green) !important;
}
.cta-button-m,
.cta-button,
.book-call {
  background-color: var(--accent-pink);
  color: var(--text-primary);
  transition: none;
}

.cta-button-m {
  padding: 10px !important;
  border-radius: 6px;
  cursor: pointer;
  border: 0;
}

.cta-button-m:hover {
  background-color: var(--accent-pink);
  color: white;
}

.cta-button {
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.cta-button:hover {
  background-color: var(--accent-pink);
  color: var(--text-primary);
  transform: none;
  box-shadow: none;
}

/* Hero Section Styles */
.hero {
  position: relative;
  z-index: 0;
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  padding: 7rem 2rem 2rem 2rem;
}

.hero-content {
  max-width: 800px;
}

.subheading {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
  color: var(--text-primary);
  font-style: italic;
}

h1 {
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.hero-content p {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.book-call {
  border: none;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
}

.book-call:hover {
  transform: none;
  background-color: var(--accent-pink);
  color: var(--text-primary);
  box-shadow: none;
}

/* Stress Animation for buttons */
@keyframes stress {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.cta-button:hover,
.book-call:hover {
  animation: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  header {
    padding: 1.5rem 2rem;
  }

  nav ul {
    gap: 1.5rem;
  }

  h1 {
    font-size: 3.5rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }
}

/* About Section Styles */
.about {
  background-color: var(--bg-secondary);
  position: relative;
  z-index: 0;
  padding-top: 12rem;
  padding: 36rem 2rem 11rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Common title styling */
section h2 {
  font-size: 3.5rem;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

section h2 span {
  color: var(--accent-pink);
}

/* Remove any conflicting title styles */
.tokenomics h2,
.how-to-buy h2 {
  /* Reset any specific styles */
  font-size: 3.5rem;
  margin-bottom: 3rem;
}

/* Responsive adjustment for all titles */
@media (max-width: 768px) {
  section h2 {
    font-size: 2.5rem;
    gap: 0.5rem;
  }
}

.about h2 {
  font-size: 3.5rem;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--text-primary);
}

.about h2 span {
  color: var(--accent-pink);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  color: var(--text-primary);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.soon-list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
  background: rgba(255, 87, 203, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-pink);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 500;
}

/* Add this to your existing media queries */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats {
    grid-template-columns: 1fr;
  }
}

/* SVG Divider Styles */
.svg-divider {
  pointer-events: none;
  position: relative;
  margin-top: -20%;
  /* Pull the SVG up into the hero section */
  margin-bottom: -30%;
  /* Push into about section */
  z-index: 2;
  /* Place above sections */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.svg-divider svg {
  width: 100%;
  z-index: 2;
}

/* Circle with lowest z-index */
.center-circle {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: var(--bg-secondary);
  border-radius: 50%;
  z-index: 1;
}

/* Separate container for MADAF image */
.madaf-container {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  z-index: 10;
  /* Higher than circle and SVG */
  display: flex;
  justify-content: center;
  align-items: center;
}

.madaf-image {
  width: 600px;
  /* Adjust size as needed */
  height: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .center-circle,
  .madaf-container {
    width: 150px;
    height: 150px;
  }

  .madaf-image {
    width: 200px;
  }
}

/* Anime effects styling */
.anime-effects {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.effect-line {
  position: absolute;
  background: var(--text-primary);
  opacity: 0;
  width: 20px;
  height: 3px;
}

.line1 {
  top: 30%;
  right: -30px;
  transform: rotate(45deg);
}

.line2 {
  bottom: 30%;
  right: -30px;
  transform: rotate(-45deg);
}

.line3 {
  top: 30%;
  left: -30px;
  transform: rotate(-45deg);
}

.line4 {
  bottom: 30%;
  left: -30px;
  transform: rotate(45deg);
}

/* Tokenomics Section */
.tokenomics {
  background-color: var(--bg-secondary);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .tokenomics {
    flex-direction: column;
  }
}

/* Add the pills container and pills */
.floating-pills {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

/* Base styles for both pills and circles */
.pill,
.circle {
  position: absolute;
  background: rgba(255, 255, 255, 0.65);
  animation: floatElement 15s linear infinite;
}

/* Pill specific styles */
.pill {
  border-radius: 50px;
  width: 40px;
  height: 15px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(78, 255, 125, 0.55) 50%
  );
}

/* Optional: Add different color combinations for some pills */
.pill:nth-child(odd) {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(78, 255, 125, 0.55) 50%
  );
}

.pill:nth-child(even) {
  background: linear-gradient(
    -90deg,
    #4eff7d8c 50%,
    rgba(255, 255, 255, 0.55) 50%
  );
}

/* Circle specific styles */
.circle {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  background-color: #4eff7d8c;
  position: relative;
  border: 2px solid gray;
}

.circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -2px;
  right: -2px;
  height: 1.2px;
  background-color: gray;
  transform: translateY(-50%);
}

/* Separate positions for pills and circles */
.pill:nth-child(1) {
  left: 5%;
  animation-delay: 0s;
}
.pill:nth-child(2) {
  left: 15%;
  animation-delay: -2s;
}
.pill:nth-child(3) {
  left: 25%;
  animation-delay: -4s;
}
.pill:nth-child(4) {
  left: 35%;
  animation-delay: -6s;
}
.pill:nth-child(5) {
  left: 45%;
  animation-delay: -8s;
}
.pill:nth-child(6) {
  left: 55%;
  animation-delay: -10s;
}
.pill:nth-child(7) {
  left: 65%;
  animation-delay: -3s;
}
.pill:nth-child(8) {
  left: 75%;
  animation-delay: -5s;
}
.pill:nth-child(9) {
  left: 85%;
  animation-delay: -7s;
}
.pill:nth-child(10) {
  left: 95%;
  animation-delay: -9s;
}
.pill:nth-child(11) {
  left: 10%;
  animation-delay: -11s;
}
.pill:nth-child(12) {
  left: 30%;
  animation-delay: -13s;
}
.pill:nth-child(13) {
  left: 50%;
  animation-delay: -1s;
}
.pill:nth-child(14) {
  left: 70%;
  animation-delay: -12s;
}
.pill:nth-child(15) {
  left: 90%;
  animation-delay: -14s;
}

/* Different positions for circles */
.circle:nth-child(16) {
  left: 8%;
  animation-delay: -2.5s;
  width: 15px;
  height: 15px;
}
.circle:nth-child(17) {
  left: 20%;
  animation-delay: -4.5s;
  width: 25px;
  height: 25px;
}
.circle:nth-child(18) {
  left: 32%;
  animation-delay: -6.5s;
  width: 10px;
  height: 10px;
}
.circle:nth-child(19) {
  left: 42%;
  animation-delay: -8.5s;
  width: 20px;
  height: 20px;
}
.circle:nth-child(20) {
  left: 58%;
  animation-delay: -10.5s;
  width: 30px;
  height: 30px;
}
.circle:nth-child(21) {
  left: 68%;
  animation-delay: -1.5s;
  width: 15px;
  height: 15px;
}
.circle:nth-child(22) {
  left: 78%;
  animation-delay: -3.5s;
  width: 20px;
  height: 20px;
}
.circle:nth-child(23) {
  left: 88%;
  animation-delay: -5.5s;
  width: 25px;
  height: 25px;
}
.circle:nth-child(24) {
  left: 98%;
  animation-delay: -7.5s;
  width: 15px;
  height: 15px;
}
.circle:nth-child(25) {
  left: 12%;
  animation-delay: -9.5s;
  width: 20px;
  height: 20px;
}
.circle:nth-child(26) {
  left: 22%;
  animation-delay: -11.5s;
  width: 25px;
  height: 25px;
}
.circle:nth-child(27) {
  left: 38%;
  animation-delay: -13.5s;
  width: 15px;
  height: 15px;
}
.circle:nth-child(28) {
  left: 52%;
  animation-delay: -2.8s;
  width: 20px;
  height: 20px;
}
.circle:nth-child(29) {
  left: 72%;
  animation-delay: -4.8s;
  width: 10px;
  height: 10px;
}
.circle:nth-child(30) {
  left: 92%;
  animation-delay: -6.8s;
  width: 25px;
  height: 25px;
}

@keyframes floatElement {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  20% {
    opacity: 0.15;
  }
  80% {
    opacity: 0.15;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* Ensure content stays above pills */
.tokenomics-flow {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  margin: 50px 0px;
}

.token-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 1rem;
  transition: transform 0.3s ease;
}

.token-item:hover {
  transform: scale(1.05);
}

.token-icon {
  font-size: 3.5rem;
  color: var(--accent-pink);
  margin-bottom: 1rem;
}

.token-content h3 {
  color: var(--accent-pink);
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.token-content p {
  color: var(--text-primary);
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.token-detail {
  color: var(--accent-pink);
  font-size: 1rem;
  opacity: 0.8;
  font-style: italic;
}

/* How To Buy Section */
.how-to-buy {
  background-color: var(--bg-secondary);
  padding: 8rem 2rem;
  position: relative;
}

.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 4rem;
  position: relative;
  border-left: 2px solid var(--accent-pink);
  padding-left: 2rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
  padding: 1rem 0;
}

.step-number {
  background: var(--accent-pink);
  color: var(--text-primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 0 20px rgba(255, 87, 203, 0.3);
  position: absolute;
  left: -3rem;
}

.step-content {
  padding-left: 1rem;
}

.step-content h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.step-content p {
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 1rem;
  opacity: 0.8;
}

/* Footer */
.footer {
  background-color: var(--bg-primary);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-madaf {
  width: 50px;
  height: 50px;
}

.footer-logo p {
  color: var(--accent-pink);
  font-size: 1.5rem;
  font-weight: bold;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}

.footer-links a i {
  font-size: 1.3rem;
}

.footer-links a:hover {
  color: var(--accent-pink);
  transform: translateY(-2px);
}

.footer-links a:hover i {
  animation: bounce 0.5s ease infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.footer-bottom {
  text-align: center;
  color: var(--text-primary);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .tokenomics-flow {
    flex-direction: column;
  }

  .steps-timeline {
    border-left: none;
    padding-left: 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
  }
}

.smooth-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  will-change: transform;
}

/* How To Buy Animation Elements */
.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.15;
}

.wallet,
.sol-logo,
.arrow {
  position: absolute;
  animation: floatBuyElements 12s linear infinite;
}

.wallet {
  width: 30px;
  height: 25px;
  background: var(--text-primary);
  border-radius: 5px;
  position: relative;
}

.wallet::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 20px;
  height: 5px;
  background: var(--text-primary);
  border-radius: 5px 5px 0 0;
}

.sol-logo {
  width: 20px;
  height: 20px;
  background: var(--accent-pink);
  transform: rotate(45deg);
}

.arrow {
  width: 30px;
  height: 4px;
  background: var(--text-primary);
  position: relative;
}

.arrow::before {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  border: 8px solid transparent;
  border-left: 12px solid var(--text-primary);
}

/* Positioning */
.wallet:nth-child(1) {
  left: 5%;
  animation-delay: -2s;
}
.sol-logo:nth-child(2) {
  left: 15%;
  animation-delay: -1s;
}
.arrow:nth-child(3) {
  left: 25%;
  animation-delay: -3s;
}
.wallet:nth-child(4) {
  left: 35%;
  animation-delay: -4s;
}
.sol-logo:nth-child(5) {
  left: 45%;
  animation-delay: -2.5s;
}
.arrow:nth-child(6) {
  left: 55%;
  animation-delay: -1.5s;
}
.wallet:nth-child(7) {
  left: 65%;
  animation-delay: -3.5s;
}
.sol-logo:nth-child(8) {
  left: 75%;
  animation-delay: -2.8s;
}
.arrow:nth-child(9) {
  left: 85%;
  animation-delay: -4.2s;
}
.wallet:nth-child(10) {
  left: 95%;
  animation-delay: -1.8s;
}

@keyframes floatBuyElements {
  0% {
    transform: translateY(-100px) rotate(0deg);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Base responsive container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header responsive updates */
@media (max-width: 1024px) {
  header {
    padding: 1.5rem 2rem;
  }

  nav ul {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Hero section responsive updates */
@media (max-width: 1024px) {
  h1 {
    font-size: 4rem;
  }

  .hero-content p {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 4rem 1rem 2rem 1rem;
  }

  h1 {
    font-size: 3rem;
  }

  .subheading {
    font-size: 1.2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }
}

/* SVG divider responsive updates */
@media (max-width: 1024px) {
  .center-circle {
    width: 400px;
    height: 400px;
  }

  .madaf-container {
    width: 300px;
    height: 300px;
  }

  .madaf-image {
    width: 400px;
  }
}

@media (max-width: 768px) {
  .center-circle {
    width: 250px;
    height: 250px;
  }

  .madaf-container {
    width: 200px;
    height: 200px;
  }

  .madaf-image {
    width: 250px;
  }
}

/* Tokenomics section responsive updates */
@media (max-width: 1024px) {
  .tokenomics-flow {
    gap: 2rem;
  }

  .token-content h3 {
    font-size: 1.5rem;
  }

  .token-content p {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .tokenomics-flow {
    flex-direction: column;
    align-items: center;
  }

  .token-item {
    width: 100%;
    max-width: 300px;
  }
}

/* About section responsive updates */
@media (max-width: 1024px) {
  .about-grid {
    gap: 3rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 24rem 1rem 8rem 1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats {
    grid-template-columns: 1fr;
  }
}

/* How to buy section responsive updates */
@media (max-width: 768px) {
  .steps-timeline {
    margin-left: 1rem;
  }

  .step-item {
    gap: 1rem;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    left: -2.5rem;
  }

  .step-content h3 {
    font-size: 1.3rem;
  }
}

/* Footer responsive updates */
@media (max-width: 768px) {
  .footer {
    padding: 3rem 1rem 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}

/* Font size adjustments for very small screens */
@media (max-width: 360px) {
  h1 {
    font-size: 2.5rem;
  }

  .subheading {
    font-size: 1rem;
  }

  section h2 {
    font-size: 2rem;
  }

  .token-content h3 {
    font-size: 1.2rem;
  }

  .token-content p {
    font-size: 1.8rem;
  }
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loading-content {
  text-align: center;
}

.loading-number {
  font-size: 8rem; /* Default size for desktop */
  font-weight: 800;
  color: var(--accent-pink);
  margin-bottom: 1rem;
  font-family: "Comicy", monospace;
  text-shadow: 0 0 20px var(--glow-pink);
}

/* Add responsive adjustments for loading screen */
@media (max-width: 768px) {
  .loading-number {
    font-size: 5rem; /* Reduced size for tablets */
  }

  .loading-bar {
    width: 150px; /* Smaller loading bar for mobile */
  }
}

@media (max-width: 480px) {
  .loading-number {
    font-size: 4rem; /* Even smaller for phones */
  }

  .loading-bar {
    width: 120px;
  }
}

.loading-bar {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 1rem auto;
  overflow: hidden;
}

.loading-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--accent-pink);
  transition: width 0.05s ease;
  box-shadow: 0 0 10px var(--glow-pink);
}

.loading-text {
  color: var(--text-primary);
  font-size: 1.2rem;
  opacity: 0.8;
  margin-top: 1rem;
}

/* Hide main content initially */
.smooth-wrapper {
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Title sticker styling */
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.section-title h2 {
  margin-bottom: 0; /* Remove margin since it's handled by section-title */
}

.title-sticker {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 87, 203, 0.3));
  transition: transform 0.3s ease;
}

.title-sticker:hover {
  transform: scale(1.1) rotate(10deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-title {
    flex-direction: column-reverse; /* Stack items and reverse order */
    gap: 0.5rem;
  }

  .section-title h2 {
    display: flex;
    flex-direction: column;
  }

  .title-sticker {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
}

/* Mobile Navigation Styles */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1000;
}

.mobile-nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-nav-overlay {
  position: fixed;
  top: -100%; /* Start from above the viewport */
  left: 0;
  width: 100%;
  background-color: var(--bg-primary);
  z-index: 999;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-height: 300px; /* Limit the height */
  overflow-y: auto; /* Add scroll if needed */
}

.mobile-nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

.mobile-nav-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem; /* Reduce gap */
}

.mobile-nav-content .cta-button {
  width: 100%;
  max-width: 200px;
  margin-top: 1rem;
}

.mobile-nav-overlay nav ul {
  gap: 0.5rem !important; /* Reduce gap between nav items */
}

.mobile-nav-overlay nav a {
  font-size: 1.1rem !important; /* Slightly smaller font */
  padding: 0.3rem 0 !important; /* Reduce padding */
}

/* Update existing media query */
@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: block;
  }

  .mobile-nav-content .cta-button {
    font-size: smaller;
  }

  nav {
    display: none;
  }

  header {
    position: relative;
    z-index: 1000;
    background-color: var(--bg-primary);
    flex-direction: row;
  }

  .mobile-nav-overlay {
    display: block;
  }

  .mobile-nav-overlay nav {
    display: block;
  }

  .mobile-nav-overlay nav ul {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .mobile-nav-overlay nav a {
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(20px);
    padding: 0.5rem 0;
    display: block;
  }

  /* Hide desktop CTA button on mobile */
  header .cta-button {
    display: none;
  }

  /* Hamburger animation classes */
  .mobile-nav-toggle.active span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav-toggle.active span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* Additional responsive adjustments for small screens */
@media (max-width: 550px) {
  /* Container adjustments */
  .container {
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
  }

  .subheading {
    font-size: 0.8rem;
  }
  /* Tokenomics adjustments */
  .tokenomics-flow {
    padding: 0 10px;
  }

  .token-content p {
    font-size: 1.8rem; /* Smaller font size for numbers */
    word-break: break-word; /* Break long numbers */
  }

  section h2 {
    font-size: 1.7rem;
  }

  /* Hero section adjustments */
  .hero-content {
    padding: 0 15px;
  }

  h1 {
    font-size: 2rem;
    padding: 0 10px;
  }

  /* About section adjustments */
  .about-text {
    padding: 0 15px;
  }

  .stats {
    padding: 0 10px;
  }

  /* How to buy section adjustments */
  .steps-timeline {
    padding: 0 25px;
  }

  .step-content {
    padding-right: 10px;
  }

  /* Loading number additional adjustment */
  .loading-number {
    font-size: 3.5rem;
    padding: 0 10px;
  }
}

/* Update all headings to use Comicy */
h1,
h2,
h3,
.section-title h2,
.token-content h3 {
  letter-spacing: 3.2px;
  font-family: "Comicy", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif !important;
}

/* Ensure paragraphs and navigation use Comicbon */
p,
nav a,
.token-content p,
.step-content p,
.footer-links a {
  font-family: "Comicbon", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif !important;
}

/* Update loading number to use Comicy */
.loading-number {
  font-family: "Comicy", monospace;
  font-weight: 100 !important;
}

.tba {
  border: 1px solid white;
  padding: 40px;
  font-size: 2rem;
  border: 3px solid var(--accent-pink);
  border-radius: 12px;
  font-weight: bold;
  background-color: #ffffff3c;
  max-width: 500px;
  width: 100%;
  margin: auto;
}

.tba p {
  font-size: 18px;
  padding: 5px 0px;
  text-align: left;
  padding: 15px 0px;
}

.tba img {
  max-width: 300px;
  width: 100%;
}

.soon-list p {
  margin-top: 20px;
  padding: 0px !important;
  text-align: center !important;
}

.tba .p::before {
  content: "\25A0";
  color: var(--accent-pink);
  display: inline-block;
  margin-right: 10px;
}

/* Sticker Gallery Section */
.stickers {
  background-color: var(--bg-secondary);
  padding: 8rem 2rem;
  position: relative;
  z-index: 1;
  min-height: 100vh;
  overflow: hidden;
}

.sticker-gallery {
  position: relative;
  height: 80vh;
  margin: 2rem auto;
}

.sticker-item {
  position: absolute;
  cursor: grab;
  transform-origin: center;
  will-change: transform;
  user-select: none;
  transition: z-index 0s;
  z-index: 1;
}

.sticker-item.dragging {
  cursor: grabbing;
  z-index: 100;
}

.sticker-inner {
  position: relative;
  transform-origin: center;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.sticker-image {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(6, 246, 82, 0.3));
  transition: filter 0.3s ease;
  pointer-events: none;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.sticker-item:hover .sticker-image {
  filter: drop-shadow(0 0 20px rgba(6, 246, 82, 0.8));
}

/* Responsive adjustments for sticker gallery */
@media (max-width: 768px) {
  .stickers {
    padding: 4rem 1rem;
  }

  .sticker-gallery {
    height: 60vh;
  }

  .sticker-image {
    width: 120px;
  }

  .tokenomics h2,
  .how-to-buy h2 {
    /* Reset any specific styles */
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .sticker-gallery {
    height: 50vh;
  }

  .sticker-image {
    width: 100px;
  }
}
