/* ===================================
   Modern Professional Dark-Blue Theme
   Tech-Focused, Trust & Security
   =================================== */

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

:root {
  /* Primary Dark Blue Palette */
  --primary-dark: #0a192f;
  --primary-blue: #1e3a5f;
  --primary-blue-light: #2d5a8c;
  --accent-blue: #64ffda;
  --accent-cyan: #5eead4;
  
  /* Secondary Colors */
  --secondary-blue: #112240;
  --secondary-slate: #1a2d47;
  --tertiary-blue: #233554;
  
  /* Text Colors */
  --text-primary: #e6f1ff;
  --text-secondary: #8892b0;
  --text-muted: #64748b;
  --text-dark: #0f172a;
  
  /* Background Colors */
  --bg-primary: #0a192f;
  --bg-secondary: #112240;
  --bg-card: #1a2d47;
  --bg-card-hover: #233554;
  --bg-light: #f8fafc;
  --bg-light-secondary: #f1f5f9;
  
  /* Accent Colors */
  --accent-electric: #60a5fa;
  --accent-success: #34d399;
  --accent-warning: #fbbf24;
  --accent-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  
  /* Border & Shadows */
  --border-color: #2d5a8c;
  --border-light: #e2e8f0;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 20px rgba(100, 255, 218, 0.3);
  --shadow-glow-strong: 0 0 30px rgba(100, 255, 218, 0.5);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ===================================
   Navigation
   =================================== */
nav {
  background: rgba(10, 25, 47, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

nav .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-cyan);
  text-decoration: none;
  transition: all 0.3s ease;
}

nav .logo:hover {
  color: var(--accent-blue);
  text-shadow: var(--shadow-glow);
}

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

nav .nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

nav .nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-cyan);
  transition: width 0.3s ease;
}

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

nav .nav-links a:hover::after {
  width: 100%;
}

/* ===================================
   Header / Hero Section
   =================================== */
header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 50%, var(--primary-blue-light) 100%);
  color: var(--text-primary);
  padding: 100px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--accent-cyan);
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(100, 255, 218, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(100, 165, 250, 0.05) 0%, transparent 50%);
  opacity: 0.5;
}

header .container {
  position: relative;
  z-index: 1;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-electric) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(100, 255, 218, 0.3);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 35px;
  color: var(--accent-cyan);
  position: relative;
  padding-bottom: 15px;
  font-weight: 600;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-electric));
  border-radius: 2px;
  box-shadow: 0 0 10px var(--accent-cyan);
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--text-primary);
  font-weight: 600;
}

h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--accent-electric);
  font-weight: 600;
}

.subtitle,
.tagline {
  font-size: 1.5rem;
  margin-bottom: 15px;
  opacity: 0.95;
  font-weight: 300;
  color: var(--text-secondary);
}

.location {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 25px;
  color: var(--text-secondary);
}

.hero-description {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 40px;
  opacity: 0.9;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ===================================
   Buttons & CTAs
   =================================== */
.social-links,
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.social-links a,
.cta-button {
  padding: 12px 24px;
  background: var(--bg-card);
  border: 2px solid var(--accent-cyan);
  border-radius: 8px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-weight: 600;
  color: var(--accent-cyan);
  text-decoration: none;
  display: inline-block;
}

.social-links a:hover,
.cta-button:hover {
  background: var(--accent-cyan);
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-strong);
}

.cta-primary {
  background: var(--accent-cyan);
  color: var(--primary-dark);
  border-color: var(--accent-cyan);
}

.cta-primary:hover {
  background: transparent;
  color: var(--accent-cyan);
  box-shadow: var(--shadow-glow-strong);
}

.cta-secondary {
  background: transparent;
  border-color: var(--accent-electric);
  color: var(--accent-electric);
}

.cta-secondary:hover {
  background: var(--accent-electric);
  color: var(--primary-dark);
}

/* ===================================
   Stats Bar
   =================================== */
.stats-bar {
  background: var(--bg-secondary);
  color: var(--text-primary);
  padding: 40px 20px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--accent-cyan);
  margin-bottom: 5px;
  text-shadow: var(--shadow-glow);
}

.stat-item p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* ===================================
   Main Content Sections
   =================================== */
section {
  background: var(--bg-secondary);
  margin: 40px auto;
  padding: 60px 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  max-width: 1200px;
  border: 1px solid var(--border-color);
}

section:nth-child(even) {
  background: var(--bg-card);
}

section p {
  color: var(--text-secondary);
  line-height: 1.8;
}

section strong {
  color: var(--text-primary);
}

/* Light sections for contrast */
section.light-section {
  background: var(--bg-light);
  color: var(--text-dark);
}

section.light-section h2,
section.light-section h3,
section.light-section h4 {
  color: var(--primary-blue);
}

section.light-section p,
section.light-section li {
  color: var(--text-muted);
}

section.light-section strong {
  color: var(--primary-dark);
}

/* ===================================
   Feature Cards & Grids
   =================================== */
.feature-grid,
.projects-grid,
.tokenomics-grid,
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.achievement-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.feature-card,
.project-card,
.achievement-card,
.token-card,
.link-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 12px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-electric));
}

.feature-card:hover,
.project-card:hover,
.link-card:hover {
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-glow-strong);
  transform: translateY(-5px);
  background: var(--bg-card-hover);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(100, 255, 218, 0.3));
}

.feature-card h4,
.project-card h4 {
  color: var(--accent-cyan);
  margin-bottom: 15px;
}

.feature-card p,
.project-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

/* Achievement Cards - Professional & Subtle */
.achievement-card {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-left: 4px solid var(--accent-cyan);
  padding: 20px 25px;
  text-align: left;
  box-shadow: var(--shadow);
}

.achievement-card:nth-child(2) {
  border-left-color: var(--accent-electric);
}

.achievement-card:nth-child(3) {
  border-left-color: #0891b2;
}

.achievement-card:nth-child(4) {
  border-left-color: #059669;
}

.achievement-card:nth-child(5) {
  border-left-color: #7c3aed;
}

.achievement-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-cyan);
  box-shadow: 0 8px 16px rgba(100, 255, 218, 0.15);
}

.achievement-card h4 {
  color: var(--accent-cyan);
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 600;
}

.achievement-card:nth-child(2) h4 {
  color: var(--accent-electric);
}

.achievement-card:nth-child(3) h4 {
  color: #06b6d4;
}

.achievement-card:nth-child(4) h4 {
  color: #10b981;
}

.achievement-card:nth-child(5) h4 {
  color: #a78bfa;
}

.achievement-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Token Cards */
.token-card {
  text-align: center;
  color: white;
  border: none;
}

.token-card:nth-child(1) {
  background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8c 100%);
}

.token-card:nth-child(2) {
  background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
}

.token-card:nth-child(3) {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.token-card:nth-child(4) {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.token-card h4 {
  color: white;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.token-card p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  line-height: 1.6;
}

/* ===================================
   Skills Section
   =================================== */
.skills-container {
  display: grid;
  gap: 30px;
  margin-top: 25px;
}

.skill-category {
  background: var(--bg-card);
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid var(--accent-cyan);
  border: 2px solid var(--border-color);
  border-left: 4px solid var(--accent-cyan);
}

.skill-category h4 {
  margin-bottom: 15px;
  color: var(--accent-cyan);
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-tag {
  background: var(--bg-secondary);
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
  font-weight: 500;
}

.skill-tag:hover {
  border-color: var(--accent-cyan);
  background: var(--accent-cyan);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(100, 255, 218, 0.3);
}

/* ===================================
   Timeline (Experience)
   =================================== */
.timeline {
  position: relative;
  padding-left: 40px;
  margin-top: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent-cyan), var(--accent-electric));
  box-shadow: 0 0 10px var(--accent-cyan);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -46px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-cyan);
  border: 3px solid var(--bg-secondary);
  box-shadow: 0 0 0 2px var(--accent-cyan), 0 0 15px var(--accent-cyan);
}

.timeline-date {
  display: inline-block;
  background: var(--accent-electric);
  color: var(--primary-dark);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.timeline-title {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-weight: 600;
}

.timeline-company {
  color: var(--accent-cyan);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.timeline-tech {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.timeline-description {
  color: var(--text-secondary);
  line-height: 1.7;
}

.timeline-description ul {
  margin-left: 20px;
  margin-top: 10px;
}

.timeline-description li {
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.timeline-description strong {
  color: var(--text-primary);
}

/* ===================================
   DEX Section
   =================================== */
.dex-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.dex-feature {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 10px;
  border: 2px solid var(--border-color);
  border-left: 4px solid var(--accent-cyan);
}

.dex-feature h4 {
  color: var(--accent-cyan);
  margin-bottom: 15px;
}

.dex-feature ul {
  list-style: none;
  padding: 0;
}

.dex-feature li {
  padding: 10px 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 25px;
}

.dex-feature li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-success);
  font-weight: bold;
  text-shadow: 0 0 5px var(--accent-success);
}

/* ===================================
   Architecture Visualization
   =================================== */
.architecture-visual {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  border-radius: 12px;
  padding: 40px;
  margin: 30px 0;
  border: 2px solid var(--accent-cyan);
  box-shadow: 0 0 30px rgba(100, 255, 218, 0.2);
}

.layer {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(100, 255, 218, 0.3);
  border-radius: 8px;
  padding: 20px;
  margin: 15px 0;
  transition: all 0.3s ease;
}

.layer:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
}

.layer h4 {
  color: var(--accent-cyan);
  margin-bottom: 10px;
}

.layer p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.layer strong {
  color: white;
}

/* ===================================
   Tables
   =================================== */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  background: var(--bg-card);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.specs-table th,
.specs-table td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.specs-table th {
  background: var(--primary-blue-light);
  color: var(--text-primary);
  font-weight: 600;
}

.specs-table td {
  color: var(--text-secondary);
}

.specs-table td strong {
  color: var(--accent-cyan);
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table tr:hover {
  background: var(--bg-card-hover);
}

/* ===================================
   Info Cards / Grids
   =================================== */
.info-grid,
.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.info-card {
  background: var(--bg-card);
  padding: 25px;
  border-radius: 10px;
  border: 2px solid var(--border-color);
  border-left: 4px solid var(--accent-electric);
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(100, 255, 218, 0.2);
  transform: translateY(-3px);
}

.info-card h4 {
  color: var(--accent-cyan);
  margin-bottom: 10px;
}

.info-card p,
.info-card a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.info-card a {
  color: var(--accent-electric);
  text-decoration: none;
}

.info-card a:hover {
  color: var(--accent-cyan);
  text-decoration: underline;
}

.summary-grid p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  padding: 15px;
  background: var(--bg-card);
  border-radius: 8px;
  border-left: 3px solid var(--accent-cyan);
}

/* ===================================
   Code Blocks
   =================================== */
.code-block {
  background: #0d1117;
  color: #c9d1d9;
  padding: 25px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 20px 0;
  font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  border: 1px solid #30363d;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.code-comment {
  color: #8b949e;
}

.code-keyword {
  color: #ff7b72;
}

.code-function {
  color: #d2a8ff;
}

.code-string {
  color: #a5d6ff;
}

/* ===================================
   Roadmap
   =================================== */
.roadmap {
  position: relative;
  padding-left: 40px;
  margin-top: 30px;
}

.roadmap::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent-cyan), var(--accent-electric));
  box-shadow: 0 0 10px var(--accent-cyan);
}

.roadmap-item {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}

.roadmap-item:last-child {
  border-bottom: none;
}

.roadmap-item::before {
  content: '';
  position: absolute;
  left: -46px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-cyan);
  border: 3px solid var(--bg-secondary);
  box-shadow: 0 0 0 2px var(--accent-cyan), 0 0 15px var(--accent-cyan);
}

.roadmap-phase {
  display: inline-block;
  background: var(--accent-electric);
  color: var(--primary-dark);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.roadmap-item.completed .roadmap-phase {
  background: var(--accent-success);
}

.roadmap-item.in-progress .roadmap-phase {
  background: var(--accent-warning);
}

.roadmap-item h3 {
  color: var(--text-primary);
  margin-bottom: 15px;
}

.roadmap-item ul {
  margin-left: 20px;
  color: var(--text-secondary);
}

.roadmap-item li {
  margin-bottom: 8px;
}

/* ===================================
   Links Grid
   =================================== */
.link-card {
  text-align: center;
  text-decoration: none;
  color: var(--text-primary);
  display: block;
}

.link-card h4 {
  color: var(--accent-cyan);
  margin-bottom: 10px;
}

.link-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ===================================
   Footer
   =================================== */
footer {
  background: var(--primary-dark);
  color: var(--text-primary);
  text-align: center;
  padding: 40px 20px;
  margin-top: 50px;
  border-top: 2px solid var(--accent-cyan);
}

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

footer a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: all 0.3s ease;
}

footer a:hover {
  color: var(--accent-electric);
  text-shadow: 0 0 10px var(--accent-cyan);
}

/* ===================================
   Current Endeavor Section
   =================================== */
.current-endeavor {
  background: var(--bg-secondary);
}

.endeavor-card {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-left: 4px solid var(--accent-cyan);
  border-radius: 10px;
  padding: 35px;
  margin-top: 30px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.endeavor-card:hover {
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.endeavor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.endeavor-header h3 {
  color: var(--accent-cyan);
  font-size: 1.8rem;
  margin: 0;
}

.endeavor-tag {
  background: var(--bg-secondary);
  color: var(--accent-cyan);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid var(--border-color);
  font-weight: 500;
}

.endeavor-description {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.endeavor-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.endeavor-link {
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
  color: var(--text-secondary);
  background: var(--bg-secondary);
}

.endeavor-link.primary {
  background: var(--accent-cyan);
  color: var(--primary-dark);
  border-color: var(--accent-cyan);
}

.endeavor-link:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  transform: translateY(-2px);
}

.endeavor-link.primary:hover {
  background: transparent;
  color: var(--accent-cyan);
}

/* ===================================
   Utility Classes
   =================================== */
.no-underline::after {
  display: none !important;
}

.text-center {
  text-align: center;
}

.mt-large {
  margin-top: 50px;
}

.mb-large {
  margin-bottom: 50px;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .subtitle,
  .tagline {
    font-size: 1.2rem;
  }
  
  section {
    padding: 40px 20px;
    margin: 20px 10px;
  }
  
  .feature-grid,
  .projects-grid,
  .achievement-cards,
  .tokenomics-grid,
  .dex-container,
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline {
    padding-left: 30px;
  }
  
  nav .nav-links {
    flex-direction: column;
    gap: 10px;
  }
  
  .social-links,
  .cta-buttons {
    flex-direction: column;
  }
  
  .social-links a,
  .cta-button {
    display: block;
    text-align: center;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
  }
  
  .endeavor-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .endeavor-card {
    padding: 25px 20px;
  }
  
  .endeavor-links {
    flex-direction: column;
    width: 100%;
  }
  
  .endeavor-link {
    display: block;
    text-align: center;
  }
  
  .architecture-visual {
    padding: 25px 15px;
  }
  
  .code-block {
    font-size: 0.8rem;
    padding: 15px;
  }
}

/* ===================================
   Print Styles
   =================================== */
@media print {
  body {
    background: white;
    color: black;
  }
  
  section {
    box-shadow: none;
    page-break-inside: avoid;
    border: 1px solid #ccc;
  }
  
  header {
    background: var(--primary-blue);
  }
  
  nav,
  footer {
    display: none;
  }
  
  .social-links a,
  .cta-button {
    border-color: #333;
  }
  
  h1, h2, h3, h4 {
    color: var(--primary-dark);
  }
}

/* ===================================
   Smooth Animations
   =================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  animation: fadeIn 0.6s ease-out;
}

/* ===================================
   Scrollbar Styling
   =================================== */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-blue);
  border-radius: 6px;
  border: 2px solid var(--primary-dark);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

