/* ===================================================
   REKERBOOM.UZ - Modern Minecraft "Coming Soon" Theme
   =================================================== */

:root {
  --bg-primary: #07070a;
  --bg-secondary: #0e0e14;
  --bg-card: rgba(18, 16, 22, 0.82);
  --bg-card-hover: rgba(28, 22, 30, 0.9);
  
  --emerald-main: #dc2626;
  --emerald-bright: #ff2a4d;
  --emerald-glow: rgba(255, 42, 77, 0.45);
  
  --cyan-main: #f97316;
  --cyan-glow: rgba(249, 115, 22, 0.4);
  
  --gold-main: #f59e0b;
  --gold-glow: rgba(245, 158, 11, 0.35);

  --purple-main: #9333ea;
  --purple-glow: rgba(147, 51, 234, 0.35);

  --red-main: #ef4444;
  --red-glow: rgba(239, 68, 68, 0.45);

  --text-main: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(255, 42, 77, 0.4);

  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-pixel: 'Press Start 2P', monospace;
  --font-display: 'Space Grotesk', var(--font-main);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

/* Background Canvas & Effects */
#ambient-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
  pointer-events: none;
}

.vignette {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 30%, transparent 40%, rgba(6, 6, 8, 0.92) 100%);
  z-index: 1;
  pointer-events: none;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Typography Helpers */
.accent-text {
  color: var(--emerald-bright);
}

.gradient-text {
  background: linear-gradient(135deg, #ff2a4d 0%, #ff6b4a 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glow-text {
  filter: drop-shadow(0 0 16px var(--emerald-glow));
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 18px 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(7, 7, 10, 0.85);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
}

.brand-icon {
  width: 38px;
  height: 38px;
  background: #000000;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.2);
  overflow: hidden;
  padding: 2px;
}

.brand-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  display: block;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

.brand-tld {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-icon {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-icon:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: none;
  font-family: var(--font-main);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-telegram {
  background: #229ed9;
  color: #ffffff;
}

.btn-telegram:hover {
  background: #2baee5;
  box-shadow: 0 0 16px rgba(34, 158, 217, 0.5);
  transform: translateY(-1px);
}

.btn-discord {
  background: #5865f2;
  color: #ffffff;
}

.btn-discord:hover {
  background: #6a76f5;
  box-shadow: 0 0 16px rgba(88, 101, 242, 0.5);
  transform: translateY(-1px);
}

.btn-glow-discord {
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.4);
}

.btn-youtube {
  background: #cc0000;
  color: #ffffff;
}

.btn-youtube:hover {
  background: #e60000;
  box-shadow: 0 0 16px rgba(230, 0, 0, 0.5);
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #ff2a4d 0%, #dc2626 100%);
  color: #ffffff;
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--emerald-glow);
  filter: brightness(1.1);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(8px);
}

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

/* Main Hero Section */
.hero-section {
  padding: 150px 0 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Status Badge */
.badge-wrapper {
  margin-bottom: 24px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255, 42, 77, 0.12);
  border: 1px solid rgba(255, 42, 77, 0.4);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--emerald-bright);
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--emerald-bright);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--emerald-bright);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

/* 3D Minecraft Cube */
.cube-stage {
  perspective: 900px;
  width: 120px;
  height: 120px;
  margin: 10px auto 30px;
  position: relative;
}

.cube-wrapper {
  width: 90px;
  height: 90px;
  position: absolute;
  top: 15px;
  left: 15px;
  transform-style: preserve-3d;
  animation: floatCube 8s ease-in-out infinite;
  transform: rotateX(-20deg) rotateY(35deg);
  transition: transform 0.2s ease-out;
}

@keyframes floatCube {
  0%, 100% {
    transform: rotateX(-18deg) rotateY(30deg) translateY(0);
  }
  50% {
    transform: rotateX(-22deg) rotateY(210deg) translateY(-14px);
  }
}

.cube-face {
  position: absolute;
  width: 90px;
  height: 90px;
  border: 2px solid rgba(0, 255, 136, 0.4);
  background: rgba(14, 21, 37, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  user-select: none;
  backdrop-filter: blur(4px);
  box-shadow: inset 0 0 16px rgba(0, 255, 136, 0.2);
}

.cube-front  { transform: translateZ(45px); overflow: hidden; background: #000; }
.cube-back   { transform: rotateY(180deg) translateZ(45px); overflow: hidden; background: #000; }
.cube-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  display: block;
}
.cube-right  { 
  transform: rotateY(90deg) translateZ(45px); 
  background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, rgba(14, 21, 37, 0.9) 80%);
  border-color: rgba(6, 182, 212, 0.5);
  box-shadow: inset 0 0 16px rgba(6, 182, 212, 0.25);
}
.cube-left   { 
  transform: rotateY(-90deg) translateZ(45px); 
  background: radial-gradient(circle, rgba(0, 255, 136, 0.25) 0%, rgba(14, 21, 37, 0.9) 80%);
  border-color: rgba(0, 255, 136, 0.5);
  box-shadow: inset 0 0 16px rgba(0, 255, 136, 0.25);
}
.cube-item-img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  filter: drop-shadow(0 0 10px rgba(0, 216, 255, 0.6));
  display: block;
  user-select: none;
  pointer-events: none;
}
.cube-top    { 
  transform: rotateX(90deg) translateZ(45px);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.9) 0%, rgba(153, 27, 27, 0.95) 100%);
  border-color: #ff3344;
  box-shadow: inset 0 0 16px rgba(255, 42, 77, 0.4);
}
.cube-bottom { 
  transform: rotateX(-90deg) translateZ(45px); 
  background: #110507;
}

.cube-symbol {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--emerald-bright);
  text-shadow: 0 0 10px var(--emerald-glow);
}

.cube-shadow {
  position: absolute;
  bottom: -20px;
  left: 20px;
  width: 80px;
  height: 18px;
  background: radial-gradient(ellipse at center, rgba(255, 42, 77, 0.35) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(4px);
  animation: shadowPulse 8s ease-in-out infinite;
}

@keyframes shadowPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(0.8); opacity: 0.3; }
}

/* Titles */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 36px;
}

.hero-subtitle strong {
  color: var(--emerald-bright);
}

/* IP Card */
.ip-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 255, 136, 0.12);
  border-radius: var(--radius-lg);
  padding: 14px 22px;
  width: 100%;
  max-width: 540px;
  margin-bottom: 30px;
  backdrop-filter: blur(14px);
  transition: all 0.3s ease;
}

.ip-card:hover {
  border-color: var(--emerald-bright);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.5), 0 0 28px rgba(0, 255, 136, 0.25);
  transform: translateY(-2px);
}

.ip-card-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.ip-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.8px;
}

.ip-address-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ip-code {
  font-family: var(--font-pixel);
  font-size: 1.15rem;
  color: var(--emerald-bright);
  letter-spacing: 0.5px;
}

.version-badge {
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
}

.btn-copy {
  background: rgba(0, 255, 136, 0.15);
  color: var(--emerald-bright);
  border: 1px solid rgba(0, 255, 136, 0.4);
  padding: 10px 18px;
}

.btn-copy:hover {
  background: var(--emerald-bright);
  color: #ffffff;
  box-shadow: 0 0 16px var(--emerald-glow);
}

/* Countdown Card */
.countdown-card {
  background: rgba(18, 16, 22, 0.75);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 100%;
  max-width: 540px;
  margin-bottom: 36px;
  backdrop-filter: blur(10px);
}

.countdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.countdown-title {
  color: var(--text-muted);
}

.stage-percent {
  color: var(--emerald-bright);
}

.progress-bar-container {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 22px;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #991b1b, #ef4444, #ff2a4d);
  border-radius: var(--radius-full);
  position: relative;
}

.progress-glow {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 20px;
  background: #ffffff;
  filter: blur(3px);
  animation: barGlow 2s infinite;
}

@keyframes barGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.timer-segment {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 68px;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 8px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.timer-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.timer-label {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-top: 4px;
}

.timer-divider {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--emerald-bright);
}

/* CTA Group */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-pixel);
  font-size: 0.7rem;
  color: var(--emerald-bright);
  background: rgba(0, 255, 136, 0.1);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Features Grid */
.features-section {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: all 0.3s;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::before {
  background: linear-gradient(90deg, transparent, var(--emerald-bright), transparent);
}

.feature-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.glow-green { box-shadow: 0 0 16px var(--emerald-glow); border: 1px solid var(--emerald-main); }
.glow-cyan { box-shadow: 0 0 16px var(--cyan-glow); border: 1px solid var(--cyan-main); }
.glow-gold { box-shadow: 0 0 16px var(--gold-glow); border: 1px solid var(--gold-main); }
.glow-purple { box-shadow: 0 0 16px var(--purple-glow); border: 1px solid var(--purple-main); }
.glow-red { box-shadow: 0 0 16px var(--red-glow); border: 1px solid var(--red-main); }
.glow-emerald { box-shadow: 0 0 16px var(--emerald-glow); border: 1px solid var(--emerald-bright); }

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.feature-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Roadmap Section */
.roadmap-section {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.roadmap-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.roadmap-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: all 0.3s ease;
}

.roadmap-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.roadmap-item.completed {
  border-left: 4px solid var(--emerald-bright);
}

.roadmap-item.in-progress {
  border-left: 4px solid var(--gold-main);
  background: rgba(245, 158, 11, 0.05);
}

.roadmap-item.upcoming {
  border-left: 4px solid var(--text-dim);
  opacity: 0.75;
}

.roadmap-bullet {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
  flex-shrink: 0;
}

.completed .roadmap-bullet {
  background: rgba(0, 255, 136, 0.15);
  color: var(--emerald-bright);
}

.in-progress .roadmap-bullet {
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold-main);
}

.upcoming .roadmap-bullet {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-dim);
}

.roadmap-content {
  flex-grow: 1;
}

.roadmap-content h4 {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.roadmap-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.badge-status {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.badge-status.done {
  background: rgba(0, 255, 136, 0.12);
  color: var(--emerald-bright);
}

.badge-status.active {
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold-main);
}

.badge-status.pending {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-dim);
}

/* Notify / Early Access Section */
.notify-section {
  padding: 60px 0 100px;
  position: relative;
  z-index: 2;
}

.notify-card {
  max-width: 680px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(22, 16, 22, 0.92) 0%, rgba(32, 18, 26, 0.92) 100%);
  border: 1px solid rgba(255, 42, 77, 0.35);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 42, 77, 0.15);
}

.notify-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.notify-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.notify-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.notify-form {
  max-width: 500px;
  margin: 0 auto;
}

.input-group {
  display: flex;
  gap: 8px;
}

.input-group input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: var(--font-main);
  outline: none;
  transition: all 0.2s;
}

.input-group input:focus {
  border-color: var(--emerald-bright);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 12px var(--emerald-glow);
}

.btn-notify {
  background: var(--emerald-bright);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 12px 20px;
  font-weight: 700;
  white-space: nowrap;
}

.btn-notify:hover {
  background: #ff4767;
  box-shadow: 0 0 18px var(--emerald-glow);
}

.notify-feedback {
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  animation: fadeIn 0.3s ease;
}

.notify-feedback.success {
  color: var(--emerald-bright);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-subtle);
  background: rgba(5, 8, 14, 0.85);
  padding: 40px 0 20px;
  position: relative;
  z-index: 2;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-avatar-img {
  width: 32px;
  height: 32px;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #000;
}

.footer-logo .brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
}

.footer-disclaimer {
  color: var(--text-dim);
  font-size: 0.8rem;
  max-width: 480px;
  margin-top: 8px;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  transition: all 0.2s;
}

.social-link:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 20px;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.8rem;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #140d12;
  border: 1px solid var(--emerald-bright);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px var(--emerald-glow);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 1000;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(0);
  opacity: 1;
}

.toast.hidden {
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
}

.toast-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--emerald-bright);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
}

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

.toast-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
}

.toast-subtitle {
  font-size: 0.8rem;
  color: var(--emerald-bright);
  font-family: var(--font-pixel);
}

.hidden {
  display: none !important;
}

/* Responsive Queries */
@media (max-width: 768px) {
  .hero-section {
    padding: 120px 0 60px;
  }

  .ip-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .ip-card-info {
    align-items: center;
  }

  .btn-copy {
    width: 100%;
  }

  .input-group {
    flex-direction: column;
  }

  .roadmap-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .badge-status {
    align-self: flex-start;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .header-actions {
    gap: 8px;
  }

  .header-actions .btn span.nav-text {
    display: none;
  }

  .header-actions .btn {
    padding: 8px 10px;
  }
}
