/* MOLTCORE - Industrial Hardcore Style */

:root {
  --core-bg: #1a1a1a;
  --core-surface: #2c2c2c;
  --core-border: #3a3a3a;
  --core-accent: #0070f3;
  --core-accent-glow: #00a0ff;
  --core-text: #e0e0e0;
  --core-text-muted: #888888;
  --core-success: #00c853;
  --core-warning: #ffd600;
}

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

body {
  font-family: 'Chakra Petch', 'Noto Sans SC', sans-serif;
  background: var(--core-bg);
  color: var(--core-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--core-border);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  color: var(--core-accent);
  border-radius: 8px;
  object-fit: contain;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--core-text);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--core-text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--core-surface);
  border: 1px solid var(--core-border);
  color: var(--core-text);
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-switch:hover {
  border-color: var(--core-accent);
}

.lang-separator {
  color: var(--core-text-muted);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--core-text);
  transition: all 0.3s ease;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--core-bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mobile-nav-links a {
  color: var(--core-text);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mobile-lang-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--core-surface);
  border: 1px solid var(--core-border);
  color: var(--core-text);
  font-family: inherit;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 2rem 80px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

#networkCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 112, 243, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(0, 200, 83, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(0, 112, 243, 0.1);
  border: 1px solid rgba(0, 112, 243, 0.3);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--core-accent);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.badge-icon {
  width: 20px;
  height: 20px;
  color: var(--core-accent);
}

.badge-icon svg {
  width: 100%;
  height: 100%;
}

.hero-title {
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--core-text);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.title-sub {
  display: block;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 500;
  color: var(--core-text-muted);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-tagline {
  font-size: 1.25rem;
  color: var(--core-text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-core {
  background: linear-gradient(180deg, #3a3a3a, #2c2c2c);
  border: 2px solid #4a4a4a;
  color: var(--core-text);
  box-shadow: 0 4px 0 #1a1a1a, inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-core:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #1a1a1a, inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-core:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #1a1a1a, inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--core-accent), #0051cc);
  border-color: var(--core-accent);
  color: white;
  box-shadow: 0 4px 0 #003d99, inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 6px 0 #003d99, inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
  box-shadow: 0 2px 0 #003d99, inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-shine {
  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 ease;
}

.btn:hover .btn-shine {
  left: 100%;
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  background: rgba(44, 44, 44, 0.5);
  border: 1px solid var(--core-border);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

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

.stat-value {
  font-family: 'Roboto Mono', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: var(--core-accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--core-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--core-border);
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(0, 112, 243, 0.1);
  border: 1px solid rgba(0, 112, 243, 0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--core-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--core-text);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--core-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Core Value Section */
.core-value {
  padding: 8rem 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.core-value::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(0, 112, 243, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 112, 243, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.core-towers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.core-towers.reverse {
  direction: rtl;
}

.core-towers.reverse>* {
  direction: ltr;
}

.tower {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.tower-base {
  width: 200px;
  height: 40px;
  background: linear-gradient(180deg, #3a3a3a, #2c2c2c);
  border: 2px solid #4a4a4a;
  border-radius: 4px;
  box-shadow: 0 4px 0 #1a1a1a, inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.tower-level {
  width: 160px;
  height: 60px;
  background: linear-gradient(180deg, #4a4a4a, #3a3a3a);
  border: 2px solid #5a5a5a;
  border-radius: 4px;
  margin-bottom: -10px;
  box-shadow: 0 4px 0 #2a2a2a, inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.tower-level::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(0, 112, 243, 0.5);
  transform: translateY(-50%);
  box-shadow: 0 0 10px rgba(0, 112, 243, 0.5);
}

.tower-level.level-1 {
  width: 140px;
}

.tower-level.level-2 {
  width: 120px;
}

.tower-level.level-3 {
  width: 100px;
}

.tower-core {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
  border: 3px solid var(--core-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: -20px;
  box-shadow:
    0 0 30px rgba(0, 112, 243, 0.3),
    inset 0 2px 10px rgba(255, 255, 255, 0.1);
}

.core-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(0, 112, 243, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.tower-icon {
  width: 40px;
  height: 40px;
  color: var(--core-accent);
}

.tower-info {
  padding: 2rem;
}

.info-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(0, 112, 243, 0.1);
  border: 1px solid rgba(0, 112, 243, 0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--core-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.info-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--core-text);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.info-desc {
  font-size: 1.1rem;
  color: var(--core-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.info-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.info-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--core-text-muted);
  line-height: 1.5;
}

.info-features li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--core-accent);
  font-weight: bold;
}

.info-stats {
  display: flex;
  gap: 2rem;
}

.info-stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--core-accent);
}

.info-stat .stat-label {
  font-size: 0.8rem;
  color: var(--core-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* Network Section */
.network {
  padding: 8rem 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #252525 50%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.network::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(0, 112, 243, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0, 200, 83, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.network-dashboard {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}

.dashboard-map {
  position: relative;
  height: 500px;
  background: var(--core-surface);
  border: 2px solid var(--core-border);
  border-radius: 12px;
  overflow: hidden;
}

#mapCanvas {
  width: 100%;
  height: 100%;
}

.map-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 200, 83, 0.1);
  border: 1px solid rgba(0, 200, 83, 0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--core-success);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--core-success);
  border-radius: 50%;
  animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.4);
  }

  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 8px rgba(0, 200, 83, 0);
  }
}

.dashboard-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--core-surface);
  border: 1px solid var(--core-border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

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

.stat-card.highlight {
  border-color: var(--core-success);
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.1), var(--core-surface));
}

.stat-card.highlight:hover {
  border-color: var(--core-success);
}

.stat-icon {
  width: 48px;
  height: 48px;
  color: var(--core-accent);
  flex-shrink: 0;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
}

.stat-card.highlight .stat-icon {
  color: var(--core-success);
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-value-large {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--core-accent);
  line-height: 1;
}

.stat-value-large.text-success {
  color: var(--core-success);
}

.stat-unit {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.875rem;
  color: var(--core-text-muted);
  margin-left: 0.25rem;
}

.stat-label-large {
  font-size: 0.8rem;
  color: var(--core-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* Staking Section */
.staking {
  padding: 8rem 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #252525 50%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.staking::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(0, 112, 243, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.staking-calculator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.calculator-inputs {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.input-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--core-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper input {
  width: 100%;
  padding: 1rem 5rem 1rem 1rem;
  background: var(--core-surface);
  border: 2px solid var(--core-border);
  border-radius: 8px;
  font-family: 'Roboto Mono', monospace;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--core-text);
  transition: all 0.3s ease;
}

.input-wrapper input:focus {
  outline: none;
  border-color: var(--core-accent);
  box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.1);
}

.input-unit {
  position: absolute;
  right: 1rem;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.875rem;
  color: var(--core-text-muted);
  pointer-events: none;
}

.input-presets {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.preset-btn {
  padding: 0.5rem 1rem;
  background: var(--core-surface);
  border: 1px solid var(--core-border);
  border-radius: 6px;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--core-text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.preset-btn:hover {
  border-color: var(--core-accent);
  color: var(--core-accent);
}

.preset-btn.active {
  background: var(--core-accent);
  border-color: var(--core-accent);
  color: white;
}

.duration-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.duration-option {
  cursor: pointer;
}

.duration-option input {
  display: none;
}

.option-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background: var(--core-surface);
  border: 2px solid var(--core-border);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.duration-option:hover .option-box {
  border-color: var(--core-accent);
}

.duration-option input:checked+.option-box {
  background: rgba(0, 112, 243, 0.1);
  border-color: var(--core-accent);
  box-shadow: 0 0 20px rgba(0, 112, 243, 0.2);
}

.option-value {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--core-text);
}

.option-unit {
  font-size: 0.75rem;
  color: var(--core-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.calculator-results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.result-card {
  padding: 1.5rem;
  background: var(--core-surface);
  border: 1px solid var(--core-border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.result-card:hover {
  border-color: var(--core-accent);
  transform: translateY(-2px);
}

.result-card.primary {
  background: linear-gradient(135deg, rgba(0, 112, 243, 0.1), var(--core-surface));
  border-color: var(--core-accent);
}

.result-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--core-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.result-value {
  font-family: 'Roboto Mono', monospace;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--core-accent);
  line-height: 1;
}

.result-card.primary .result-value {
  font-size: 3rem;
}

.result-unit {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.875rem;
  color: var(--core-text-muted);
}

/* Staking Coming Soon Overlay */
.staking-calculator-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.coming-soon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(8px);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 2px solid var(--core-border);
}

.coming-soon-content {
  text-align: center;
  padding: 3rem;
}

.coming-soon-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  color: var(--core-accent);
  animation: pulse-icon 2s ease-in-out infinite;
}

.coming-soon-icon svg {
  width: 100%;
  height: 100%;
}

@keyframes pulse-icon {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.coming-soon-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--core-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(0, 112, 243, 0.5);
}

.coming-soon-desc {
  font-size: 1.1rem;
  color: var(--core-text-muted);
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.6;
}

.staking-calculator.disabled {
  pointer-events: none;
  filter: blur(2px);
  opacity: 0.4;
}

/* Community Section */
.community {
  padding: 8rem 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #252525 100%);
  position: relative;
  overflow: hidden;
}

.community-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.community-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: var(--core-surface);
  border: 2px solid var(--core-border);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 140px;
}

.community-link:hover {
  background: rgba(0, 112, 243, 0.05);
  border-color: var(--core-accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 112, 243, 0.1);
}

.link-icon {
  width: 48px;
  height: 48px;
  color: var(--core-accent);
  transition: transform 0.3s ease;
}

.community-link:hover .link-icon {
  transform: scale(1.1);
}

.link-icon svg {
  width: 100%;
  height: 100%;
}

.link-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--core-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Footer */
.footer {
  padding: 4rem 0 2rem;
  background: #0f0f0f;
  border-top: 1px solid var(--core-border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  gap: 4rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo .logo-icon {
  width: 32px;
  height: 32px;
  color: var(--core-accent);
}

.footer-logo .logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--core-text);
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--core-text-muted);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-group h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--core-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.footer-links-group a {
  font-size: 0.9rem;
  color: var(--core-text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links-group a:hover {
  color: var(--core-accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--core-border);
}

.copyright {
  font-size: 0.85rem;
  color: var(--core-text-muted);
}

.footer-built {
  font-size: 0.85rem;
  color: var(--core-text-muted);
  font-style: italic;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-divider {
    width: 100%;
    height: 1px;
  }

  .core-towers {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .core-towers.reverse {
    direction: ltr;
  }

  .network-dashboard {
    grid-template-columns: 1fr;
  }

  .staking-calculator {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .nav-container {
    padding: 1rem;
  }

  .hero {
    padding: 100px 1rem 60px;
  }

  .title-line {
    font-size: 2.5rem;
  }

  .title-sub {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .duration-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .community-links {
    gap: 1rem;
  }

  .community-link {
    min-width: 120px;
    padding: 1.5rem;
  }
}

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

::-webkit-scrollbar-track {
  background: var(--core-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--core-border);
  border-radius: 4px;
}

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