/* 
 * Treasury Coin Website Styles
 * A premium, clean design for a cryptocurrency website
 */

/* ===== Base Styles ===== */
@import url("https://fonts.googleapis.com/css2?family=Comic+Neue:wght@300;400;700&family=Fredoka+One&family=Nunito:wght@400;600;700&display=swap");

:root {
  /* Primary Colors - Gold theme for Treasury Logo */
  --primary-color: #5bc80c;
  --primary-light: #5bc80c;
  --primary-dark: #5bc80c;

  /* Secondary Colors */
  --secondary-color: #ffffff;
  --secondary-light: #f9fafb;
  --secondary-dark: #f3f4f6;

  /* Neutral Colors */
  --dark: #000000;
  --dark-gray: #4b5563;
  --light-gray: #9ca3af;
  --light: #f7f0e7;
  --white: #ffffff;

  /* Accent Colors */
  --accent-1: #c5c5c5;
  --accent-2: #e0e0e0;
  --accent-3: #f2f2f2;

  /* Font Sizes */
  --font-xs: 0.75rem;
  --font-sm: 0.875rem;
  --font-md: 1rem;
  --font-lg: 1.25rem;
  --font-xl: 1.5rem;
  --font-2xl: 2rem;
  --font-3xl: 2.5rem;
  --font-4xl: 3rem;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Comic Neue", "Nunito", sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Fredoka One", cursive;
  font-weight: 400; /* Fredoka One only comes in regular weight */
  line-height: 1.2;
  margin-bottom: var(--space-md);
  letter-spacing: 0.5px;
  transform: rotate(-1deg);
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-md);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-2xl);
  position: relative;
  font-size: var(--font-3xl);
  color: var(--dark);
  transform: rotate(-2deg);
  text-shadow: 2px 2px 0 rgba(233, 199, 75, 0.2);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: var(--radius-full);
  opacity: 0.8;
}

.coming-soon {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--font-sm);
  font-weight: 700;
  margin-bottom: var(--space-md);
  font-family: "Comic Neue", sans-serif;
  transform: rotate(-2deg);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

/* ===== Banner Collage ===== */
.banner-collage {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  transform: translate(-50%, -50%);
}

.banner-image {
  position: absolute;
  width: 80vw; /* Reduced from 100vw to prevent overlap */
  height: auto;
  opacity: 0.85; /* Increased for better visibility */
  left: 50%;
  transform: translateX(-50%);
  z-index: -1; /* Ensure it stays behind content */
  transition: opacity 0.5s ease;
}

.banner-top {
  top: 25%; /* Moved up to prevent overlap with bottom banner */
  transform: translateX(-50%) translateY(-50%);
}

.banner-bottom {
  top: 75%; /* Moved up slightly to prevent overlap with top banner */
  transform: translateX(-50%) translateY(-50%);
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.4) 20%,
    rgba(255, 255, 255, 0.2) 40%,
    rgba(255, 255, 255, 0.2) 60%,
    rgba(255, 255, 255, 0.4) 80%,
    rgba(255, 255, 255, 0.6) 100%
  );
  z-index: -1; /* Ensure it stays behind content */
}

/* ===== Header Styles ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

header .container {
  padding: var(--space-md) var(--space-lg);
}

/* New header grid layout */
.header-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  padding: var(--space-sm) var(--space-2xl);
  overflow: visible;
}

/* Left navigation styles */
.nav-left {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding-right: 220px;
}

.nav-left ul {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  padding: 0;
  margin: 0;
  flex-wrap: nowrap;
}

.nav-left ul li {
  margin: 0;
}

/* New navigation button style */
.nav-button {
  color: var(--dark);
  font-weight: 700;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  position: relative;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  font-family: "Comic Neue", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0;
  white-space: nowrap;
  background-color: rgba(233, 199, 75, 0.05);
  border: 1px solid rgba(233, 199, 75, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-button::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: var(--space-md);
  right: var(--space-md);
  height: 3px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
  border-radius: var(--radius-full);
}

.nav-button:hover {
  background-color: rgba(233, 199, 75, 0.15);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nav-button:hover::after {
  transform: scaleX(1);
}

/* Centered logo styles */
.logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s ease;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0 var(--space-2xl);
}

.logo-link:hover {
  transform: translateX(-50%) scale(1.05);
}

.logo-link:hover .logo-center h1 {
  color: var(--primary-dark);
}

.logo-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo-img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  filter: drop-shadow(0 2px 4px rgba(233, 199, 75, 0.3));
}

.logo-center h1 {
  font-size: var(--font-xl);
  margin: 0;
  color: var(--primary-color);
  font-weight: 400;
  transform: rotate(-2deg);
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Social links styles */
.social-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex: 1;
  justify-content: flex-start;
  padding-left: 220px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.twitter-link,
.community-link {
  background: var(--primary-color);
}

.whitepaper-link {
  background: transparent;
  color: var(--dark) !important;
}

.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(233, 199, 75, 0.3);
}

.twitter-link:hover,
.community-link:hover {
  background: var(--primary-dark);
}

.whitepaper-link:hover {
  background: rgba(233, 199, 75, 0.1);
}

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

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

/* ===== Hero Section ===== */
.hero {
  padding-top: 120px;
  padding-bottom: var(--space-3xl);
  background-color: rgba(255, 255, 255, 0.5); /* More transparent background */
  background-size: cover;
  background-position: center;
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Hero background is now handled by the banner-collage */

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

.coin-logo {
  margin-bottom: var(--space-xl);
}

.logo-placeholder {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.logo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.hero-title {
  font-size: var(--font-4xl);
  margin-bottom: var(--space-md);
  color: var(--primary-color);
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
  transform: rotate(-2deg);
  letter-spacing: 1.5px;
}

/* Cartoonish hero title styling */
.hero-title-cartoonish {
  font-size: calc(var(--font-4xl) * 1.2);
  position: relative;
  display: inline-block;
  color: var(--primary-color);
  text-transform: uppercase;
  transform: rotate(-2deg);
  letter-spacing: 2px;
  margin-bottom: var(--space-lg);
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.subtitle {
  font-size: var(--font-xl);
  color: var(--dark-gray);
  margin-bottom: var(--space-2xl);
  font-family: "Comic Neue", sans-serif;
  font-weight: 900;
  transform: rotate(-1deg);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

/* Contract Address Button */
.contract-button-container {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-2xl);
}

.btn-ca {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-lg) var(--space-2xl);
  background-color: var(--accent-2);
  color: var(--dark-gray);
  border: 2px dashed var(--primary-color);
  border-radius: var(--radius-full);
  font-family: "Comic Neue", sans-serif;
  font-weight: 700;
  font-size: var(--font-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 0 rgba(233, 199, 75, 0.3);
  transform: rotate(-1deg);
  position: relative;
}

.btn-ca:hover {
  background-color: var(--accent-2);
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 7px 0 rgba(233, 199, 75, 0.3);
}

.btn-ca:active {
  transform: translateY(2px) rotate(-1deg);
  box-shadow: 0 2px 0 rgba(233, 199, 75, 0.3);
}

/* Style for the button after copying */
.btn-ca.copied {
  background: linear-gradient(
    135deg,
    var(--primary-light),
    var(--primary-color)
  );
  color: var(--white);
  border: none;
  transform: rotate(0deg);
  box-shadow: 0 4px 8px rgba(233, 199, 75, 0.3);
  overflow: hidden;
}

.btn-ca.copied::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shine 1.5s ease;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.btn-ca.copied:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(233, 199, 75, 0.4);
}

.btn-ca.copied:active {
  transform: translateY(1px);
  box-shadow: 0 2px 4px rgba(233, 199, 75, 0.3);
}

/* Coming Soon Button Style */
.coming-soon-btn {
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
  border: 2px solid var(--primary-light);
  color: var(--dark-gray);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.coming-soon-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shine 2s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.coming-soon-btn:hover {
  background: linear-gradient(135deg, var(--accent-3), var(--accent-2));
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.1);
}

.coming-soon-btn:active {
  transform: translateY(2px) rotate(-1deg);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
}

.btn-ca i {
  font-size: var(--font-md);
}

#contract-address-text {
  display: inline-block;
  max-width: 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}

.copy-tooltip {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: white;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-md);
  font-size: var(--font-sm);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 100;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.copy-tooltip.show {
  opacity: 1;
  visibility: visible;
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-family: "Comic Neue", sans-serif;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  transform: rotate(-2deg);
  letter-spacing: 0.8px;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 5px 0 var(--primary-dark);
  position: relative;
  top: 0;
}

.btn-primary:hover {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 8px 0 var(--primary-dark);
  color: var(--white);
}

.btn-primary:active {
  transform: translateY(2px) rotate(-1deg);
  box-shadow: 0 3px 0 var(--primary-dark);
  top: 2px;
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 3px solid var(--primary-color);
  box-shadow: 0 4px 0 rgba(233, 199, 75, 0.3);
  position: relative;
  top: 0;
}

.btn-secondary:hover {
  background-color: rgba(233, 199, 75, 0.1);
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 7px 0 rgba(233, 199, 75, 0.3);
}

.btn-secondary:active {
  transform: translateY(2px) rotate(-1deg);
  box-shadow: 0 2px 0 rgba(233, 199, 75, 0.3);
  top: 2px;
}

.btn-vote {
  background: #dc2626;
  color: var(--white);
  border: none;
  box-shadow: 0 5px 0 #b91c1c;
  position: relative;
  top: 0;
}

.btn-vote:hover {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 8px 0 #b91c1c;
  color: var(--white);
}

.btn-vote:active {
  transform: translateY(2px) rotate(-1deg);
  box-shadow: 0 3px 0 #b91c1c;
  top: 2px;
}

/* ===== About Section ===== */
.about {
  padding: var(--space-3xl) 0;
  background-color: rgba(255, 255, 255, 0.6); /* More transparent background */
  position: relative;
  overflow: hidden;
}

.about-content {
  position: relative;
  z-index: 1;
}

.about-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2xl);
}

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

.about-text p {
  margin-bottom: var(--space-lg);
  font-size: calc(var(--font-xl) * 1.1); /* Perbesar font */
  color: var(--dark-gray);
  font-weight: 900; /* Tebalkan font */
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.key-fact {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  margin: var(--space-md);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.1);
  transform: rotate(-2deg);
  text-align: center;
  font-size: calc(var(--font-lg) * 1.1); /* Perbesar font */
  font-weight: 900; /* Tebalkan font */
}

.big-number {
  display: block;
  font-family: "Fredoka One", cursive;
  font-size: 4.5rem; /* Perbesar font */
  line-height: 1;
  margin-bottom: var(--space-xs);
  color: var(--white);
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
  font-weight: 900; /* Tebalkan font */
}

.fact-text {
  display: block;
  font-family: "Comic Neue", sans-serif;
  font-size: calc(var(--font-xl) * 1.1); /* Perbesar font */
  font-weight: 900; /* Tebalkan font */
  text-transform: uppercase;
}

.about-text h3 {
  color: var(--primary-color);
  margin-top: var(--space-xl);
  font-size: calc(var(--font-2xl) * 1.1); /* Perbesar font */
  transform: rotate(-1deg);
  display: inline-block;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
  font-weight: 900; /* Tebalkan font */
}

.about-text strong {
  color: var(--primary-dark);
  font-weight: 900; /* Tebalkan font */
}

.highlight {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: calc(var(--font-lg) * 1.1); /* Perbesar font */
  font-weight: 900; /* Tebalkan font */
  margin-bottom: var(--space-md);
  transform: rotate(-1deg);
  font-family: "Comic Neue", sans-serif;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
}

/* Premium Certificate Style for the key message */
.premium-certificate {
  display: inline-block;
  background: linear-gradient(to bottom, #f9f6e9, #f0e9c9);
  color: #333;
  padding: var(--space-xl) var(--space-2xl);
  font-size: var(--font-md);
  font-weight: 800;
  margin: var(--space-xl) auto;
  font-family: "Comic Neue", serif;
  position: relative;
  max-width: 90%;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.6;

  /* Ornate border with decorative corners */
  border: 2px solid #5bc80c;
  border-radius: 8px;

  /* Premium certificate effect with multiple shadows */
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.8), 0 0 0 5px #5bc80c,
    0 10px 20px rgba(0, 0, 0, 0.15);

  /* 3D effect with slight rotation */
  transform: perspective(1000px) rotateX(2deg);
  transform-origin: center;

  /* Subtle animation */
  animation: certificate-shimmer 3s ease-in-out infinite;
}

/* Decorative corners */
.premium-certificate::before,
.premium-certificate::after,
.premium-certificate > span::before,
.premium-certificate > span::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c9a73b'%3E%3Cpath d='M12 0L14.59 8.41L23 12L14.59 15.59L12 24L9.41 15.59L1 12L9.41 8.41z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

.premium-certificate::before {
  top: -10px;
  left: -10px;
  transform: rotate(-15deg);
}

.premium-certificate::after {
  top: -10px;
  right: -10px;
  transform: rotate(15deg);
}

.premium-certificate > span::before {
  bottom: -10px;
  left: -10px;
  transform: rotate(-45deg);
}

.premium-certificate > span::after {
  bottom: -10px;
  right: -10px;
  transform: rotate(45deg);
}

/* Wax seal effect */
.premium-certificate .seal {
  position: absolute;
  bottom: -25px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, #5bc80c, #5bc80c);
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  transform: rotate(15deg);
  z-index: 2;
}

/* Shimmer animation */
@keyframes certificate-shimmer {
  0% {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.8), 0 0 0 5px #e9c74b,
      0 10px 20px rgba(0, 0, 0, 0.15);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.8), 0 0 0 5px #f9d76b,
      0 10px 25px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.8), 0 0 0 5px #e9c74b,
      0 10px 20px rgba(0, 0, 0, 0.15);
  }
}

/* Hover effect */
.premium-certificate:hover {
  transform: perspective(1000px) rotateX(4deg) translateY(-5px);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.8), 0 0 0 5px #f9d76b,
    0 15px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

/* ===== Banner Showcase Section ===== */
.banner-showcase {
  padding: var(--space-3xl) 0;
  background-color: var(--secondary-light);
  position: relative;
  overflow: hidden;
}

.section-subtitle {
  text-align: center;
  margin-bottom: var(--space-xl);
  font-size: var(--font-lg);
  color: var(--dark-gray);
}

.banner-showcase-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  max-width: 1000px;
  margin: 0 auto;
}

.banner-item {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(233, 199, 75, 0.15);
}

.showcase-banner {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  border: 1px solid var(--light-gray);
}

.banner-caption {
  font-size: var(--font-md);
  color: var(--dark-gray);
  font-weight: 700;
  margin-top: var(--space-sm);
}

/* ===== Tokenomics Section ===== */
.tokenomics {
  padding: var(--space-3xl) 0;
  background-color: rgba(255, 255, 255, 0.5); /* More transparent background */
  position: relative;
  overflow: hidden;
}

/* ===== Locked Supply Section ===== */
.locked-supply {
  padding: var(--space-3xl) 0;
  background-color: rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
}

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

.locked-supply-card {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px dashed var(--primary-color);
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.locked-supply-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(233, 199, 75, 0.2);
}

.locked-supply-header {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
  width: 100%;
  justify-content: center;
}

.locked-supply-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(233, 199, 75, 0.3);
  flex-shrink: 0;
}

.locked-supply-title {
  text-align: left;
}

.locked-supply-title h3 {
  font-size: var(--font-lg);
  color: var(--dark);
  margin-bottom: var(--space-xs);
  transform: rotate(0);
}

.locked-supply-title p {
  font-size: var(--font-md);
  color: var(--dark-gray);
  font-style: italic;
}

.locked-supply-icon i {
  font-size: calc(var(--font-2xl) * 1.5);
  color: var(--white);
}

.locked-supply-value-container {
  margin: var(--space-lg) 0;
}

.locked-supply-label {
  font-size: var(--font-lg);
  color: var(--dark-gray);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.locked-supply-amount {
  font-size: var(--font-3xl);
  color: var(--primary-dark);
  font-weight: 700;
  font-family: "Fredoka One", cursive;
  margin: var(--space-md) 0 var(--space-xs) 0;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.05);
}

.locked-supply-highlight {
  font-size: var(--font-md);
  color: #2a9d8f;
  font-weight: 700;
  font-style: italic;
  margin-bottom: var(--space-md);
  background-color: rgba(42, 157, 143, 0.1);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-md);
  display: inline-block;
  transform: rotate(-1deg);
}

.locked-supply-benefits {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  width: 100%;
  margin: var(--space-sm) 0;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  background-color: rgba(233, 199, 75, 0.08);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  min-width: 100px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.benefit-item:hover {
  transform: translateY(-3px);
  background-color: rgba(233, 199, 75, 0.15);
}

.benefit-item i {
  color: var(--primary-color);
  font-size: var(--font-xl);
  margin-bottom: var(--space-xs);
}

.benefit-item span {
  font-size: var(--font-sm);
  font-weight: 700;
  color: var(--dark);
  text-align: center;
}

.locked-supply-description {
  font-size: var(--font-md);
  color: var(--dark-gray);
  margin: var(--space-sm) 0;
  padding: var(--space-sm) var(--space-lg);
  background-color: rgba(233, 199, 75, 0.1);
  border-radius: var(--radius-md);
  font-weight: 500;
  display: inline-block;
}

.locked-supply-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.locked-supply-note {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px dashed var(--primary-color);
  border-radius: var(--radius-md);
  margin: var(--space-md) 0;
  width: 90%;
  max-width: 500px;
  box-sizing: border-box;
}

.locked-supply-note i {
  color: var(--primary-color);
  font-size: var(--font-lg);
  flex-shrink: 0;
}

.locked-supply-note p {
  font-size: var(--font-sm);
  color: var(--dark-gray);
  margin: 0;
  line-height: 1.4;
}

.view-details {
  margin-top: var(--space-md);
  padding: var(--space-md) var(--space-xl);
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: white;
  border-radius: var(--radius-full);
  font-size: var(--font-md);
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(233, 199, 75, 0.3);
  position: relative;
  overflow: hidden;
}

.view-details::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.7s ease;
}

.locked-supply-card:hover .view-details {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(233, 199, 75, 0.4);
}

.locked-supply-card:hover .view-details::before {
  left: 100%;
}

/* Tokenomics background is now handled by the banner-collage */

/* ===== Twitter Community Section ===== */
.community {
  padding: var(--space-3xl) 0;
  background-color: rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
}

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

.community-card {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: 0 8px 25px rgba(29, 161, 242, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px dashed #1da1f2;
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.community-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(29, 161, 242, 0.25);
}

.community-icon {
  width: 100px;
  height: 100px;
  background: #1da1f2;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  box-shadow: 0 5px 15px rgba(29, 161, 242, 0.3);
}

.community-icon i {
  font-size: calc(var(--font-2xl) * 1.5);
  color: var(--white);
}

.community-heading {
  font-size: var(--font-xl);
  color: var(--dark);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.community-description {
  font-size: var(--font-md);
  color: var(--dark-gray);
  max-width: 80%;
  margin: 0 auto var(--space-xl);
  line-height: 1.6;
}

.community-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(29, 161, 242, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  min-width: 100px;
}

.stat-number {
  font-size: var(--font-2xl);
  font-weight: 700;
  color: #1da1f2;
  font-family: "Fredoka One", cursive;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: var(--font-sm);
  color: var(--dark-gray);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.community-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #1da1f2;
  color: white;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-full);
  font-size: var(--font-md);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(29, 161, 242, 0.3);
  margin-top: var(--space-md);
}

.community-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(29, 161, 242, 0.4);
  background-color: #0c85d0;
}

.community-button i {
  font-size: var(--font-lg);
}

.tokenomics-content {
  position: relative;
  z-index: 1;
}

.tokenomics-content {
  max-width: 1000px;
  margin: 0 auto;
}

.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
}

.tokenomics-item {
  background-color: rgba(255, 255, 255, 0.8); /* More transparent background */
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
  transform: rotate(-1deg);
  border: 2px dashed var(--primary-light);
  backdrop-filter: blur(5px); /* Add blur effect for better readability */
}

.tokenomics-item:hover {
  transform: translateY(-5px) rotate(-1deg);
  box-shadow: 0 10px 25px rgba(233, 199, 75, 0.15);
}

.tokenomics-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.tokenomics-icon i {
  font-size: var(--font-2xl);
  color: var(--white);
}

.tokenomics-item h3 {
  margin-bottom: var(--space-md);
  font-size: var(--font-lg);
}

/* ===== Footer ===== */
footer {
  padding: var(--space-2xl) 0 var(--space-lg);
  background-color: var(--dark);
  color: var(--light);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-logo h2 {
  font-size: var(--font-2xl);
  margin-bottom: var(--space-sm);
  color: var(--primary-color);
}

.footer-logo p {
  color: var(--light-gray);
}

.footer-links h3,
.footer-social h3 {
  font-size: var(--font-lg);
  margin-bottom: var(--space-lg);
  color: var(--white);
}

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

.footer-links ul li {
  margin-bottom: var(--space-sm);
}

.footer-links ul li a {
  color: var(--light-gray);
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--primary-light);
}

.footer-social .social-icons {
  display: flex;
  gap: var(--space-md);
}

.footer-social .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: background 0.3s ease, transform 0.3s ease;
}

.footer-social .social-icons a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--light-gray);
  margin-bottom: var(--space-sm);
}

.contract-address {
  color: var(--primary-light);
  font-family: monospace;
}

/* ===== Animations ===== */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* ===== Modal Styles ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: block;
  opacity: 1;
}

.modal-content {
  background-color: var(--white);
  margin: 5% auto;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 800px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  transform: translateY(-30px);
  transition: transform 0.3s ease;
}

.modal.show .modal-content {
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-size: var(--font-2xl);
  color: var(--dark-gray);
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: var(--primary-color);
}

.modal h2 {
  color: var(--primary-color);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.whitepaper-text p {
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.whitepaper-text strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* ===== Responsive Styles ===== */
@media (max-width: 768px) {
  .header-grid {
    flex-wrap: wrap;
    justify-content: center;
    padding: var(--space-md);
  }

  .logo-link {
    position: relative;
    left: auto;
    transform: none;
    order: 1;
    margin: var(--space-md) 0;
  }

  .logo-link:hover {
    transform: scale(1.05);
  }

  .nav-left {
    display: none;
    padding-right: 0;
  }

  .social-links {
    flex: 0 0 100%;
    justify-content: center;
    padding-left: 0;
    order: 3;
  }

  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    order: 2;
  }

  .hero-title {
    font-size: var(--font-4xl);
    margin-bottom: var(--space-md);
    color: var(--primary-color);
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    letter-spacing: 1.5px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: var(--space-md);
  }

  .btn {
    width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social .social-icons {
    justify-content: center;
  }

  /* Add mobile styles for contract address */
  #contract-address-text {
    display: inline-block;
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
  }

  /* Responsive locked supply card */
  .locked-supply-benefits {
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: var(--font-2xl);
  }

  .logo-placeholder {
    width: 150px;
    height: 150px;
  }

  .logo-placeholder i {
    font-size: 60px;
  }

  .tokenomics-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .key-fact {
    display: block;
    margin: var(--space-lg) auto;
    max-width: 200px;
  }

  #contract-address-text {
    display: inline-block;
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
  }

  /* Responsive locked supply card */
  .locked-supply-benefits {
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .benefit-item {
    flex: 1 0 70px;
    min-width: 70px;
  }

  .locked-supply-header {
    flex-direction: column;
    text-align: center;
  }

  .locked-supply-title {
    text-align: center;
  }

  .locked-supply-note {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
    width: 100%;
  }
}
