/* Premium Web3 Cyber-Neobrutalist Theme */
:root {
  --bg-primary: #00122c;       /* Medium dark navy */
  --bg-secondary: #000814;     /* Deep navy background (matches image) */
  --brand-color: rgba(0, 30, 71, 0.65); /* Glassmorphic deep blue-navy */
  --brand-accent: #00ff88;     /* Hot neon green for highlights */
  --brand-yellow: #00e5ff;     /* Cyber cyan */
  --text-color: #f1f5f9;       /* Light silver */
  --text-muted: #94a3b8;       /* Cool slate grey */
  --white: rgba(0, 26, 61, 0.55); /* Glassmorphic light card fill */
  --border-color: #00ff88;     /* Neon green outlines */
  --border-width: 2px;
  --card-shadow: 6px 6px 0px #000000;
  --button-shadow: 4px 4px 0px #000000;
  --font-heading: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-display: 'Syncopate', sans-serif;
}

/* Reset & Global */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-secondary);
  color: var(--text-color);
  overflow-x: hidden;
  position: relative;
}

/* Ambient Grids & Orbs */
.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center;
  z-index: 0;
  pointer-events: none;
}

.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  animation: orb-bounce 12s infinite ease-in-out alternate;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--brand-accent);
  top: -100px;
  left: -100px;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: var(--brand-yellow);
  bottom: -150px;
  right: -150px;
  animation-delay: -4s;
}

.grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

.interactive-grid-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  background: transparent;
}

/* App shell container to stay above fixed canvas elements */
.app-wrapper {
  position: relative;
  z-index: 1;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography & Headers */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-color);
}

.section-title {
  font-size: 3.8rem;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  display: block;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #ffffff 30%, var(--brand-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(2px 2px 0px #000000) drop-shadow(4px 4px 0px rgba(0, 255, 136, 0.4));
}

.section-subtitle {
  font-size: 1.25rem;
  text-align: center;
  max-width: 700px;
  margin: -35px auto 55px auto;
  font-weight: 500;
  color: var(--text-muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 20px;
  background-color: transparent;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(0, 8, 20, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1.5px solid rgba(0, 255, 136, 0.35);
  border-radius: 9999px;
  padding: 10px 14px 10px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 
    0 0 1px rgba(0, 255, 136, 0.3),
    0 10px 40px rgba(0, 0, 0, 0.65), 
    inset 0 1px 1px rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-container:hover {
  border-color: rgba(0, 255, 136, 0.6);
  box-shadow: 
    0 0 20px rgba(0, 255, 136, 0.15),
    0 10px 40px rgba(0, 0, 0, 0.7);
}

.header-social-link-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-left: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.header-social-link-top:hover {
  background: #000000;
  color: var(--brand-accent);
  border-color: var(--brand-accent);
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.header-social-svg {
  width: 18px;
  height: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.1;
  transition: transform 0.3s ease;
}

.brand:hover {
  transform: scale(1.02);
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--brand-accent);
  object-fit: cover;
  animation: float 4s infinite ease-in-out;
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.4);
}

.brand-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.brand-arc {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  opacity: 0.95;
}

.brand-pepe {
  background: linear-gradient(90deg, var(--brand-accent) 0%, #00e5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.nav-menu {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: 0.05em;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 8px;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--brand-accent);
  background: rgba(0, 255, 136, 0.06);
  box-shadow: inset 0 0 10px rgba(0, 255, 136, 0.08);
}

/* Premium Web3 Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 12px 28px;
  border: var(--border-width) solid var(--border-color);
  border-radius: 30px;
  text-decoration: none;
  color: var(--text-color);
  background-color: var(--bg-primary);
  box-shadow: var(--button-shadow);
  transform: translate(0, 0);
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.button:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0px #000000;
  background-color: var(--brand-color);
  border-color: var(--brand-yellow);
}

.button:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px #000000;
}

.btn-buy-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #00ff88 0%, #00e5ff 100%);
  border: 1.5px solid #000814;
  box-shadow: 
    0 0 15px rgba(0, 255, 136, 0.35),
    0 4px 10px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translate(0, 0) !important;
  cursor: pointer;
  height: 48px;
}

.btn-buy-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.62rem;
  line-height: 1.1;
  color: #000814;
  letter-spacing: 0.03em;
}

.btn-buy-text span {
  display: block;
}

.btn-buy-nav:hover {
  background: linear-gradient(135deg, #00e5ff 0%, #00ff88 100%);
  box-shadow: 
    0 0 25px rgba(0, 229, 255, 0.6), 
    0 6px 15px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px) !important;
  border-color: #000814;
}

.btn-buy-nav:active {
  transform: translateY(1px) !important;
  box-shadow: 
    0 0 12px rgba(0, 255, 136, 0.4), 
    0 2px 6px rgba(0, 0, 0, 0.3) !important;
}

.btn-primary {
  background-color: var(--brand-accent);
  color: #000814;
  border-color: #000000;
  padding: 16px 36px;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  background-color: var(--brand-yellow);
}

.btn-secondary {
  background-color: rgba(255,255,255,0.03);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-color);
  padding: 16px 36px;
  font-size: 1.2rem;
}

.btn-secondary:hover {
  border-color: var(--brand-accent);
  background-color: rgba(0, 255, 136, 0.02);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  overflow: hidden;
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.sunburst-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250vw;
  height: 250vh;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center, rgba(0, 255, 136, 0.08) 0%, rgba(0, 8, 20, 0) 65%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-title {
  font-size: 7.5rem;
  line-height: 0.95;
  background: linear-gradient(to bottom, #ffffff 40%, var(--brand-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(3px 3px 0px #000000) drop-shadow(6px 6px 0px rgba(0, 255, 136, 0.3));
  margin-bottom: 30px;
  letter-spacing: -0.04em;
}

.mascot-container {
  width: 250px;
  height: 250px;
  margin: 0 auto 35px auto;
  border: 3px solid rgba(0, 255, 136, 0.3);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.2) 0%, rgba(0, 18, 44, 0.8) 100%);
  box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 25px rgba(0, 255, 136, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: float 5s infinite ease-in-out;
  transition: border-color 0.3s ease;
}

.mascot-container:hover {
  border-color: var(--brand-accent);
}

.mascot-img {
  width: 90%;
  height: 90%;
  object-fit: cover;
  border-radius: 50%;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 35px;
}

/* CA Copy Pill */
.ca-pill-container {
  display: inline-block;
  position: relative;
}

.ca-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: rgba(0, 18, 44, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-color);
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  cursor: pointer;
  transition: all 0.2s ease;
}

.ca-pill:hover {
  border-color: var(--brand-accent);
  background-color: rgba(0, 30, 71, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 255, 136, 0.15);
}

.ca-pill:active {
  transform: translateY(1px);
}

.ca-label {
  color: var(--brand-accent);
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

.copy-icon {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.ca-pill:hover .copy-icon {
  color: var(--brand-accent);
}

.copy-toast {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  background-color: var(--brand-accent);
  color: #000814;
  padding: 8px 18px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.copy-toast.show {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* Marquee Scrolling Banner */
.marquee-banner {
  background-color: var(--bg-primary);
  border-top: 1.5px solid rgba(255,255,255,0.05);
  border-bottom: 1.5px solid rgba(255,255,255,0.05);
  padding: 18px 0;
  overflow: hidden;
  display: flex;
  position: relative;
  z-index: 5;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

.marquee-content span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-color);
  padding: 0 35px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.85;
  display: flex;
  align-items: center;
}

.marquee-reverse {
  background-color: rgba(0, 255, 136, 0.04);
  border-top: 1px dashed rgba(0, 255, 136, 0.2);
  border-bottom: 1px dashed rgba(0, 255, 136, 0.2);
}

.marquee-reverse .marquee-content span {
  color: var(--brand-accent);
  opacity: 1;
}

/* General Sections */
.section {
  padding: 110px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  background-color: transparent;
}

/* About Us Section with Glassmorphism Card */
.about-card {
  max-width: 950px;
  margin: 0 auto;
  background: var(--white);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.07);
  border-radius: 28px;
  padding: 45px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 45px;
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 136, 0.15);
  box-shadow: 0 25px 50px rgba(0, 255, 136, 0.03), 0 20px 45px rgba(0,0,0,0.5);
}

.about-icon {
  font-size: 4.5rem;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 18, 44, 0.5) 100%);
  border: 2px solid rgba(0, 255, 136, 0.25);
  border-radius: 24px;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  flex-shrink: 0;
  overflow: hidden;
}

.about-logo-img {
  width: 85%;
  height: 85%;
  border-radius: 18px;
  object-fit: cover;
  animation: float 4s infinite ease-in-out;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.25);
}

.about-text {
  font-size: 1.25rem;
  line-height: 1.75;
  font-weight: 400;
  color: var(--text-color);
}

.about-text strong {
  color: var(--brand-accent);
  font-weight: 600;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--brand-color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(0, 255, 136, 0.1);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 136, 0.35);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.05), 0 15px 35px rgba(0,0,0,0.4);
}

.feature-card h3 {
  font-size: 1.7rem;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-card-emoji {
  font-size: 2.1rem;
  display: inline-block;
  animation: float 4s infinite ease-in-out;
  filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.25));
}

.feature-card:nth-child(1) .feature-card-emoji {
  animation-delay: 0s;
  filter: drop-shadow(0 0 12px rgba(0, 255, 136, 0.45));
}

.feature-card:nth-child(2) .feature-card-emoji {
  animation-delay: 0.8s;
  filter: drop-shadow(0 0 12px rgba(255, 80, 80, 0.45));
}

.feature-card:nth-child(3) .feature-card-emoji {
  animation-delay: 1.6s;
  filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.45));
}

.feature-card:nth-child(4) .feature-card-emoji {
  animation-delay: 2.4s;
  filter: drop-shadow(0 0 12px rgba(255, 180, 0, 0.45));
}

.feature-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Tokenomics Section */
.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.tokenomics-card {
  background: var(--white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tokenomics-card:hover {
  transform: translateY(-8px) scale(1.03) !important;
  border-color: var(--brand-accent);
  box-shadow: 0 22px 45px rgba(0, 255, 136, 0.06), 0 15px 35px rgba(0,0,0,0.4);
  background: rgba(0, 30, 71, 0.8);
}

.tokenomics-emoji {
  font-size: 2.8rem;
  margin-bottom: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  animation: float 4s infinite ease-in-out;
  filter: drop-shadow(0 0 12px rgba(0, 255, 136, 0.35));
}

.tokenomics-card:nth-child(1) .tokenomics-emoji {
  animation-delay: 0s;
  filter: drop-shadow(0 0 15px rgba(0, 229, 255, 0.45));
}

.tokenomics-card:nth-child(2) .tokenomics-emoji {
  animation-delay: 0.8s;
  filter: drop-shadow(0 0 15px rgba(255, 230, 0, 0.45));
}

.tokenomics-card:nth-child(3) .tokenomics-emoji {
  animation-delay: 1.6s;
  filter: drop-shadow(0 0 15px rgba(255, 80, 80, 0.45));
}

.tokenomics-card:nth-child(4) .tokenomics-emoji {
  animation-delay: 2.4s;
  filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.45));
}

.tokenomics-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tokenomics-val {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--brand-accent);
  letter-spacing: -0.02em;
}

/* Sleek Comic Angle Rotations */
.tilt-left { transform: rotate(-2deg); }
.tilt-right { transform: rotate(2deg); }
.tilt-left-small { transform: rotate(-1deg); }
.tilt-right-small { transform: rotate(1deg); }

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.gallery-card {
  background: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-8px) rotate(1deg);
  border-color: rgba(0, 255, 136, 0.3);
  box-shadow: 0 25px 45px rgba(0, 255, 136, 0.04), 0 15px 35px rgba(0,0,0,0.4);
}

.gallery-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.05);
}

.gallery-caption {
  padding: 18px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  background-color: rgba(0, 18, 44, 0.4);
  color: var(--text-muted);
}

.gallery-card:hover .gallery-caption {
  color: var(--text-color);
}

/* ARC Chain Simulator Section */
.simulator-card {
  max-width: 850px;
  margin: 0 auto;
  background: var(--white);
  border: 1.5px solid rgba(0, 255, 136, 0.2);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.simulator-header {
  background-color: #040810;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.05);
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dots .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.window-dots .dot.red { background-color: #ef4444; }
.window-dots .dot.yellow { background-color: #f59e0b; }
.window-dots .dot.green { background-color: #10b981; }

.window-title {
  color: var(--text-muted);
  font-family: monospace;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.simulator-body {
  background-color: #02050b;
  padding: 30px;
  font-family: 'Courier New', Courier, monospace;
}

.terminal-output {
  height: 240px;
  overflow-y: auto;
  margin-bottom: 25px;
  padding-right: 10px;
}

.terminal-line {
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  word-break: break-all;
}

.system-line {
  color: rgba(0, 255, 136, 0.7);
}

.cmd-line {
  color: #ffffff;
}

.success-line {
  color: var(--brand-yellow);
  font-weight: bold;
}

.info-line {
  color: #38bdf8;
}

.terminal-input-row {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 25px;
}

.terminal-prompt {
  color: var(--brand-accent);
  font-weight: bold;
}

.terminal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button-terminal {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-color);
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 8px;
  box-shadow: none;
  font-family: var(--font-heading);
  font-weight: 700;
  transition: all 0.2s ease;
}

.button-terminal:hover {
  transform: translateY(-2px);
  border-color: var(--brand-accent);
  color: var(--brand-accent);
  background-color: rgba(0, 255, 136, 0.03);
}

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

.btn-clear {
  border-color: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.btn-clear:hover {
  border-color: #ef4444;
  color: #ef4444;
  background-color: rgba(239, 68, 68, 0.03);
}

/* Scrollbar styling for terminal */
.terminal-output::-webkit-scrollbar {
  width: 6px;
}

.terminal-output::-webkit-scrollbar-track {
  background: transparent;
}

.terminal-output::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 10px;
}

.terminal-output::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

/* Footer */
.site-footer {
  background-color: #02060c;
  color: var(--text-color);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 20px 30px 20px;
  position: relative;
  z-index: 5;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-left {
  max-width: 480px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.2rem;
  display: block;
  margin-bottom: 15px;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, #ffffff, var(--brand-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-left p {
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 500;
  color: var(--text-muted);
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-social-link {
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-color);
  transition: all 0.2s ease;
  display: inline-block;
  letter-spacing: 0.05em;
}

.footer-social-link:hover {
  transform: translateX(4px);
  color: var(--brand-accent);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 25px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  opacity: 0.6;
  color: var(--text-muted);
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

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

@keyframes orb-bounce {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 30px) scale(1.1); }
}

@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes marquee-reverse {
  0% { transform: translate3d(-50%, 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

/* Responsive design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 5.5rem;
  }
  .tokenomics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 10px;
  }
  .header-container {
    padding: 8px 20px;
    border-radius: 30px;
  }
  .nav-menu {
    display: none; /* Hide standard nav on mobile */
  }
  .btn-buy-nav {
    display: none;
  }
  .hero-title {
    font-size: 4rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .button {
    width: 100%;
    max-width: 300px;
  }
  .about-card {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }
  .about-icon {
    font-size: 3.5rem;
    padding: 10px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .tokenomics-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 2.6rem;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
}
