@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Colors */
  --bg-color: #060608;
  --bg-panel: rgba(18, 18, 28, 0.65);
  --bg-card: rgba(26, 26, 38, 0.45);
  --border-color: rgba(204, 0, 44, 0.2);
  --border-focus: rgba(204, 0, 44, 0.5);
  
  --accent-color: #cc002c; /* TJ Maxx Red */
  --accent-hover: #ff1a4a;
  --accent-glow: rgba(204, 0, 44, 0.4);
  
  --solana-green: #14f195;
  --solana-purple: #9945ff;
  --solana-gradient: linear-gradient(90deg, #9945ff 0%, #14f195 100%);
  
  --text-primary: #ffffff;
  --text-secondary: #9aa0b5;
  --text-muted: #5e6475;
  
  --gold: #ffbe1a;
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --neon-shadow: 0 0 15px var(--accent-glow);
  
  /* Fonts */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout */
  --max-width: 1280px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Background Gradients */
.background-glows {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.15;
}

.glow-orb-1 {
  top: -10%;
  right: 10%;
  width: 500px;
  height: 500px;
  background-color: var(--accent-color);
}

.glow-orb-2 {
  top: 40%;
  left: -10%;
  width: 600px;
  height: 600px;
  background-color: var(--solana-purple);
}

.glow-orb-3 {
  bottom: 10%;
  right: -5%;
  width: 450px;
  height: 450px;
  background-color: var(--solana-green);
}

/* Typography & Headers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 30%, #ff6b8b 70%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.solana-text {
  background: var(--solana-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  color: var(--text-secondary);
}

a {
  color: inherit;
  text-decoration: none;
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(6, 6, 8, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-headings);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.logo:hover {
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
}

.logo img {
  display: block;
}

.logo span {
  color: var(--accent-color);
  font-weight: 900;
  text-shadow: 0 0 15px rgba(204, 0, 44, 0.6);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a.active {
  color: var(--accent-color);
}

.btn-header {
  background: linear-gradient(135deg, var(--accent-color) 0%, #a30022 100%);
  color: white;
  padding: 10px 20px;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(204, 0, 44, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204, 0, 44, 0.4);
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent-color) 100%);
}

/* Hero Section */
.hero {
  padding-top: 180px;
  padding-bottom: 100px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204, 0, 44, 0.1);
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ff4d73;
  margin-bottom: 24px;
}

.badge-solana {
  background: rgba(20, 241, 149, 0.08);
  border: 1px solid rgba(20, 241, 149, 0.2);
  color: var(--solana-green);
}

.hero-title {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 36px;
  max-width: 540px;
}

/* Contract Address Widget */
.ca-widget {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 16px;
  margin-bottom: 40px;
  backdrop-filter: blur(16px);
  box-shadow: var(--glass-shadow);
  max-width: 540px;
}

.ca-label {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
}

.ca-label span:last-child {
  color: var(--solana-green);
}

.ca-box {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--border-radius-sm);
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.ca-value {
  font-family: monospace;
  font-size: 13px;
  color: var(--text-primary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-grow: 1;
  letter-spacing: 0.05em;
}

.btn-copy {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px 12px;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 10px;
}

.btn-copy:hover {
  color: var(--accent-hover);
}

.btn-copy svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Action Buttons */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--border-radius-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, #900018 100%);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px rgba(204, 0, 44, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(204, 0, 44, 0.6);
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent-color) 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Image Visual Containers */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(204, 0, 44, 0.25) 0%, transparent 70%);
  z-index: -1;
  filter: blur(40px);
}

.hero-image-wrapper {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 16px;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(20px);
  max-width: 440px;
  width: 100%;
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-md);
  display: block;
  object-fit: cover;
}

/* Stats Section */
.stats-section {
  padding: 60px 0;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 24px;
  border-radius: var(--border-radius-md);
  text-align: center;
  backdrop-filter: blur(16px);
  box-shadow: var(--glass-shadow);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-color);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.stat-value {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--text-primary);
  font-family: var(--font-headings);
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Section Common Styles */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--accent-color);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* Lore Section */
.lore {
  padding: 100px 0;
  position: relative;
}

.lore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.lore-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-lg);
  padding: 40px 32px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.lore-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-color);
  box-shadow: 0 10px 40px rgba(204, 0, 44, 0.1);
  background: rgba(26, 26, 38, 0.7);
}

.lore-icon-box {
  width: 56px;
  height: 56px;
  background: rgba(204, 0, 44, 0.08);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--accent-color);
}

.lore-icon-box svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.lore-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.lore-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* How to Buy Section */
.how-to-buy {
  padding: 100px 0;
  background: rgba(18, 18, 28, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.step-row {
  display: flex;
  align-items: center;
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 24px 32px;
  border-radius: var(--border-radius-md);
  gap: 28px;
  backdrop-filter: blur(16px);
  box-shadow: var(--glass-shadow);
  transition: all 0.3s ease;
}

.step-row:hover {
  border-color: rgba(20, 241, 149, 0.2);
  transform: translateX(5px);
}

.step-num {
  font-family: var(--font-headings);
  font-size: 38px;
  font-weight: 900;
  color: var(--accent-color);
  background: rgba(204, 0, 44, 0.06);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 14px;
}

.step-content a {
  color: var(--solana-green);
  text-decoration: underline;
}

/* Tokenomics Section */
.tokenomics {
  padding: 100px 0;
  position: relative;
}

.tok-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tok-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.tok-card {
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 28px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}

.tok-card:hover {
  border-color: var(--border-color);
}

.tok-title {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.tok-val {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  font-family: var(--font-headings);
}

.tok-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.tok-pie {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tok-pie-graphic {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: conic-gradient(
    var(--accent-color) 0% 90%, 
    var(--solana-purple) 90% 100%
  );
  box-shadow: 0 0 40px rgba(204, 0, 44, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.tok-pie-inner {
  width: 200px;
  height: 200px;
  background: var(--bg-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
}

.tok-pie-inner h4 {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
}

.tok-pie-inner p {
  font-size: 12px;
  color: var(--text-secondary);
}

/* Meme Gallery Carousel */
.gallery {
  padding: 100px 0;
  position: relative;
}

.carousel-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  padding: 10px 0;
}

.carousel-track {
  display: flex;
  transition: transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
  gap: 24px;
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 calc(33.333% - 16px);
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  aspect-ratio: 3 / 4; /* Vertical card layout to fit screenshots */
  background: rgba(10, 10, 15, 0.85);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Show the entire screenshot without cropping */
  transition: transform 0.5s ease;
  display: block;
  background-color: rgba(0, 0, 0, 0.4);
}

.carousel-slide:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 8px 30px rgba(204, 0, 44, 0.25);
}

.carousel-slide:hover img {
  transform: scale(1.04);
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 20px;
  color: white;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 14px;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.carousel-slide:hover .carousel-caption {
  transform: translateY(0);
  opacity: 1;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(8px);
}

.carousel-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
  box-shadow: 0 4px 15px var(--accent-glow);
}

.prev-btn {
  left: -10px;
}

.next-btn {
  right: -10px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
  flex-wrap: wrap;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.carousel-dot.active {
  background: var(--accent-color);
  transform: scale(1.3);
  box-shadow: 0 0 8px var(--accent-glow);
}

/* Roadmap */
.roadmap {
  padding: 100px 0;
  position: relative;
}

.roadmap-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
}

.roadmap-node {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  position: relative;
}

.roadmap-node:nth-child(even) {
  flex-direction: row-reverse;
}

.roadmap-card {
  width: 45%;
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-md);
  padding: 30px;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(16px);
  position: relative;
  transition: border-color 0.3s ease;
}

.roadmap-card:hover {
  border-color: var(--border-color);
}

.roadmap-dot {
  position: absolute;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-color);
  border: 4px solid var(--bg-color);
  box-shadow: 0 0 10px var(--accent-color);
  z-index: 2;
}

.roadmap-phase {
  font-family: var(--font-headings);
  font-size: 12px;
  text-transform: uppercase;
  color: var(--accent-color);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.roadmap-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.roadmap-card ul {
  list-style: none;
  font-size: 14px;
  color: var(--text-secondary);
}

.roadmap-card li {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.roadmap-card li::before {
  content: '✓';
  color: var(--solana-green);
  font-weight: bold;
}

/* Footer */
footer {
  background: #040406;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 0 30px 0;
}

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

.socials {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-sm);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.social-link:hover {
  background: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px var(--accent-glow);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.03);
  margin-bottom: 30px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 20px;
}

.disclaimer {
  max-width: 750px;
  font-size: 12px;
  line-height: 1.5;
}

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

/* Click Confetti particle */
.click-particle {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  width: 20px;
  height: 20px;
  opacity: 1;
  animation: explode 0.8s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

@keyframes explode {
  0% {
    transform: translate(-50%, -50%) scale(0.3) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translate(var(--tx), var(--ty)) scale(1) rotate(var(--rot));
    opacity: 0;
  }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-title {
    font-size: 48px;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .ca-widget {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual {
    order: -1;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lore-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .tok-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tok-info {
    order: 1;
  }
  .carousel-slide {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .roadmap-timeline::before {
    left: 20px;
  }
  .roadmap-node {
    flex-direction: row !important;
  }
  .roadmap-card {
    width: calc(100% - 50px);
    margin-left: 50px;
  }
  .roadmap-dot {
    left: 20px;
    transform: translateX(-50%);
  }
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .carousel-slide {
    flex: 0 0 100%;
  }
  .carousel-container {
    padding: 0 10px;
  }
  .carousel-btn {
    display: none;
  }
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 6, 8, 0.94);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.lightbox-caption-modal {
  margin-top: 15px;
  color: var(--text-primary);
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  background: transparent;
  border: none;
  color: white;
  font-size: 44px;
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 36px;
  }
  .hero-title {
    font-size: 38px;
  }
  .ca-box {
    padding: 6px 8px;
  }
  .ca-value {
    font-size: 11px;
  }
  .btn-copy {
    padding: 4px 8px;
    font-size: 10px;
  }
}
