:root {
  /* Base colors */
  --bg-primary: #0a0a0a;
  --bg-secondary: #0d0d0f;
  --bg-tertiary: #111115;
  
  /* Glass morphism colors */
  --glass-bg: rgba(17, 17, 21, 0.4);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: rgba(0, 0, 0, 0.3);
  
  /* Card colors */
  --card-bg: rgba(17, 17, 19, 0.6);
  --card-border: rgba(255, 255, 255, 0.1);
  --card-hover: rgba(17, 17, 19, 0.8);
  
  /* Text colors */
  --text-primary: #ffffff;
  --text-secondary: #e4e4e7;
  --text-muted: #a1a1aa;
  --text-accent: #fbbf24;
  
  /* Gold gradient */
  --gold-primary: #fbbf24;
  --gold-secondary: #f59e0b;
  --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  
  /* Accent colors */
  --accent-primary: #8b5cf6;
  --accent-secondary: #a78bfa;
  --accent-gradient: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 50%, #c4b5fd 100%);
  
  /* Success/Error colors */
  --success: #10b981;
  --error: #ef4444;
  --warning: #f59e0b;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 20px rgba(251, 191, 36, 0.15);
  
  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  padding-top: 48px;
  background: 
    radial-gradient(1400px 1000px at 85% -15%, rgba(251, 191, 36, 0.08), transparent 70%),
    radial-gradient(800px 600px at 15% 100%, rgba(139, 92, 246, 0.06), transparent 60%),
    linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
  color: var(--text-primary);
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  scroll-behavior: smooth;
  min-height: 100vh;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: var(--space-md) 0;
  /* padding-top: 40px; */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  max-width: 1200px;
  margin: 0 auto;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-xl);
}

nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.025em;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

nav a:hover {
  color: var(--text-accent);
  transform: translateY(-1px);
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

nav a:hover::before {
  opacity: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  border-radius: 1px;
}

nav a:hover::after {
  width: 80%;
  box-shadow: var(--shadow-glow);
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 800;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.logo:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.3));
}

.logo .crown {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover .crown {
  box-shadow: var(--shadow-glow), var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: rotate(5deg);
}
.logo small {
  font-weight: 600;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.nav-links .pill.active {
  background: var(--card-hover);
  border-color: var(--gold-primary);
  color: var(--text-primary);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.nav-links .pill.active::before {
  opacity: 0.15;
}

.grid {
  display: grid;
  gap: 18px;
}
/* Smooth scroll behavior */
* {
  scroll-behavior: smooth;
}

/* Section animations */
.about,
.tokenomics,
.roadmap,
.links,
.whitepaper {
  padding: var(--space-2xl) 0;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.about {
  animation-delay: 0.1s;
}

.tokenomics {
  animation-delay: 0.2s;
}

.roadmap {
  animation-delay: 0.3s;
}

.links {
  animation-delay: 0.4s;
}

.whitepaper {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating animation for cards */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Pulse animation for accent elements */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Gradient animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Add subtle floating animation to cards */
.card:nth-child(odd) {
  animation: float 6s ease-in-out infinite;
  animation-delay: 0s;
}

.card:nth-child(even) {
  animation: float 6s ease-in-out infinite;
  animation-delay: 3s;
}

.card {
  background: var(--card-bg);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  background: var(--card-hover);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-xl), var(--shadow-glow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.card:hover::before {
  opacity: 1;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 var(--space-lg);
  background: var(--gold-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 var(--space-lg);
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 var(--space-md);
  color: var(--text-secondary);
}

p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 var(--space-md);
  color: var(--text-muted);
  font-weight: 400;
}
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-radius: var(--radius-md);
  overflow-x: scroll;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

th,
td {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--glass-border);
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

th {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.025em;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 2px solid var(--glass-border);
  position: relative;
}

th::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0.6;
}

td {
  color: var(--text-secondary);
  font-size: 0.9rem;
}



/* Token Distribution Table Styling */
.token-table-container {
  background: linear-gradient(135deg, 
    rgba(139, 92, 246, 0.1) 0%, 
    rgba(59, 130, 246, 0.08) 50%, 
    rgba(16, 185, 129, 0.06) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  margin-top: var(--space-xl);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 
    0 20px 40px rgba(139, 92, 246, 0.1),
    0 8px 16px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
  transition: all 0.3s ease;
  /* width: 70vw; */
}

.token-table-container:hover {
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 
    0 25px 50px rgba(139, 92, 246, 0.15),
    0 12px 24px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

  .token-table-container {
      width: 100%;
      overflow-x: auto; /* enables horizontal scroll on small screens */
      background: #161b22;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      padding: 10px;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      min-width: 600px; /* ensures table keeps layout before wrapping */
    }

    th, td {
      text-align: left;
      padding: 12px 16px;
      border-bottom: 1px solid #30363d;
    }

    th {
      background-color: #21262d;
      font-weight: 600;
    }

    tr:hover {
      background-color: #1a1f26;
    }

    a {
      color: #58a6ff;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    /* Responsive stacking for smaller screens */
    @media (max-width: 600px) {
      table, thead, tbody, th, td, tr {
        display: block;
      }

      thead tr {
        display: none;
      }

      tr {
        margin-bottom: 15px;
        border: 1px solid #30363d;
        border-radius: 10px;
        padding: 10px;
      }

      td {
        border: none;
        padding: 10px;
        display: flex;
        justify-content: space-between;
      }

      td::before {
        content: attr(data-label);
        font-weight: 600;
        text-transform: uppercase;
        color: #9ca3af;
      }
    }

/* Tokenomics */
.tokenomics {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.tokenomics::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 165, 0, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255, 140, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
  animation: backgroundPulse 8s ease-in-out infinite;
}

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

/* Tokenomics Grid Layout */
.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
  position: relative;
}

/* Tokenomics Cards */
.tokenomics-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.tokenomics-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.tokenomics-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(255, 215, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.tokenomics-card:hover::before {
  opacity: 1;
}

/* Card Icons */
.card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

/* Card Titles */
.tokenomics-card h3 {
  color: #ffd700;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Statistics Numbers */
.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  font-weight: 500;
}

/* Card Descriptions */
.card-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.card-description a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.card-description a:hover {
  color: #ffb347;
  border-bottom-color: #ffb347;
  text-shadow: 0 0 8px rgba(255, 179, 71, 0.5);
}

/* Specific Card Styling */
.supply-card:hover {
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(147, 112, 219, 0.3);
}

.liquidity-card:hover {
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(34, 139, 34, 0.3);
}

.marketing-card:hover {
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(255, 69, 0, 0.3);
}

.community-card:hover {
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(30, 144, 255, 0.3);
}

.burn-card:hover {
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(255, 99, 71, 0.3);
}

.ecosystem-card:hover {
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(139, 90, 60, 0.3);
}

.team-card:hover {
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(153, 50, 204, 0.3);
}

/* Tokenomics Chart */
.tokenomics-chart {
  grid-column: 1 / -1;
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 25px;
  padding: 40px;
  text-align: center;
}

.chart-container {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto 40px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #228b22 0% 50%,
    #ff4500 50% 70%,
    #1e90ff 70% 80%,
    #ff6347 80% 90%,
    #8b5a3c 90% 95%,
    #9932cc 95% 100%
  );
  box-shadow: 
    0 0 50px rgba(255, 215, 0, 0.2),
    inset 0 0 50px rgba(0, 0, 0, 0.3);
  animation: chartRotate 20s linear infinite;
}

@keyframes chartRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.chart-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 50%;
  box-shadow: 
    0 0 30px rgba(0, 0, 0, 0.5),
    inset 0 0 20px rgba(255, 215, 0, 0.1);
}

.chart-container::after {
  content: 'KKG';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffd700;
  font-size: 1.5rem;
  font-weight: 900;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

/* Chart Legend */
.chart-legend {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.legend-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
}

.legend-color {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.liquidity-color {
  background: linear-gradient(135deg, #228b22 0%, #32cd32 100%);
}

.marketing-color {
  background: linear-gradient(135deg, #ff4500 0%, #ff6347 100%);
}

.community-color {
  background: linear-gradient(135deg, #1e90ff 0%, #87ceeb 100%);
}

.burn-color {
  background: linear-gradient(135deg, #ff6347 0%, #ff7f50 100%);
}

.ecosystem-color {
  background: linear-gradient(135deg, #8b5a3c 0%, #a0522d 100%);
}

.team-color {
  background: linear-gradient(135deg, #9932cc 0%, #ba55d3 100%);
}

.legend-item span:last-child {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.95rem;
}

/* Additional Tokenomics Info */
.tokenomics-info {
  grid-column: 1 / -1;
  margin-top: 40px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.info-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.info-card h4 {
  color: #ffd700;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.info-value {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Trading Buttons */
.trading-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.trade-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 50px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-width: 180px;
  justify-content: center;
}

.trade-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.trade-btn:hover::before {
  left: 100%;
}

.trade-btn:hover {
  transform: translateY(-3px) scale(1.05);
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.3),
    0 0 25px rgba(255, 215, 0, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.raydium-btn:hover {
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.3),
    0 0 25px rgba(138, 43, 226, 0.4);
}

.dexscreener-btn:hover {
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.3),
    0 0 25px rgba(0, 191, 255, 0.4);
}

.btn-icon {
  font-size: 1.2rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.btn-text {
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 165, 0, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 10%, rgba(255, 140, 0, 0.04) 0%, transparent 40%);
  pointer-events: none;
  animation: testimonialGlow 10s ease-in-out infinite;
}

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

/* Testimonial Cards */
.testimonials .card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 20px;
  padding: 35px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonials .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.testimonials .card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(255, 215, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.testimonials .card:hover::before {
  opacity: 1;
}

/* Testimonial Text */
.testimonials .card p:first-child {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  font-style: italic;
  position: relative;
  flex-grow: 1;
}

.testimonials .card p:first-child::before {
  content: '"';
  font-size: 3rem;
  color: rgba(255, 215, 0, 0.3);
  position: absolute;
  top: -15px;
  left: -10px;
  font-family: serif;
  line-height: 1;
}

/* Attribution */
.testimonials .card .muted {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
  text-align: right;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  padding-top: 20px;
}

.testimonials .card .muted a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.testimonials .card .muted a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffd700, #ffb347);
  transition: width 0.3s ease;
}

.testimonials .card .muted a:hover {
  color: #ffb347;
  text-shadow: 0 0 8px rgba(255, 179, 71, 0.4);
}

.testimonials .card .muted a:hover::after {
  width: 100%;
}

/* Testimonial Grid Enhancements */
.testimonials .grid {
  gap: 30px;
}

.testimonials .grid.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Special styling for different testimonial cards */
.testimonials .card:nth-child(1):hover {
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(138, 43, 226, 0.2);
}

.testimonials .card:nth-child(2):hover {
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(34, 139, 34, 0.2);
}

.testimonials .card:nth-child(3):hover {
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(255, 69, 0, 0.2);
}

.testimonials .card:nth-child(4):hover {
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(30, 144, 255, 0.2);
}

/* Mint Address Styling */
.mint-address {
  font-family: 'Courier New', monospace;
  font-size: 1.2rem;
  color: #ffd700;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 15px 20px;
  margin: 10px 0;
  word-break: break-all;
  line-height: 1.4;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.mint-address:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15);
  color: #ffb347;
}

/* Copy Popup */
.copy-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  z-index: 10000;
  opacity: 0;
  animation: popupShow 2s ease-in-out;
}

@keyframes popupShow {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
  20% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
  80% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(0.95); }
}

/* How to Buy Section */
.how-to-buy {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #1a1a2e 75%, #0f0f23 100%);
  position: relative;
  overflow: hidden;
}

.how-to-buy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 165, 0, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.how-to-buy h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #ffd700, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.step-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 215, 0, 0.15);
}

.step-card:hover::before {
  opacity: 1;
}

.step-number {
  position: absolute;
  top: -5px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffd700, #ffb347);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  padding-top: 8px;
}

.step-icon {
  font-size: 3rem;
  margin: 20px 0;
  display: block;
}

.step-card h3 {
  font-size: 1.3rem;
  margin: 20px 0 15px;
  color: #ffd700;
  font-weight: 700;
}

.step-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Tokenomics cards equal height */
.tokenomics .grid.cols-2 {
  align-items:center;
}

.tokenomics .grid.cols-2 > div {
  display: flex;
  flex-direction: column;
}

.tokenomics-info-card {
  /* height: 100%; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: var(--space-xl);
  background: var(--card-bg);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tokenomics-info-card:hover {
  background: var(--card-hover);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl), var(--shadow-glow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.tokenomics-info-card p {
  margin-bottom: var(--space-md);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.tokenomics-info-card p strong {
  color: var(--text-primary);
  font-weight: 600;
}

.tokenomics-info-card .row {
  margin-top: auto;
  padding-top: var(--space-lg);
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Footer responsive line breaks */
.footer-break {
  display: inline;
}

@media (max-width: 768px) {
  .footer-break {
    display: inline;
  }
  
  .footer-content p {
    line-height: 1.8;
    text-align: center;
    font-size: 0.75rem;
  }
  
  /* Tokenomics Mobile Styles */
  .tokenomics {
    padding: 60px 0;
  }
  
  .tokenomics-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
  
  .tokenomics-card {
    padding: 25px 20px;
    border-radius: 16px;
  }
  
  .card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .tokenomics-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }
  
  .card-description {
    font-size: 0.85rem;
  }
  
  .tokenomics-chart {
    margin-top: 30px;
    padding: 30px 20px;
    border-radius: 20px;
  }
  
  .chart-container {
    width: 250px;
    height: 250px;
    margin-bottom: 30px;
  }
  
  .chart-container::before {
    width: 100px;
    height: 100px;
  }
  
  .chart-container::after {
    font-size: 1.2rem;
  }
  
  .chart-legend {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .legend-item {
    padding: 12px;
    gap: 10px;
  }
  
  .legend-item span:last-child {
    font-size: 0.85rem;
  }
  
  /* Tokenomics Info Mobile Styles */
  .tokenomics-info {
    margin-top: 30px;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .info-card {
    padding: 20px;
    border-radius: 12px;
  }
  
  .info-card h4 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .info-value {
    font-size: 1.1rem;
  }
  
  .trading-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .trade-btn {
    padding: 14px 28px;
    font-size: 0.95rem;
    min-width: 160px;
    gap: 10px;
  }
  
  .btn-icon {
    font-size: 1.1rem;
  }
  
  /* Testimonials Mobile Styles */
  .testimonials {
    padding: 60px 0;
  }
  
  .testimonials .grid.cols-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonials .card {
    padding: 25px 20px;
    border-radius: 16px;
  }
  
  .testimonials .card p:first-child {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .testimonials .card p:first-child::before {
    font-size: 2.5rem;
    top: -12px;
    left: -8px;
  }
  
  .testimonials .card .muted {
    font-size: 0.85rem;
    padding-top: 15px;
    text-align: left;
  }
  
  /* Mint Address Mobile Styles */
  .mint-address {
    font-size: 1rem;
    padding: 12px 15px;
    text-align: center;
  }
  
  /* How to Buy Mobile Styles */
  .how-to-buy {
    padding: 60px 0;
  }
  
  .how-to-buy h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 20px;
  }
  
  .step-card {
    padding: 30px 20px;
  }
  
  .step-number {
    left: 20px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .step-icon {
    font-size: 2.5rem;
    margin: 15px 0;
  }
  
  .step-card h3 {
    font-size: 1.1rem;
    margin: 15px 0 10px;
  }
  
  .step-card p {
    font-size: 0.9rem;
  }
}
.muted {
  color: var(--muted);
}
.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}

.roadmap .phase {
  display: grid;
  gap: var(--space-md);
  background: var(--card-bg);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.roadmap .phase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.roadmap .phase:hover {
  background: var(--card-hover);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.roadmap .phase:hover::before {
  opacity: 1;
}

.phase h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
footer {
  padding: var(--space-2xl) 0;
  color: var(--text-muted);
  border-top: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  margin-top: var(--space-2xl);
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0.3;
}

.footer-content {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.footer-content p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.025em;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: var(--space-sm);
  gap: var(--space-xs);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle:hover {
  background: var(--card-hover);
  border-color: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}

.mobile-menu-toggle:hover .hamburger-line {
  background: var(--text-accent);
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid var(--glass-border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.pill::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.pill:hover {
  background: var(--card-hover);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  color: var(--text-primary);
}

.pill:hover::before {
  opacity: 0.1;
}

.pill:active {
  transform: translateY(-1px) scale(1.01);
  transition: all 0.1s ease;
}



/* Base Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  letter-spacing: 0.025em;
}

.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);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--bg-primary);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border: 2px solid var(--gold-primary);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-xl), 0 0 30px rgba(251, 191, 36, 0.4);
  border-color: var(--gold-secondary);
}

.btn-outline {
  background: var(--glass-bg);
  border: 2px solid var(--card-border);
  color: var(--text-secondary);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.btn-outline:hover {
  background: var(--card-hover);
  border-color: var(--gold-primary);
  transform: translateY(-3px) scale(1.02);
  color: var(--text-primary);
  box-shadow: var(--shadow-lg), var(--shadow-glow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* About section button styles */
.about-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.about-buttons .btn {
  flex: 1;
  min-width: 140px;
  max-width: 200px;
}

/* Mobile First Responsive Design */

/* Small mobile devices (320px - 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }
  
  header {
    padding: var(--space-xl) 0;
  }
  
  nav {
    /* padding: 0 var(--space-md); */
    padding: 20px;
  }
  
  .logo {
    font-size: 1.125rem;
  }
  
  .logo .crown {
    width: 24px;
    height: 24px;
  }
  
  .nav-links {
    gap: var(--space-sm);
  }
  
  .pill {
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.8rem;
  }
  
  .about, .tokenomics, .roadmap, .links, .whitepaper {
    padding: var(--space-2xl) 0;
  }
  
  .card {
    padding: var(--space-lg);
    border-radius: var(--radius-md);
  }
  
  h1 {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  
  h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  
  h3 {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
  }
  
  .phase h3 {
    font-size: 1rem;
  }
  
  table {
    font-size: 0.8rem;
    width: 100%;
  }
  
  th, td {
    padding: var(--space-sm) var(--space-xs);
  }
  
  .mono {
    font-size: 0.75rem;
    word-break: break-all;
  }
  
  .btn {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.9rem;
  }
  
  /* Tokenomics section mobile fixes */
  .tokenomics .card .grid.cols-2 {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: stretch;
  }
  
  .tokenomics .card .grid.cols-2 > div {
    display: flex;
    flex-direction: column;
  }
  
  .tokenomics .card .grid.cols-2 > div:last-child .card {
    height: 100%;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .tokenomics-info-card {
    padding: var(--space-md);
    width: 100%;
    min-height: auto;
  }
  
  .tokenomics-info-card p {
    font-size: 0.85rem;
    margin-bottom: var(--space-xs);
    line-height: 1.5;
  }
  
  .tokenomics-info-card p strong {
    font-size: 0.9rem;
  }
  
  .tokenomics-info-card .row {
    flex-direction: column;
    gap: var(--space-xs);
    padding-top: var(--space-sm);
    margin-top: var(--space-sm);
  }
  

  

  

  
  /* Button responsiveness */
  .tokenomics .btn, .about-buttons .btn {
    width: 100%;
    min-width: auto;
    max-width: none;
    margin-bottom: 8px;
  }
  
  .tokenomics .btn:last-child {
    margin-bottom: 0;
  }
  /* Token Distribution Table Mobile Styles */
  .token-table-container {
    margin-top: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
  }
  
  .token-distribution-table {
    /* width: 100%; */
    /* min-width: 500px; */
    font-size: 0.85rem;
  }
  
  .token-distribution-table th {
    padding: var(--space-sm) var(--space-xs);
    font-size: 0.75rem;
  }
  
  .token-distribution-table td {
    padding: var(--space-sm) var(--space-xs);
    font-size: 0.8rem;
  }
  
  .token-distribution-table td:nth-child(1) {
    font-size: 0.8rem;
    white-space: nowrap;
  }
  
  .token-distribution-table td:nth-child(2) {
    font-size: 0.85rem;
    white-space: nowrap;
  }
  
  .token-distribution-table td:nth-child(3) {
    font-size: 0.75rem;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .token-distribution-table a {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .tokenomics .row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }
  
  .tokenomics .btn {
    width: 100%;
    padding: 10px 16px;
    font-size: 13px;
    min-width: auto;
  }
  
  .tokenomics-info-card .btn {
    padding: 8px 8px;
    font-size: 12px;
    min-height: 36px;
  }
  
  .about-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .about-buttons .btn {
    width: 100%;
    min-width: auto;
    max-width: none;
    margin-bottom: 8px;
  }
  
  .about-buttons .btn:last-child {
    margin-bottom: 0;
  }
}

/* Large mobile devices (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .container {
    padding: 0 18px;
  }
  
  header {
    padding: var(--space-lg) 0;
  }
  
  nav {
    padding: 16px;
  }
  
  .about, .tokenomics, .roadmap, .links, .whitepaper {
    padding: 56px 0;
  }
  
  h2 {
    font-size: 26px;
  }
  
  .grid.cols-2 {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: stretch;
  }
  
  .grid.cols-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  /* Tokenomics section large mobile fixes */
  .tokenomics .card .grid.cols-2 > div {
    display: flex;
    flex-direction: column;
  }
  
  .tokenomics .card .grid.cols-2 > div:last-child .card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .tokenomics-info-card {
    /* width: 55%; */
    /* padding: var(--space-lg); */
    min-height: auto;
  }
  
  .tokenomics-info-card p {
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
    line-height: 1.6;
  }
  
  .tokenomics-info-card p strong {
    font-size: 0.95rem;
  }
  
  .tokenomics-info-card .row {
    flex-direction: column;
    gap: var(--space-sm);
    padding-top: var(--space-md);
    margin-top: var(--space-md);
  }
  
  /* Button responsiveness for large mobile */
  .tokenomics .btn, .about-buttons .btn {
    /* width: 100%; */
    min-width: auto;
    max-width: none;
    margin-bottom: 8px;
  }
  
  .tokenomics-info-card .btn {
    padding: 10px 4px;
    font-size: 13px;
    /* min-height: 40px; */
  }
  
  .tokenomics .btn:last-child, .about-buttons .btn:last-child {
    margin-bottom: 0;
  }
}

/* Tablets (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero h1 {
    font-size: 48px;
  }
  
  .grid.cols-2 {
    grid-template-columns: 1fr 1fr;
  }
  
  .grid.cols-3 {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .about, .tokenomics, .roadmap, .links, .whitepaper {
    padding: 64px 0;
  }
  
  /* Tokenomics section tablet fixes */
  .tokenomics .card .grid.cols-2 {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
  }
  
  .tokenomics .card .grid.cols-2 > div {
    display: flex;
    flex-direction: column;
  }
  
  .tokenomics .card .grid.cols-2 > div:last-child .card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  

  
  .tokenomics-info-card {
    padding: var(--space-xl);
    min-height: auto;
  }
  
  .tokenomics-info-card p {
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
    line-height: 1.6;
  }
  
  .tokenomics-info-card p strong {
    font-size: 1rem;
  }
  
  .tokenomics-info-card .row {
    flex-direction: row;
    gap: var(--space-md);
    padding-top: var(--space-lg);
    margin-top: var(--space-lg);
    flex-wrap: wrap;
  }
  
  /* Button responsiveness for tablets */
  .tokenomics .btn {
    width: auto;
    min-width: 120px;
    margin-right: 8px;
    margin-bottom: 8px;
  }
  
  .tokenomics .btn:last-child {
    margin-right: 0;
  }
  
  .about-buttons .btn {
    width: auto;
    min-width: 140px;
    margin-right: 12px;
  }
  
  .about-buttons .btn:last-child {
    margin-right: 0;
  }
  

  
  .tokenomics .row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
    justify-content: center;
  }
  
  .tokenomics .btn {
    flex: 1;
    min-width: 160px;
    max-width: 200px;
  }
  
  .about-buttons {
    gap: 14px;
  }
  
  .about-buttons .btn {
    min-width: 150px;
  }
}

/* Desktop and larger screens (1025px+) */
@media (min-width: 1025px) {
  .grid.cols-2 {
    grid-template-columns: 1fr 1fr;
  }
  
  .grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hero h1 {
    font-size: 56px;
  }
  
  .tokenomics-info-card {
    padding: var(--space-2xl);
    min-height: 100%;
  }
  
  .tokenomics-info-card p {
    font-size: 1rem;
    margin-bottom: var(--space-md);
    line-height: 1.7;
  }
  
  .tokenomics-info-card p strong {
    font-size: 1.1rem;
  }
  
  .tokenomics-info-card .row {
    flex-direction: row;
    gap: var(--space-lg);
    padding-top: var(--space-xl);
    margin-top: auto;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

/* Navigation responsive behavior */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-direction: column;
    padding: 20px;
    gap: 12px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-links .pill {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
  }
  
  nav {
    position: relative;
  }
}

/* Table responsive behavior */
@media (max-width: 768px) {
  table {
    display: block;
    overflow-x: visible;
    white-space:wrap;
    font-size: 14px;
  }
  
  .mono {
    font-size: 11px;
    word-break: break-all;
  }
  
  /* Tokenomics section specific fixes */
  .tokenomics .card .grid.cols-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .tokenomics .card .grid.cols-2 > div:last-child .card {
    height: auto !important;
  }
  


  
  .tokenomics .row {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
    align-items: center;
  }
  
  .tokenomics .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

/* New Hero Section Styles */
.hero-new {
  position: relative;
  padding: 90px 0 80px;
  overflow: hidden;
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease 0.3s forwards;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.kkg-badge-new {
  animation: pulse 3s ease-in-out infinite;
}

.kkg-badge-new:hover {
  animation: none;
  transform: scale(1.1);
}

.hero-new .bg-glow-new {
  position: absolute;
  inset: -40%;
  top: -60%;
  background: radial-gradient(
      1200px 1200px at 25% 15%,
      rgba(242, 201, 76, 0.35),
      transparent 60%
    ),
    radial-gradient(
      900px 900px at 75% 20%,
      rgba(183, 148, 244, 0.30),
      transparent 60%
    ),
    radial-gradient(
      600px 600px at 50% 80%,
      rgba(242, 201, 76, 0.25),
      transparent 50%
    );
  animation: glow-pulse 8s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.hero-new .container {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 1200px;
}

.kicker-new {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(242, 201, 76, 0.15), rgba(242, 201, 76, 0.05));
  border: 1px solid rgba(242, 201, 76, 0.3);
  border-radius: 30px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(242, 201, 76, 0.1);
}

.hero-title-new {
  font-size: 56px;
  line-height: 1.1;
  margin: 0 0 32px 0;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.hero-text-new {
  color: #c0c0c0;
  max-width: 680px;
  font-size: 20px;
  margin: 0 0 32px 0;
  line-height: 1.7;
  font-weight: 400;
}

.kkg-badge-new {
  display: inline-block;
  padding: 14px 24px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 16px;
  color: #22c55e;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  margin: 0 0 40px 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.1);
}

.kkg-badge-new:hover {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.25), rgba(34, 197, 94, 0.1));
  border-color: rgba(34, 197, 94, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.2);
}

.cta-new {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 40px 0;
  justify-content: flex-start;
  align-items: center;
}

.btn-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-align: center;
  min-width: 180px;
  position: relative;
  overflow: hidden;
}

.btn-new::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.5s;
}

.btn-new:hover::before {
  left: 100%;
}

.btn-primary-new {
  background: var(--gold-gradient);
  color: var(--bg-primary);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-primary-new:hover {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-xl), 0 0 30px rgba(251, 191, 36, 0.4);
  border-color: var(--gold-secondary);
}

.btn-outline-new {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-outline-new:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
}

.row-new {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 24px;
}

.badge-new {
  padding: 10px 18px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(34, 197, 94, 0.04));
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 20px;
  font-size: 14px;
  color: #22c55e;
  font-weight: 600;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(34, 197, 94, 0.08);
}

.badge-new:hover {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(34, 197, 94, 0.08));
  border-color: rgba(34, 197, 94, 0.45);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.15);
}

/* Responsive styles for new hero section */
@media (max-width: 1024px) {
  .hero-new {
    min-height: 90vh;
    padding: 100px 0 60px;
  }
  
  .hero-title-new {
    font-size: 48px;
  }
  
  .hero-text-new {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .hero-new {
    min-height: 80vh;
    padding: 80px 0 50px;
    align-items: flex-start;
    padding-top: 120px;
  }
  
  .hero-title-new {
    font-size: 40px;
    margin-bottom: 24px;
  }
  
  .hero-text-new {
    font-size: 17px;
    margin-bottom: 28px;
  }
  
  .cta-new {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin: 32px 0;
  }
  
  .btn-new {
    width: 100%;
    margin: 0;
    min-width: auto;
  }
  
  .row-new {
    justify-content: center;
    gap: 12px;
  }
  
  .kicker-new {
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .hero-new {
    min-height: 70vh;
    padding: 60px 0 40px;
    padding-top: 100px;
  }
  
  .hero-title-new {
    font-size: 32px;
    line-height: 1.2;
  }
  
  .hero-text-new {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .kicker-new {
    font-size: 12px;
    padding: 8px 16px;
    margin-bottom: 20px;
  }
  
  .kkg-badge-new {
    font-size: 14px;
    padding: 12px 20px;
    margin-bottom: 32px;
  }
  
  .btn-new {
    padding: 14px 24px;
    font-size: 15px;
  }
  
  .row-new {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .badge-new {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 18px;
  }
}

/* Button responsive stacking */
@media (max-width: 480px) {
  .cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    text-align: center;
    width: 100%;
  }
  
}

/* Improve touch targets on mobile */
@media (max-width: 768px) {
  .pill {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Manifesto Section */
.manifesto {
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.03) 0%, rgba(139, 92, 246, 0.02) 100%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

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

.manifesto-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-xl);
  line-height: 1.2;
}

.manifesto-section h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.crown-code {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
}

.crown-code h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.crown-rules {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.crown-rules li {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold-primary);
  transition: all 0.3s ease;
}

.crown-rules li:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.crown-rules li:last-child {
  margin-bottom: 0;
}

/* Manifesto responsive */
@media (max-width: 768px) {
  .manifesto-title {
    font-size: 2rem;
  }
  
  .manifesto-section h3 {
    font-size: 1.5rem;
  }
  
  .crown-code {
    padding: var(--space-lg);
  }
  
  .crown-rules li {
    font-size: 1rem;
  }
}

/* Contact Address Container */
.contact-address-container {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-sm);
}

.contact-address-container .mint-address {
  flex: 1;
  margin: 0;
  min-width: 200px;
}

.contact-address-container .copy-btn {
  flex-shrink: 0;
  padding: 8px 16px;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Responsive contact address */
@media (max-width: 768px) {
  .contact-address-container {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-sm);
  }
  
  .contact-address-container .copy-btn {
    width: 100%;
    text-align: center;
  }
}
-weight: 600;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(34, 197, 94, 0.08);
}

.badge-new:hover {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(34, 197, 94, 0.08));
  border-color: rgba(34, 197, 94, 0.45);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.15);
}

/* Responsive styles for new hero section */
@media (max-width: 1024px) {
  .hero-new {
    min-height: 90vh;
    padding: 100px 0 60px;
  }
  
  .hero-title-new {
    font-size: 48px;
  }
  
  .hero-text-new {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .hero-new {
    min-height: 80vh;
    padding: 80px 0 50px;
    align-items: flex-start;
    padding-top: 120px;
  }
  
  .hero-title-new {
    font-size: 40px;
    margin-bottom: 24px;
  }
  
  .hero-text-new {
    font-size: 17px;
    margin-bottom: 28px;
  }
  
  .cta-new {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin: 32px 0;
  }
  
  .btn-new {
    width: 100%;
    margin: 0;
    min-width: auto;
  }
  
  .row-new {
    justify-content: center;
    gap: 12px;
  }
  
  .kicker-new {
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .hero-new {
    min-height: 70vh;
    padding: 60px 0 40px;
    padding-top: 100px;
  }
  
  .hero-title-new {
    font-size: 32px;
    line-height: 1.2;
  }
  
  .hero-text-new {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .kicker-new {
    font-size: 12px;
    padding: 8px 16px;
    margin-bottom: 20px;
  }
  
  .kkg-badge-new {
    font-size: 14px;
    padding: 12px 20px;
    margin-bottom: 32px;
  }
  
  .btn-new {
    padding: 14px 24px;
    font-size: 15px;
  }
  
  .row-new {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .badge-new {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 18px;
  }
}

/* Button responsive stacking */
@media (max-width: 480px) {
  .cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    text-align: center;
    width: 100%;
  }
  
}

/* Improve touch targets on mobile */
@media (max-width: 768px) {
  .pill {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
