html {
  scroll-behavior: smooth;
}

/* cute-font-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cute Font';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/cute-font-v22-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ibm-plex-mono-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/ibm-plex-mono-v19-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ibm-plex-mono-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/ibm-plex-mono-v19-latin-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

body {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  color: #F2F5F8;
  background-color: #1a0033;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

.header {
  position: sticky;
  z-index: 999;
  top: 0;
  left: 0;
  height: auto;
  min-height: 80px;
  background: linear-gradient(to right, #1a0033, #2e0054);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.block {
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: top;
  width: 100%;
  background-repeat: no-repeat;
  height: 85vh;
  transition: all 0.5s ease;
}

.block::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(26, 0, 51, 0.4), rgba(102, 0, 204, 0.3));
  z-index: 1;
}

.block1 {
  background-image: url("../images/1.jpg");
}

.block2.lazyloaded {
  background-image: url("../images/2.png");
}

.block3.lazyloaded {
  background-image: url("../images/3.png");
}

.block4.lazyloaded {
  background-image: url("../images/5.png");
}

.logo {
  width: 65px;
  height: 65px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 5px rgba(204, 153, 255, 0.7));
}

.logo:hover {
  transform: scale(1.1) rotate(5deg);
}

.branding {
  display: flex;
  gap: 25px;
  margin-left: 5%;
  margin-bottom: 0;
  align-items: center;
}

.header-title {
  font-size: 50px;
  font-family: "Cute Font", sans-serif;
  color: #cc99ff;
  text-shadow: 0 0 10px rgba(204, 153, 255, 0.5);
  letter-spacing: 1px;
}

/* New navigation styles */
.main-nav {
  margin-right: 5%;
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-family: "Cute Font", sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 8px 0;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #cc99ff;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #cc99ff;
  text-shadow: 0 0 10px rgba(204, 153, 255, 0.7);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.highlight {
  color: #cc99ff;
  background: rgba(204, 153, 255, 0.1);
  border: 1px solid #cc99ff;
  border-radius: 20px;
  padding: 8px 15px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-link.highlight:hover {
  background: rgba(204, 153, 255, 0.2);
  transform: translateY(-3px) scale(1.05);
}

.nav-link.highlight:active {
  transform: translateY(0) scale(0.95);
}

/* Hide mobile menu toggle by default */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.hamburger-bar {
  width: 100%;
  height: 3px;
  background-color: #cc99ff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Media queries for responsive design */
@media screen and (max-width: 900px) {
  .nav-menu {
    gap: 20px;
  }
  
  .nav-link {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
    right: -100%;
    width: 100%;
  height: 100vh;
    padding-top: 80px;
    background: linear-gradient(135deg, #1a0033 0%, #2e0054 100%);
    transition: right 0.5s ease;
    z-index: 99;
    gap: 40px;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    font-size: 24px;
  }
  
  /* Hamburger menu animation */
  .mobile-menu-toggle.active .hamburger-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .mobile-menu-toggle.active .hamburger-bar:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active .hamburger-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

@media screen and (max-width: 480px) {
  .branding {
    gap: 15px;
  }
  
  .header-title {
    font-size: 40px;
  }
}

.background-filter {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: 350%;
  filter: blur(10px);
  opacity: 0.4;
  background-image: url("../images/1.jpg");
}

.intro {
  position: relative;
  min-height: 85vh;
}

.intro__bg {
  background-position: right top;
}

.summary {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: center;
}

.summary__bg {
  background-position: center bottom;
}

.celebrate__bg {
  background-position: center center;
}

.info {
  position: relative;
  min-height: 100vh;
  scroll-margin-top: 15vh;
}

.info__bg {
  background-position: left bottom;
}

.intro-full {
  position: relative;
  padding-top: 100px;
  padding-left: 10%;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-bottom: 20px;
}

.intro-top {
  width: 40%;
}

.intro-top h1 {
  font-size: 104px;
  line-height: 1;
  font-family: "Cute Font", sans-serif;
  color: #cc99ff;
  text-shadow: 0 0 15px rgba(204, 153, 255, 0.6);
  animation: pulsate 2s infinite alternate;
}

@keyframes pulsate {
  from { text-shadow: 0 0 5px #cc99ff, 0 0 10px #cc99ff; }
  to { text-shadow: 0 0 15px #cc99ff, 0 0 20px #a64dff; }
}

.intro-top h2 {
  font-size: 48px;
  line-height: 1;
  font-family: "Cute Font", sans-serif;
  color: #cc99ff;
  margin-bottom: 15px;
}

.intro-top p {
  font-size: 16px;
}

.intro-bottom {
  width: 50%;
}

.intro-bottom h3 {
  font-size: 18px;
}

.intro-bottom p {
  font-size: 18px;
}

.summary-full {
  position: relative;
  padding-left: 10%;
  width: 50%;
  padding-top: 20px;
  padding-bottom: 20px;
}

.summary-full p {
  font-size: 18px;
}

.info-block1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.solana {
  width: 500px;
  height: 50px;
  margin-top: 75px;
  margin-bottom: 50px;
}

.info__links {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  width: 400px;
  margin-bottom: 150px;
}

.info__links img {
  height: 85px;
  width: 85px;
  transition: all 0.3s ease;
  filter: grayscale(30%);
}

.info__links a:hover img {
  filter: drop-shadow(0 0 8px #cc99ff) grayscale(0%);
  transform: translateY(-5px) scale(1.1);
}

.widget {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 100px;
  box-shadow: 0px 4px 30px rgba(204, 153, 255, 0.4);
  border-radius: 30px;
  background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(128, 0, 255, 0.8) 0%, rgba(204, 153, 255, 0.9) 100%);
  border: 3px solid #6600cc;
  width: 550px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.widget:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 30px rgba(204, 153, 255, 0.6);
}

.token-info {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-left: 10%;
  margin-top: 150px;
  margin-bottom: 50px;
  justify-content: start;
  align-items: flex-start;
  gap: 15px;
  font-size: 32px;
  width: 80%;
}

.token-info span {
  transition: transform 0.2s ease;
  padding: 5px 10px;
  border-radius: 5px;
}

.token-info span:hover {
  transform: translateX(5px);
  background-color: rgba(204, 153, 255, 0.1);
}

.token-info span b {
  color: #cc99ff;
  font-weight: 700;
}

.footer {
  position: relative;
}

.footer__links {
  display: flex;
  margin-left: 10%;
  margin-bottom: 50px;
  gap: 10px;
}

.footer__link img {
  height: 38px;
  width: 38px;
  transition: all 0.3s ease;
}

.footer__warning {
  margin-left: 10%;
  margin-right: 10%;
  padding-bottom: 50px;
  font-weight: bold;
  color: #788597;
}

.footer__link:hover img {
  filter: drop-shadow(0 0 5px #a64dff);
  transform: translateY(-3px) scale(1.1);
}

/* Add this new hero section styling */
.hero-section {
  display: flex;
  min-height: 100vh;
  position: relative;
  background-color: #1a0033;
  overflow: hidden;
}

.hero-image {
  width: 50%;
  position: relative;
}

.hero-image .block {
  height: 100vh;
  width: 100%;
}

.hero-content {
  width: 50%;
  padding: 8% 5% 5% 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 5;
  animation: fadeIn 1.2s ease-out;
}

.hero-content .intro-top {
  width: 100%;
  margin-bottom: 40px;
}

.hero-content .intro-bottom {
  width: 100%;
  margin-bottom: 40px;
}

.hero-cta {
  margin-top: 20px;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(90deg, #8000ff, #cc99ff);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-family: "Cute Font", sans-serif;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(102, 0, 204, 0.3);
  border: 2px solid transparent;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(102, 0, 204, 0.5);
  background: linear-gradient(90deg, #6600cc, #a64dff);
}

.cta-button:active {
  transform: translateY(1px);
}

/* Add a decorative element to connect the sections */
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to bottom, transparent, #1a0033);
  z-index: 4;
}

/* Add floating particles for a dynamic effect */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  display: block;
  background-color: rgba(204, 153, 255, 0.5);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: float 15s infinite ease-in-out;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
  }
}

/* Responsive styles for the hero section */
@media screen and (max-width: 1024px) {
  .hero-section {
    flex-direction: column;
  }
  
  .hero-image, .hero-content {
    width: 100%;
  }
  
  .hero-image .block {
    height: 50vh;
  }
  
  .hero-content {
    padding: 10% 10% 5% 10%;
  }
}

@media screen and (max-width: 650px) {
  .hero-image .block {
    height: 40vh;
  }
  
  .hero-content {
    padding: 8% 7%;
    text-align: center;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 20px;
  }
  
  .hero-content .intro-top h1 {
    font-size: 80px;
  }
  
  .hero-content .intro-top h2 {
    font-size: 40px;
  }
}

/* Additional styles for background overlay effect */
.hero-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
    width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(26, 0, 51, 0.4), transparent);
  z-index: 2;
}

/* Add a glow effect to the image */
.hero-image::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 153, 255, 0.3) 0%, transparent 70%);
  filter: blur(30px);
  z-index: 1;
  animation: glowPulse 8s infinite alternate;
}

@keyframes glowPulse {
  0% { opacity: 0.3; transform: scale(1); }
  100% { opacity: 0.7; transform: scale(1.2); }
}

/* Add feature section styling (reverse of hero layout) */
.feature-section {
  display: flex;
  min-height: 90vh;
  position: relative;
  background-color: #1a0033;
  overflow: hidden;
}

.feature-content {
  width: 50%;
  padding: 8% 5% 5% 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 5;
  animation: fadeIn 1.2s ease-out;
}

.feature-image {
  width: 50%;
  position: relative;
}

.feature-image .block {
  height: 100%;
    width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: transform 5s ease;
}

.section-title {
  text-align: left;
  margin-bottom: 40px;
  width: 100%;
}

.section-title h2 {
  font-family: "Cute Font", sans-serif;
  font-size: 60px;
  color: #cc99ff;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(204, 153, 255, 0.4);
}

.title-underline {
  height: 3px;
  width: 200px;
  background: linear-gradient(to right, #a64dff, transparent);
  margin: 0;
}

.feature-text {
  margin-bottom: 40px;
}

.feature-text p {
  font-size: 18px;
  line-height: 1.6;
}

.feature-cta {
  margin-top: 20px;
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid #cc99ff;
  color: #cc99ff;
  padding: 12px 28px;
}

.cta-button.secondary:hover {
  background: rgba(204, 153, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(102, 0, 204, 0.3);
}

/* Add a subtle shine effect to the feature image */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(204, 153, 255, 0.3) 50%, transparent 70%);
  background-size: 200% 200%;
  animation: shimmer 4s infinite linear;
  z-index: 3;
}

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

/* Responsive styles */
@media screen and (max-width: 1024px) {
  .feature-section {
    flex-direction: column-reverse;
  }
  
  .feature-content, .feature-image {
    width: 100%;
  }
  
  .feature-image .block {
    position: relative;
    height: 50vh;
  }
  
  .feature-content {
    padding: 10% 10% 5% 10%;
  }
  
  .section-title {
    text-align: center;
  }

  .title-underline {
    margin: 0 auto;
    background: linear-gradient(to right, transparent, #a64dff, transparent);
  }
}

@media screen and (max-width: 650px) {
  .feature-image .block {
    height: 40vh;
  }
  
  .feature-content {
    padding: 8% 7%;
    text-align: center;
  }
  
  .feature-text p {
    font-size: 16px;
  }
  
  .section-title h2 {
    font-size: 50px;
  }
}

/* Alternative section styling (flipped layout) */
.alt-section {
  flex-direction: row-reverse;
  background-color: #230042; /* Slightly darker purple for contrast */
}

.alt-section .title-underline {
  background: linear-gradient(to left, #a64dff, transparent);
}

.alt-section .title-underline.right-align {
  margin-left: auto;
}

.purple-overlay {
  background: linear-gradient(135deg, transparent 30%, rgba(166, 77, 255, 0.3) 50%, transparent 70%);
}

@media screen and (max-width: 1024px) {
  .alt-section {
    flex-direction: column-reverse;
  }
  
  .alt-section .title-underline {
    background: linear-gradient(to right, transparent, #a64dff, transparent);
    margin: 0 auto;
  }
}

/* Add scale effect to images on hover */
.feature-image .block {
  transition: transform 5s ease;
}

.feature-section:hover .feature-image .block {
  transform: scale(1.05);
}

/* Enhance particle effect with more particles in feature sections */
.feature-section {
  position: relative;
}

.feature-section .particles .particle {
  background-color: rgba(204, 153, 255, 0.3);
}

/* Add a smooth slide-in animation for mobile menu */
@keyframes slideIn {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@media screen and (max-width: 768px) {
  .nav-menu.active .nav-item {
    animation: slideIn 0.4s forwards;
    opacity: 0;
  }
  
  .nav-menu.active .nav-item:nth-child(1) { animation-delay: 0.1s; }
  .nav-menu.active .nav-item:nth-child(2) { animation-delay: 0.2s; }
  .nav-menu.active .nav-item:nth-child(3) { animation-delay: 0.3s; }
  .nav-menu.active .nav-item:nth-child(4) { animation-delay: 0.4s; }
}

/* Add subtle hover animation */
.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(204, 153, 255, 0.2), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

.nav-link:hover::before {
  left: 100%;
}

/* Add active state for current page */
.nav-link.active {
  color: #cc99ff;
}

.nav-link.active::after {
  width: 100%;
}

/* Loader Styles */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a0033 0%, #350066 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

.dog-cap-loader {
  position: relative;
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dog-silhouette {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: pulse 2s infinite alternate, rotate 10s infinite linear;
}

.loader-logo {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(204, 153, 255, 0.8));
}

.cap-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: capFloat 3s infinite ease-in-out;
}

.cap-text {
  font-family: "Cute Font", sans-serif;
  font-size: 60px;
  color: #cc99ff;
  text-shadow: 0 0 20px rgba(204, 153, 255, 0.8);
  animation: glowText 2s infinite alternate;
}

.loader-progress {
  width: 300px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  margin: 20px 0;
  overflow: hidden;
}

.progress-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #8000ff, #cc99ff);
  border-radius: 10px;
  transition: width 2.5s ease-out;
}

.loader-text {
  font-family: "IBM Plex Mono", monospace;
  font-size: 16px;
  color: #cc99ff;
  letter-spacing: 1px;
  margin-top: 10px;
  position: relative;
}

.loader-text::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 20px;
  background-color: #cc99ff;
  margin-left: 5px;
  animation: blink 1s infinite;
  vertical-align: middle;
}

/* Loader animations */
@keyframes pulse {
  0% { transform: scale(0.95); }
  100% { transform: scale(1.05); }
}

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

@keyframes capFloat {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes glowText {
  0% { text-shadow: 0 0 10px rgba(204, 153, 255, 0.5); }
  100% { text-shadow: 0 0 20px rgba(204, 153, 255, 1), 0 0 30px rgba(166, 77, 255, 0.8); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Particles for the loader */
.loader-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.loader-particle {
  position: absolute;
  display: block;
  background-color: rgba(204, 153, 255, 0.7);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: floatUp 4s infinite ease-in-out;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(-20vh) rotate(360deg);
    opacity: 0;
  }
}

/* Adjust body overflow when loader is active */
body.loading {
  overflow: hidden;
}

/* Hide overflow during loading to prevent scrolling */
html.loading {
  overflow: hidden;
}

/* Enhanced Tokenomics Section */
.tokenomics-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #160028 0%, #2e0054 100%);
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: "Cute Font", sans-serif;
  font-size: 70px;
  color: #cc99ff;
  text-shadow: 0 0 15px rgba(204, 153, 255, 0.6);
  margin-bottom: 15px;
}

.title-underline.centered {
  margin: 0 auto;
  width: 150px;
  height: 4px;
  background: linear-gradient(to right, transparent, #cc99ff, transparent);
}

.tokenomics-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tokenomics-visual {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tokenomics-details {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.token-circle {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.circle-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: #240042;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  box-shadow: 0 0 30px rgba(204, 153, 255, 0.4);
  border: 2px solid #8a00e6;
}

.token-logo {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 10px rgba(204, 153, 255, 0.7));
}

.token-supply {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.token-label {
    font-size: 14px;
  color: #cc99ff;
  margin-bottom: 5px;
  }

.token-value {
    font-size: 16px;
  font-weight: bold;
  color: #ffffff;
}

.token-segments-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.pie-chart {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.segment {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.segment:hover {
  transform: translateX(3px) translateY(3px);
  filter: brightness(1.2);
}

.token-allocation {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.allocation-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  background-color: rgba(204, 153, 255, 0.05);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.allocation-item:hover {
  transform: translateX(5px);
  background-color: rgba(204, 153, 255, 0.1);
}

.allocation-color {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin-right: 15px;
}

.allocation-info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  min-width: 200px;
}

.allocation-label {
  font-weight: bold;
  color: #ffffff;
}

.allocation-value {
  color: #cc99ff;
  font-weight: bold;
}

.allocation-bar {
  width: 100%;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.allocation-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1s ease-out;
}

.token-cta {
  margin-top: 40px;
  text-align: center;
}

/* Enhanced Footer Styles */
.enhanced-footer {
  background: linear-gradient(to bottom, #1a0033, #100020);
  padding: 70px 50px 30px;
  color: #F2F5F8;
  position: relative;
  overflow: hidden;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  min-width: 200px;
}

.footer-logo-img {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 0 10px rgba(204, 153, 255, 0.5));
}

.footer-title {
  font-family: "Cute Font", sans-serif;
  font-size: 30px;
  color: #cc99ff;
  text-shadow: 0 0 10px rgba(204, 153, 255, 0.4);
}

.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.footer-nav-column {
  min-width: 150px;
}

.footer-nav-column h4 {
  font-family: "Cute Font", sans-serif;
  font-size: 22px;
  color: #cc99ff;
  margin-bottom: 20px;
}

.footer-nav-column ul {
  list-style: none;
    padding: 0;
}

.footer-nav-column ul li {
  margin-bottom: 10px;
}

.footer-nav-column ul li a {
  color: #F2F5F8;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-nav-column ul li a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #cc99ff;
  transition: width 0.3s ease;
}

.footer-nav-column ul li a:hover {
  color: #cc99ff;
  transform: translateX(5px);
}

.footer-nav-column ul li a:hover::after {
    width: 100%;
}

.newsletter-signup {
  min-width: 280px;
  max-width: 350px;
}

.newsletter-signup h4 {
  font-family: "Cute Font", sans-serif;
  font-size: 22px;
  color: #cc99ff;
  margin-bottom: 15px;
}

.newsletter-signup p {
  margin-bottom: 20px;
  color: #F2F5F8;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input {
  padding: 12px 15px;
  border-radius: 25px;
  border: 1px solid #6600cc;
  background-color: rgba(204, 153, 255, 0.1);
  color: #F2F5F8;
  font-family: 'IBM Plex Mono', monospace;
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #cc99ff;
  box-shadow: 0 0 10px rgba(204, 153, 255, 0.3);
}

.subscribe-btn {
  padding: 12px 25px;
  border-radius: 25px;
  border: none;
  background: linear-gradient(90deg, #8000ff, #cc99ff);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Cute Font", sans-serif;
  font-size: 18px;
}

.subscribe-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(102, 0, 204, 0.3);
}

.footer-middle {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid rgba(204, 153, 255, 0.2);
  padding-top: 30px;
}

.copyright {
  margin-bottom: 20px;
  font-size: 14px;
  color: #788597;
}

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

/* Responsive Adjustments */
@media screen and (max-width: 1024px) {
  .tokenomics-container {
    flex-direction: column;
    align-items: center;
  }
  
  .token-circle {
    max-width: 350px;
    margin-bottom: 40px;
  }
  
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-navigation {
    justify-content: center;
  }
  
  .footer-nav-column {
    text-align: center;
  }
  
  .newsletter-signup {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .section-header h2 {
    font-size: 60px;
  }
  
  .token-circle {
    max-width: 300px;
  }
  
  .token-logo {
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width: 480px) {
  .tokenomics-section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 50px;
  }
  
  .token-circle {
    max-width: 250px;
  }
  
  .enhanced-footer {
    padding: 50px 20px 20px;
  }
}

/* Animation for the allocation bars */
@keyframes fillBar {
  from { width: 0; }
  to { width: var(--fill-percentage); }
}

/* Price Tracker Section Styles */
.price-tracker-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #230042 0%, #1a0033 100%);
  overflow: hidden;
}

.section-subtitle {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 18px;
  color: #a64dff;
  text-align: center;
  margin-top: 10px;
}

.price-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.price-card {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background: rgba(26, 0, 51, 0.6);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(204, 153, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(204, 153, 255, 0.3);
}

.price-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.price-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(204, 153, 255, 0.1);
  padding: 5px;
}

.price-icon img {
    width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 10px rgba(204, 153, 255, 0.6));
}

.price-title h3 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 5px;
}

.price-value {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 24px;
  font-weight: bold;
  color: #cc99ff;
  letter-spacing: 0.5px;
}

.price-chart-container {
    width: 100%;
  height: 200px;
  margin-bottom: 25px;
  position: relative;
}

.price-stats {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(204, 153, 255, 0.2);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.stat-label {
  font-size: 14px;
  color: #a64dff;
  margin-bottom: 5px;
}

.stat-value {
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
}

.stat-value.positive {
  color: #4caf50;
}

.stat-value.negative {
  color: #f44336;
}

.price-details {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.price-prediction {
  background: rgba(26, 0, 51, 0.6);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(204, 153, 255, 0.2);
}

.price-prediction h3 {
  font-family: "Cute Font", sans-serif;
  font-size: 28px;
  color: #cc99ff;
  margin-bottom: 15px;
}

.price-prediction p {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.5;
}

.prediction-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.prediction-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(204, 153, 255, 0.1);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.prediction-item:hover {
  transform: translateX(5px);
  background: rgba(204, 153, 255, 0.15);
}

.prediction-icon {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(26, 0, 51, 0.8);
  border-radius: 10px;
}

.prediction-svg {
  width: 24px;
  height: 24px;
}

.prediction-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.prediction-label {
  font-size: 14px;
  color: #a64dff;
  margin-bottom: 5px;
}

.prediction-value {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
}

.prediction-change {
  font-size: 14px;
  font-weight: bold;
}

.prediction-change.positive {
  color: #4caf50;
}

.prediction-change.negative {
  color: #f44336;
}

.confidence-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin-top: 5px;
  overflow: hidden;
}

.confidence-fill {
  height: 100%;
  background: linear-gradient(90deg, #8000ff, #cc99ff);
  border-radius: 3px;
  transition: width 1.5s ease-out;
}

.price-cta {
  text-align: center;
  margin-top: 20px;
}

@media screen and (max-width: 1024px) {
  .prediction-stats {
    gap: 15px;
  }
}

@media screen and (max-width: 768px) {
  .price-container {
    flex-direction: column;
    align-items: center;
  }
  
  .price-card, .price-details {
    width: 100%;
    max-width: 500px;
  }
}

@media screen and (max-width: 480px) {
  .price-stats {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  
  .stat-item {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  
  .prediction-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .prediction-icon {
    margin-bottom: 10px;
  }
}
