* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0f172a;
  --bg-secondary: #020617;
  --heading-gold: #d4af37;
  --text-primary: #c7ccd1;
  --text-secondary: #94a3b8;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(212, 175, 55, 0.15);
  --glow-gold: rgba(212, 175, 55, 0.4);
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Particle Canvas */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

/* Floating Crypto Elements */
.floating-crypto {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.1;
}

.crypto-coin {
  position: absolute;
  font-size: 4rem;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* Sidebar */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 280px;
  height: 100vh;
  background: linear-gradient(
    180deg,
    rgba(2, 6, 23, 0.98) 0%,
    rgba(15, 23, 42, 0.95) 100%
  );
  backdrop-filter: blur(30px);
  border-right: 1px solid var(--glass-border);
  padding: 2.5rem 1.5rem;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logo-section {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--glass-border);
}

.logo {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--heading-gold), #f1c40f);
  border-radius: 20px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 0 40px var(--glow-gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.sidebar h3 {
  color: var(--heading-gold);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.nav-link {
  display: flex;
  align-items: center;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.75rem 1rem;
  margin: 0.5rem 0;
  border-radius: 16px;
  font-weight: 500;
  transition: all 0.4s ease;
  position: relative;
  font-size: 1rem;
  overflow: hidden;
}

.nav-link i {
  margin-right: 16px;
  width: 24px;
  text-align: center;
  transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--heading-gold);
  background: linear-gradient(135deg, var(--glass-bg), rgba(212, 175, 55, 0.1));
  transform: translateX(12px);
  box-shadow: 0 12px 40px var(--glow-gold);
}

.nav-link:hover i {
  transform: scale(1.2);
}

/* Main Content */
.main {
  margin-left: 280px;
  padding: 0;
  min-height: 100vh;
}

/* Hero Section with Background */
.hero {
  height: 80vh;
  background: var(--bg-primary);
  /* radial-gradient(
      circle at 30% 20%,
      rgba(212, 175, 55, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%); */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23d4af37" stop-opacity="0.1"/><stop offset="100%" stop-color="%23d4af37" stop-opacity="0"/></radialGradient></defs><circle cx="20" cy="20" r="3" fill="url(%23a)"><animate attributeName="r" values="3;5;3" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="80" r="2" fill="url(%23a)"><animate attributeName="r" values="2;4;2" dur="4s" repeatCount="indefinite"/></circle></svg>')
    no-repeat center/cover;
  animation: heroFloat 20s infinite linear;
  z-index: -1;
}

@keyframes heroFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(-20px) rotate(360deg);
  }
}

.hero-content {
  max-width: 900px;
  padding: 0 2rem;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(4rem, 10vw, 7rem);
  background: linear-gradient(
    135deg,
    var(--heading-gold),
    #f1c40f,
    var(--heading-gold)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 2rem;
  animation: titleGlow 3s ease-in-out infinite alternate;
  text-shadow: 0 0 60px var(--glow-gold);
}

@keyframes titleGlow {
  from {
    filter: drop-shadow(0 0 30px var(--glow-gold));
  }

  to {
    filter: drop-shadow(0 0 60px var(--glow-gold));
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-primary);
  font-weight: 300;
  margin-bottom: 3rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 1.2rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--heading-gold), #f1c40f);
  color: var(--bg-primary);
  box-shadow: 0 12px 40px var(--glow-gold);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px var(--glow-gold);
}

.btn-secondary {
  background: transparent;
  color: var(--heading-gold);
  border: 2px solid var(--glass-border);
  backdrop-filter: blur(20px);
}

.btn-secondary:hover {
  border-color: var(--heading-gold);
  background: var(--glass-bg);
  transform: translateY(-4px);
}

/* Sections */
.section {
  padding: 120px 4rem;
  max-width: 1600px;
  margin: 0 auto;
}

.section:nth-child(even) {
  background: linear-gradient(180deg, transparent 0%, rgba(2, 6, 23, 0.5) 100%);
}

h2 {
  color: var(--heading-gold);
  font-size: clamp(2.8rem, 6vw, 3rem);
  font-weight: 800;
  margin-bottom: 4rem;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, var(--heading-gold), #f1c40f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 20px;
  line-height: 1.25;
}

h2::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--heading-gold),
    transparent
  );
  border-radius: 2px;
}

.vesting-component {
  background: #0f172a;
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 35px;
  border: 1px solid #d4af3747;
  margin: 40px 0;
}

.vesting-title {
  font-size: 1.8em;
  color: #d4af37;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.vesting-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.vesting-item {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  padding: 25px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.vesting-item:hover {
  border-left-color: #d4af37;
  transform: translateX(3px);
  /* box-shadow: 0 10px 30px rgba(255,107,157,0.2); */
}

.vesting-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.vesting-header i {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #d4af37, #0f172a);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9em;
  color: white;
}

.vesting-header span {
  font-weight: 700;
  color: #feca57;
  font-size: 1.1em;
}

.vesting-details {
  list-style: none;
  padding: 0;
}

.vesting-details li {
  /* padding: 8px 0; */
  font-size: 1.05em !important;
  color: #c7ccd1;
}

.cliff {
  color: #d4af37;
}
/* .linear { color: #4ecdc4; } */
.controlled {
  color: #c7ccd1;
  /* font-style: italic;  */
  /* background: rgba(165,94,234,0.1); */
  /* padding: 8px 12px; */
  border-radius: 6px;
  /* border-left: 3px solid #a55eea; */
}

/* Mobile */
@media (max-width: 768px) {
  .vesting-list {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .vesting-component {
    padding: 25px 20px;
    margin: 30px 0;
  }
}

.security li ul li {
  padding: 10px 32px;
  border-radius: 6px;
}

.security li .gold.core-values ul li::before {
  top: 20%;
  left: 3%;
}

/* Overview Section Styles */
.overview-hero {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: center;
}

.overview-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.overview-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--heading-gold), #f1c40f);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  color: var(--bg-primary);
  box-shadow: 0 20px 40px var(--glow-gold);
}

.overview-content h3 {
  color: var(--heading-gold);
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 1.8rem;
  line-height: 1.2;
}

.overview-content p {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 10px;
  /* opacity: 0.95; */
}

.overview-stats {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.06),
    rgba(244, 196, 15, 0.04)
  );
  backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.8rem 2rem;
  text-align: center;
}

.overview-stats:hover,
.card:hover {
  border-color: #d4af3747 !important;
  box-shadow: none !important;
  background-color: #0f172a;
}

.domain-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--heading-gold) !important;
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
  padding: 1.1rem 2.2rem;
  border: 2px solid var(--glass-border);
  border-radius: 16px;
  margin-bottom: 2.2rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: transparent;
}

.domain-link:hover {
  border-color: var(--heading-gold);
  background: rgba(212, 175, 55, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px var(--glow-gold);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.8rem;
  margin-bottom: 2.2rem;
}

.stat-item {
  text-align: left;
}

.stat-value {
  color: var(--heading-gold);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.88rem;
  opacity: 0.85;
  font-weight: 500;
}

.wallet-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 12px;
  margin-bottom: 0.8rem;
  transition: all 0.3s ease;
}

.wallet-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.wallet-item.active-wallet {
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.wallet-label {
  font-weight: 600;
  color: #c7ccd1;
  min-width: 180px;
  font-size: 0.95rem;
}

.wallet-address.coming-soon {
  color: #64748b;
  font-style: italic;
  cursor: not-allowed;
}

.wallet-address {
  flex: 1;
  font-family: monospace;
  font-size: 0.88rem;
  background: rgba(0, 0, 0, 0.5);
  color: #c7ccd1;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.wallet-address:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: #d4af37;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.copy-btn {
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 6px;
  padding: 0.6rem;
  color: #d4af37;
  cursor: pointer;
  font-size: 1rem;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  background: rgba(212, 175, 55, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .wallet-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .wallet-label {
    min-width: auto;
    font-size: 0.9rem;
  }
}

.contract-container {
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

.contract-address {
  /* font-family: "Courier New", monospace; */
  /* font-size: 0.92rem; */
  /* word-break: break-all; */
  /* background: rgba(0, 0, 0, 0.4); */
  /* padding: 1.2rem; */
  border-radius: 14px;
  margin-bottom: 0.8rem;
  letter-spacing: -0.5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

/* .contract-address:hover {
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 20px var(--glow-gold);
  transform: scale(1.02);
} */

.contract-label {
  font-size: 0.85rem;
  opacity: 0.8;
  font-weight: 500;
  text-align: center;
}

.overview-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.2rem;
}

.feature-card h4 {
  font-size: 1.45rem;
  margin-bottom: 1.2rem;
}

/* Responsive */
@media (max-width: 1000px) {
  .overview-hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .overview-content {
    align-items: center;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.2rem;
  }
}

@media (max-width: 768px) {
  .overview-stats {
    padding: 2rem 1.5rem;
  }

  .domain-link {
    padding: 1rem 1.8rem;
    font-size: 1rem;
  }
}

/* Enhanced Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
}

.roadmap-section::before {
  background: transparent !important;
}

/* Premium Cards */
.card {
  background: linear-gradient(
    145deg,
    var(--glass-bg),
    rgba(255, 255, 255, 0.01)
  );
  backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  border-radius: 28px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--heading-gold),
    transparent
  );
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--heading-gold), #f1c40f);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--bg-primary);
  box-shadow: none;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-20px) rotateX(5deg) rotateY(5deg);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.4),
    0 0 60px var(--glow-gold);
  border-color: var(--heading-gold);
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(360deg);
}

.card h3,
.card h4 {
  color: var(--heading-gold);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

/* Tokenomics Cards */

/* Tokenomics Table Styles */
.tokenomics-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.tokenomics-intro p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  /* opacity: 0.95; */
}

.total-supply {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.12),
    rgba(244, 196, 15, 0.08)
  );
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 1.5rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.total-supply i {
  color: var(--heading-gold);
  font-size: 1.4rem;
}

.tokenomics-table-container {
  overflow-x: auto;
  margin: 3rem 0;
  border-radius: 24px;
  box-shadow: 0 25px 75px rgba(0, 0, 0, 0.4);
}

.tokenomics-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: linear-gradient(
    145deg,
    var(--glass-bg),
    rgba(255, 255, 255, 0.02)
  );
  backdrop-filter: blur(30px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  font-size: 0.95rem;
}

.tokenomics-table th {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.15),
    rgba(244, 196, 15, 0.1)
  );
  color: var(--heading-gold);
  font-weight: 700;
  padding: 1.5rem 1.5rem;
  text-align: left;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--glass-border);
}

.tokenomics-table td {
  padding: 1.8rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  vertical-align: top;
}

/* .tokenomics-table tbody tr:hover {
    background: rgba(212,175,55,0.08);
    transform: scale(1.01);
    box-shadow: 0 10px 30px var(--glow-gold);
} */

.tokenomics-table tbody tr:last-child td {
  border-bottom: none;
}

.category {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.category-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--bg-primary);
  flex-shrink: 0;
}

.category.liquidity .category-icon {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
}
.category.development .category-icon {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}
.category.ecosystem .category-icon {
  background: linear-gradient(135deg, #51cf66, #40c057);
}
.category.marketing .category-icon {
  background: linear-gradient(135deg, #ffd43b, #fab005);
}
.category.reserve .category-icon {
  background: linear-gradient(135deg, #c44569, #b33c71);
}
.category.staking .category-icon {
  background: linear-gradient(135deg, #a55eea, #8b5cf6);
}

.percentage {
  color: var(--heading-gold);
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  min-width: 80px;
}

.tokens {
  color: var(--heading-gold);
  /* font-family: "Courier New", monospace; */
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  min-width: 120px;
}

.tokenomics-table td:last-child {
  font-size: 0.92rem;
  line-height: 1.6;
  opacity: 0.9;
}

.tokenomics-footer {
  text-align: center;
  max-width: 700px;
  margin: 4rem auto 0;
  padding: 2.5rem;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.06),
    rgba(244, 196, 15, 0.04)
  );
  border-radius: 20px;
  border: 1px solid var(--glass-border);
}

.tokenomics-footer p {
  font-size: 1rem;
  font-weight: 500;
}

/* Responsive Table */
@media (max-width: 1100px) {
  .tokenomics-table {
    font-size: 0.9rem;
  }

  .tokenomics-table th,
  .tokenomics-table td {
    padding: 1.2rem 1rem;
  }
}

@media (max-width: 768px) {
  .tokenomics-table-container {
    margin: 2rem -1rem;
    border-radius: 0;
  }

  .tokenomics-table {
    font-size: 0.85rem;
    border-radius: 0;
  }

  .tokenomics-table th,
  .tokenomics-table td {
    padding: 1rem 0.8rem;
  }

  .category {
    font-size: 0.9rem;
  }
}

.token-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.token {
  padding: 3rem 2rem;
  border: 2px solid var(--glass-border);
  border-radius: 24px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  background: linear-gradient(
    145deg,
    var(--glass-bg),
    rgba(255, 255, 255, 0.02)
  );
  backdrop-filter: blur(20px);
}

.token::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    var(--heading-gold),
    #f1c40f,
    var(--heading-gold)
  );
  border-radius: 24px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.token:hover {
  border-color: transparent;
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 30px 60px var(--glow-gold);
}

.token:hover::before {
  opacity: 1;
}

.token-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.token span {
  display: block;
  margin-top: 1rem;
  color: var(--heading-gold);
  font-size: 2.5rem;
  font-weight: 800;
}

/* Epic Roadmap Timeline */
.roadmap-section {
  background: linear-gradient(
    180deg,
    rgba(2, 6, 23, 0.8) 0%,
    rgba(15, 23, 42, 0.6) 50%,
    transparent 100%
  );
  border-radius: 32px;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.roadmap-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--heading-gold) 20%,
    rgba(212, 175, 55, 0.3) 50%,
    var(--heading-gold) 80%,
    transparent 100%
  );
  transform: translateX(-50%);
  border-radius: 2px;
  z-index: 1;
}

.roadmap-timeline {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.roadmap-phase {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 6rem;
  opacity: 0.9;
  transition: all 0.6s ease;
  position: relative;
}

.roadmap-phase:hover {
  opacity: 1;
  transform: translateX(20px);
}

.roadmap-phase:nth-child(even) {
  flex-direction: row-reverse;
  text-align: right;
}

.roadmap-phase:nth-child(even) .phase-content {
  margin-left: auto;
}

.phase-marker {
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}

.phase-dot {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--heading-gold), #f1c40f);
  border-radius: 50%;
  position: relative;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 25px var(--glow-gold);
  animation: phasePulse 2s ease-in-out infinite;
}

.phase-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--bg-primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

@keyframes phasePulse {
  0%,
  100% {
    box-shadow: 0 0 25px var(--glow-gold);
  }
  50% {
    box-shadow:
      0 0 40px var(--glow-gold),
      0 0 60px rgba(212, 175, 55, 0.4);
  }
}

.phase-year {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: var(--heading-gold);
  font-weight: 700;
  font-size: 1.1rem;
  transform: rotate(180deg);
  letter-spacing: 1px;
  white-space: nowrap;
}

.phase-content {
  flex: 1;
  max-width: 600px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.025),
    rgba(255, 255, 255, 0.01)
  );
  backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  z-index: 9;
}
.phase-content:hover {
  border-color: #d4af3747;
  box-shadow: none;
  background-color: #0f172a;
}
.phase-content h3 {
  color: var(--heading-gold);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  position: relative;
  text-align: left;
}

.phase-content h3::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--heading-gold), transparent);
  border-radius: 2px;
}

.phase-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.phase-content li {
  /* padding: 1rem 0 ; */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 15px;
  transition: all 0.3s ease;
  padding-bottom: 4px;
}

.phase-content li:last-child {
  border-bottom: none;
}

.phase-content li:hover {
  padding-right: 1rem;
  color: var(--text-primary);
}

.phase-content li i {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.phase-content li strong {
  color: var(--heading-gold);
}

/* Phase Status */
.roadmap-phase.active .phase-dot {
  animation: phaseActive 1.5s ease-in-out infinite;
}

@keyframes phaseActive {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .roadmap-phase {
    flex-direction: column !important;
    text-align: center !important;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .phase-marker {
    align-self: center;
  }

  .phase-year {
    writing-mode: horizontal-tb;
    transform: none;
    margin-bottom: 1rem;
  }

  .phase-content {
    max-width: 100%;
  }
}

/* SIMPLE CLEAN MANIFESTO */
.manifesto-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.manifesto-intro {
  text-align: center;
  margin-bottom: 5rem;
}

.manifesto-intro p {
  font-size: 1.35rem;
  opacity: 0.95;
  line-height: 1.75;
}

.manifesto-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.manifesto-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 1rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.025),
    rgba(255, 255, 255, 0.01)
  );
  backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.manifesto-item:hover {
  /* border-color: var(--heading-gold); */
  transform: translateY(-5px);
  /* box-shadow: 0 20px 50px var(--glow-gold); */
}

.item-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--heading-gold), #f1c40f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--bg-primary);
  margin-top: 0.3rem;
}

.item-content h3 {
  color: var(--heading-gold);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.item-content p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.92;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .manifesto-item {
    flex-direction: row;
    text-align: center;
    padding: 1rem 1.5rem;
    gap: 1.8rem;
  }

  .item-icon {
    margin-top: 0;
  }
  .manifesto-list {
    gap: 1.5rem;
  }
  .manifesto-intro {
    margin-bottom: 2rem;
  }
}

/* Closing Hero Section */
.closing-hero {
  background: transparent;
  border-radius: 40px;
  padding: 8rem 2rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 6rem 0;
}

.closing-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background:
    radial-gradient(
      circle at 30% 20%,
      rgba(212, 175, 55, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(244, 196, 15, 0.1) 0%,
      transparent 50%
    ); */
  z-index: 0;
}

.closing-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

/* .closing-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--heading-gold), #f1c40f);
    color: var(--bg-primary);
    font-size: 1.3rem;
    font-weight: 800;
    padding: 1.2rem 2.8rem;
    border-radius: 50px;
    margin-bottom: 3rem;
    box-shadow: 0 25px 60px var(--glow-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.closing-badge i {
    font-size: 1.8rem;
} */

.closing-hero h2 {
  font-size: clamp(2rem, 10vw, 3.5rem);
  background: linear-gradient(135deg, var(--heading-gold), #f1c40f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3rem;
  font-weight: 900;
}

.closing-lead {
  font-size: 1.45rem;
  line-height: 1.8;
  opacity: 0.96;
  /* max-width: 750px; */
  margin: 0 auto 0.75rem;
}

.core-pillars {
  margin-bottom: 5rem;
}

.core-pillars h3 {
  color: var(--heading-gold);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.pillars-grid span {
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 0.5rem 1rem;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillars-grid span:hover {
  background-color: #0f172a;
  border-color: var(--heading-gold);
  transform: translateY(-4px);
  /* color: var(--heading-gold); */
  box-shadow: none;
}

.closing-mantra {
  max-width: 700px;
  margin: 0 auto;
}

.closing-mantra p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.final-statement {
  background: linear-gradient(135deg, var(--heading-gold), #f1c40f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 3rem 2rem;
  border-radius: 24px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(25px);
  position: relative;
}

.final-statement::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    var(--heading-gold),
    #f1c40f,
    var(--heading-gold)
  );
  border-radius: 26px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.final-statement:hover::before {
  opacity: 1;
}

.final-statement h4 {
  font-size: 2.2rem;
  font-weight: 900;
  margin: 0;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .pillars-grid span {
    height: 70px;
    font-size: 1rem;
    padding: 1.2rem 1.5rem;
  }
}

/* Liquidity Phases Styles */
.liquidity-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.liquidity-intro p {
  font-size: 1rem;
  line-height: 1.75;
  /* opacity: 0.95; */
}

.liquidity-timeline {
  /* max-width: 900px; */
  margin: 0 auto;
  position: relative;
}

.liquidity-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--heading-gold), transparent 70%);
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 20px var(--glow-gold);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
  background: linear-gradient(
    145deg,
    var(--glass-bg),
    rgba(255, 255, 255, 0.02)
  );
  backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 3rem;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--heading-gold), #f1c40f);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 25px var(--glow-gold);
  z-index: 2;
}

.timeline-item:nth-child(odd) {
  margin-left: 60px;
  transform: translateX(0);
}

.timeline-item:nth-child(even) {
  margin-right: 60px;
  transform: translateX(0);
}

.timeline-item:hover {
  transform: translateY(-4px) scale(1) !important;
  box-shadow: none;
  border-color: #d4af3747 !important;
}

/* CLEAN PROFESSIONAL GOVERNANCE */
.governance-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.governance-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  padding: 0 2rem;
}

.governance-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 6rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.gov-feature {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.gov-feature:last-child {
  border-bottom: none;
}

.gov-feature:hover {
  padding-left: 1rem;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 0 20px 0 20px;
  transform: translateX(10px);
}

.feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--heading-gold), #f1c40f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--bg-primary);
  box-shadow: 0 15px 35px var(--glow-gold);
  margin-top: 0.5rem;
}

.feature-content h3 {
  color: var(--heading-gold);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.min-txt {
  font-size: 1rem;
}

.feature-content p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.governance-key-metrics {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.metric {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1),
    rgba(244, 196, 15, 0.07)
  );
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 20px;
  min-width: 160px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.metric::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--heading-gold),
    transparent
  );
}

.metric:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px var(--glow-gold);
  border-color: var(--heading-gold);
}

.metric-value {
  color: var(--heading-gold);
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.metric span {
  font-size: 0.98rem;
  opacity: 0.9;
  font-weight: 600;
  display: block;
}

/* Responsive */
@media (max-width: 1000px) {
  .governance-features {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 600px;
  }

  .governance-key-metrics {
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .gov-feature {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem 0;
  }

  .feature-icon {
    margin-top: 0;
  }
}

/* Social Ecosystem Table */
.community-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4.5rem;
}

.community-intro p {
  font-size: 1.3rem;
  line-height: 1.75;
  opacity: 0.95;
}

.social-table-container {
  overflow-x: auto;
  margin: 3.5rem 0;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.social-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: linear-gradient(
    145deg,
    var(--glass-bg),
    rgba(255, 255, 255, 0.02)
  );
  backdrop-filter: blur(35px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  font-size: 0.98rem;
  min-width: 800px;
}

.social-table th {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.18),
    rgba(244, 196, 15, 0.12)
  );
  color: var(--heading-gold);
  font-weight: 700;
  padding: 1.6rem 1.8rem;
  text-align: left;
  font-size: 1.25rem;
  letter-spacing: 0.3px;
}

.social-table td {
  padding: 1rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  vertical-align: middle;
}

/* .social-table tbody tr:hover {
  background: rgba(212, 175, 55, 0.08);
  transform: scale(1.005);
  box-shadow: 0 10px 30px var(--glow-gold);
} */

.social-row:last-child td {
  border-bottom: none;
}
.social-table tbody tr:hover {
  transform: none;
  box-shadow: none;
}
.platform-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.platform-info i {
  font-size: 1.4rem;
  width: 32px;
  text-align: center;
  color: var(--heading-gold);
}

.platform-link {
  color: var(--heading-gold);
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 0;
  display: inline-block;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.platform-link:hover {
  color: #f1c40f;
  text-shadow: 0 0 15px var(--glow-gold);
  transform: translateX(5px);
}

.platform-link.coming-soon {
  color: #94a3b8;
  cursor: not-allowed;
}

.platform-link.coming-soon:hover {
  color: #94a3b8;
  transform: none;
  text-shadow: none;
}

.member-count {
  text-align: center;
  /* font-family: "Courier New", monospace; */
  color: var(--text-secondary);
  font-weight: 500;
}

.status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: center;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

.status.active {
  color: #51cf66;
  background: rgba(81, 207, 102, 0.15);
  border: 1px solid rgba(81, 207, 102, 0.3);
}

.status.active i {
  font-size: 1.2rem;
}

.status.coming {
  color: #f1c40f;
  background: rgba(241, 196, 15, 0.2);
  border: 1px solid rgba(241, 196, 15, 0.4);
}

.status.coming i {
  font-size: 1.2rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.community-footer {
  text-align: center;
  margin-top: 3rem;
  padding: 1rem;
  background: transparent;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
}

.community-footer p {
  font-size: 1rem;
  /* opacity: 0.95; */
}

/* Responsive */
@media (max-width: 850px) {
  .social-table {
    font-size: 0.92rem;
    min-width: 700px;
  }
}

@media (max-width: 768px) {
  .social-table-container {
    margin: 2.5rem -1.5rem;
    border-radius: 20px;
  }

  .social-table {
    min-width: 650px;
    font-size: 0.88rem;
  }
}

.phase-number {
  font-size: 1.4rem;
  font-weight: 800;
  margin-right: 10px;
  color: var(--heading-gold);
  margin-bottom: 0.8rem;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.2),
    rgba(244, 196, 15, 0.15)
  );
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  min-width: 100px;
  text-align: center;
}

.phase-amount {
  /* font-family: "Courier New", monospace; */
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--heading-gold);
  margin-bottom: 1rem;
  text-align: center;
}

.phase-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  opacity: 0.92;
  flex: 1;
  /* margin-left: 20px; */
  text-align: center;
}

.phase-lock {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #51cf66;
  font-weight: 600;
  font-size: 14px;
  padding: 0.8rem 1.5rem;
  background: rgba(81, 207, 102, 0.15);
  border: 1px solid rgba(81, 207, 102, 0.3);
  border-radius: 12px;
  margin-left: auto;
}

.phase-lock i {
  font-size: 1.2rem;
}

.liquidity-footer {
  text-align: center;
  margin-top: 6rem;
}

.transparency-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  background: transparent;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(81, 207, 102, 0.3);
  border-radius: 20px;
  padding: 1.5rem 3rem;
  font-size: 1rem;
  font-weight: 600;
  /* box-shadow: 0 20px 50px rgba(81, 207, 102, 0.15); */
}

.transparency-badge i {
  font-size: 1.6rem;
  color: #51cf66;
}

/* Responsive */
@media (max-width: 900px) {
  .timeline-item {
    flex-direction: column;
    text-align: center;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 2rem 1.8rem;
  }

  .timeline-item::before {
    top: 2rem;
    left: 50%;
  }

  .phase-lock {
    margin-left: 0;
    margin-top: 1rem;
  }

  .liquidity-timeline::before {
    left: 3rem;
  }
}

@media (max-width: 600px) {
  .timeline-item {
    padding: 1.8rem 1.2rem;
  }

  /* .phase-number {
    font-size: 1.2rem;
    padding: 0.7rem 1.2rem;
  } */
}

/* Two Column Layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

/* Timeline */
.timeline {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 3rem;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--heading-gold), transparent);
  border-radius: 2px;
}

.timeline-item {
  margin-bottom: 3rem;
  padding: 2.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  position: relative;
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -47px;
  top: 2.5rem;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--heading-gold), #f1c40f);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--glow-gold);
}

.timeline-item:hover {
  transform: translateX(20px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Security Features */
.security {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  list-style: none;
}

.security li {
  background: var(--glass-bg);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.security li h3 {
  margin-bottom: 6px;
  font-size: 1.5rem;
}
.security li p {
  font-size: 15px;
}
.security-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--heading-gold), #f1c40f);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: var(--bg-primary);
  box-shadow: 0 15px 30px var(--glow-gold);
}

.security li:hover {
  background-color: #0f172a;
  transform: translateY(-4px);
  border-color: #d4af3747 !important;
  box-shadow: none;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .main {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 0 1.5rem;
    height: 44vh;
  }

  .section {
    padding: 80px 2rem;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .cta-buttons {
    /* flex-direction: column; */
    align-items: center;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .timeline-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
  }
  .phase-amount{
    margin-bottom: 1rem;
  }
}

@media (max-width: 600px) {
  .phase-content {
    padding: 1rem 1.5rem;
    border: 1px solid #d4a13fbd;
  }
  .main h2 {
    font-size: clamp(2.25rem, 6vw, 3rem);
    margin-bottom: 3rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .cta-buttons a.btn {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-size: 0.85rem;
  }
  .hero {
    height: 65vh;
  }
  .overview-content h3 {
    font-size: 1.5rem;
  }
  .overview-content p {
    font-size: 0.9rem;
  }
  .overview-content h5 {
    font-size: 16px;
  }
  .copy-btn.mtb {
    margin: 10px 0;
  }
  .domain-link {
    padding: 0.75rem 1rem;
  }
  .stats-grid {
    margin-bottom: 1rem;
  }
  .overview-stats {
    padding: 1rem 1.25rem;
  }
  .card {
    padding: 1rem 1.5rem 2rem;
  }
  .card-icon {
    width: 48px;
    height: 48px;
  }
  .card h3,
  .card h4 {
    color: var(--heading-gold);
    font-size: 1.25rem;
    line-height: 1;
    margin-bottom: 0.5rem;
  }
  .section {
    padding: 40px 1.5rem 20px !important;
  }
  .grid {
    gap: 1rem;
  }
  .total-supply {
    padding: 1rem 1.5rem;
  }
  .tokenomics-table {
    background: none;
    backdrop-filter: blur(0px);
  }
  .tokenomics-footer {
    margin: 0rem auto 0;
    padding: 1.25rem;
  }
  .vesting-title {
    margin-bottom: 30px;
  }
  .vesting-header {
    margin-bottom: 8px;
  }
  .vesting-item {
    border-left-color: #d4af37;
  }
  .timeline-item {
    margin-bottom: 1.5rem !important;
    padding: 1.25rem !important;
  }
  .phase-number {
    font-size: 1rem !important;
    border-radius: 6px !important;
    padding: 0.25rem 1.5rem !important;
  }
  .phase-amount {
    font-size: 1rem !important;
    margin-bottom: 0.25rem !important;
  }
  .phase-description {
    margin-bottom: 0rem !important;
  }
  .phase-lock {
    padding: 0.25rem 1.5rem !important;
    border-radius: 6px !important;
  }
  .transparency-badge {
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 14px;
  }
  .liquidity-footer {
    margin-top: 2rem;
  }
  .timeline-item {
    margin-bottom: 1.5rem;
  }
  .governance-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
  .governance-header {
    margin: 0 auto 2rem;
  }
  .gov-feature {
    flex-direction: row;
    text-align: left;
    gap: 1rem;
    padding: 1rem;
    border-left: 3px solid #e2b923;
    margin-bottom: 20px;
    border-radius: 6px;
    align-items: center;
  }
  .feature-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
  }
  .feature-icon {
    width: 48px;
    height: 48px;
  }
  .governance-features {
    margin-bottom: 1rem;
  }
  .vesting-item.gold.core-values {
    margin-top: 0px;
  }
  .security-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }
  .security li p {
    font-size: 14px;
  }
  .security {
    gap: 1.25rem;
  }
  .community-intro p {
    font-size: 1rem;
  }
  .community-intro {
    margin: 0 auto;
  }
  .social-table {
    background: none;
    backdrop-filter: blur(0px);
    max-width: 100vw;
    min-width: 100vw;
  }
  .social-table th {
    padding: 1rem 1rem;
    text-align: left;
    font-size: 1rem;
  }
  .platform-info {
    max-width: 40vw;
    min-width: 40vw;
  }
  .phase-dot {
    display: none;
  }
  .roadmap-phase:hover {
    transform: translateX(0px);
  }
  .roadmap-phase {
    margin-bottom: 0rem;
    gap: 1rem;
    margin-bottom: 0rem;
    margin-top: 20px;
  }
  .roadmap-section::before {
    background: none;
  }
  .phase-year {
    margin-bottom: 0rem;
  }
  .manifesto-intro p {
    font-size: 1rem;
  }
  .manifesto-intro {
    margin-bottom: 2rem;
  }
  .manifesto-container {
    padding: 0;
  }
  .manifesto-item {
    flex-direction: row;
    text-align: left;
    padding: 1rem;
    gap: 1.25rem;
    align-items: center;
  }
  .item-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
  .item-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  .item-content p {
    font-size: 14px;
  }
  .manifesto-list {
    gap: 1.25rem;
  }

  .closing-hero {
    margin: 2rem 0;
  }
  .min-txt {
    font-size: 14px;
  }
  .core-pillars {
    margin-bottom: 3rem;
    margin-top: 2rem !important;
  }
  .core-pillars h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .pillars-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.5rem;
  }
  .pillars-grid span {
    height: 40px;
    font-size: 14px;
    padding: 0.75rem;
    border-radius: 6px;
    /* text-align: left; */
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    line-height: 1;
  }
}

@media (max-width: 400px) {
    .hero {
        height: 85vh;
    }
}