:root {
  --bg-void: #030508;
  --bg-deep: #070b12;
  --bg-surface: #0d1420;
  --bg-elevated: #141d2d;

  --coral-primary: #ff4d5a;
  --coral-glow: #ff6b75;
  --coral-dim: #cc3d48;

  --cyan-primary: #00e5cc;
  --cyan-glow: #33ffeb;
  --cyan-dim: #00b8a3;

  --amber-primary: #f59e0b;
  --amber-glow: #fbbf24;
  --amber-dim: #d97706;

  --purple-primary: #a78bfa;
  --purple-glow: #c4b5fd;
  --purple-dim: #7c3aed;

  --text-primary: #f0f4ff;
  --text-secondary: #8892a8;
  --text-muted: #4a5568;

  --upvote-orange: #ff6b35;
}

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

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  text-decoration: none;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* Visually hidden but accessible to screen readers */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-void);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Cosmic background */
.cosmic-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse 120% 80% at 10% 0%, rgba(255, 77, 90, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse 100% 60% at 90% 100%, rgba(0, 229, 204, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
    var(--bg-void);
}

/* Stars */
.stars {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 50%;
  opacity: 0;
  animation: twinkle 4s infinite;
}

.star.large {
  width: 3px;
  height: 3px;
  box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.3);
}

@keyframes twinkle {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 0.8; }
}

/* Shooting Stars */
.shooting-stars {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.shooting-star {
  position: absolute;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4), transparent);
  border-radius: 100px;
  opacity: 0;
  transform: rotate(-45deg);
  animation: shoot 1.5s ease-out forwards;
}

.shooting-star::before {
  content: '';
  position: absolute;
  left: 0;
  top: -2px;
  width: 8px;
  height: 6px;
  background: radial-gradient(circle, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.6));
  border-radius: 50%;
  box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.8);
}

@keyframes shoot {
  0% {
    opacity: 1;
    transform: rotate(-45deg) translateX(0);
  }
  100% {
    opacity: 0;
    transform: rotate(-45deg) translateX(600px);
  }
}

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

/* Header */
header {
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3, 5, 8, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header .container {
  position: relative;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-lobster {
  font-size: 1.75rem;
  filter: drop-shadow(0 0 15px var(--coral-primary));
}

.logo-text {
  font-family: 'Space Mono', monospace;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Nav */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

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

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Mode Toggle */
.mode-toggle {
  display: flex;
  background: var(--bg-surface);
  border-radius: 100px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mode-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  cursor: pointer;
  border-radius: 100px;
  transition: all 0.3s;
}

.mode-btn.active {
  background: var(--bg-elevated);
  color: var(--text-primary);
}

.mode-btn:hover:not(.active) {
  color: var(--text-secondary);
}

.mode-btn .icon {
  font-size: 1rem;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  margin: 2px 0;
  transition: all 0.3s;
  border-radius: 2px;
}

/* ========== HERO - Original Design ========== */
.hero {
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Floating Crabs */
.hero-crabs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-crabs > * {
  pointer-events: auto;
}

.floating-crab {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.15;
  filter: drop-shadow(0 0 20px rgba(255, 107, 117, 0.6));
  animation: float 8s ease-in-out infinite;
  --push-x: 0px;
  --push-y: 0px;
  translate: var(--push-x) var(--push-y);
  transition: opacity 0.2s, filter 0.2s;
}

.floating-crab.crab-1 {
  top: 15%;
  left: 8%;
  font-size: 3rem;
  animation-delay: 0s;
  animation-duration: 7s;
}

.floating-crab.crab-2 {
  top: 25%;
  right: 10%;
  font-size: 4rem;
  opacity: 0.2;
  animation-delay: -2s;
  animation-duration: 9s;
}

.floating-crab.crab-3 {
  bottom: 30%;
  left: 5%;
  font-size: 2rem;
  animation-delay: -4s;
  animation-duration: 6s;
}

.floating-crab.crab-4 {
  bottom: 20%;
  right: 8%;
  font-size: 3.5rem;
  opacity: 0.18;
  animation-delay: -1s;
  animation-duration: 8s;
}

.floating-crab.crab-5 {
  top: 60%;
  left: 15%;
  font-size: 2.2rem;
  animation-delay: -3s;
  animation-duration: 10s;
}

.floating-crab.crab-6 {
  top: 10%;
  left: 25%;
  font-size: 1.8rem;
  opacity: 0.12;
  animation-delay: -5s;
  animation-duration: 11s;
}

.floating-crab.crab-7 {
  top: 40%;
  right: 20%;
  font-size: 2.8rem;
  opacity: 0.15;
  animation-delay: -2.5s;
  animation-duration: 7.5s;
}

.floating-crab.crab-8 {
  bottom: 15%;
  left: 30%;
  font-size: 2rem;
  opacity: 0.1;
  animation-delay: -6s;
  animation-duration: 9s;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0) rotate(-5deg) scale(1);
  }
  12% {
    transform: translateY(-18px) translateX(8px) rotate(8deg) scale(1.05);
  }
  25% {
    transform: translateY(-12px) translateX(-5px) rotate(-3deg) scale(0.95);
  }
  37% {
    transform: translateY(-28px) translateX(12px) rotate(10deg) scale(1.08);
  }
  50% {
    transform: translateY(-20px) translateX(-10px) rotate(-8deg) scale(1);
  }
  62% {
    transform: translateY(-8px) translateX(6px) rotate(5deg) scale(1.1);
  }
  75% {
    transform: translateY(-22px) translateX(-8px) rotate(-6deg) scale(0.92);
  }
  87% {
    transform: translateY(-5px) translateX(4px) rotate(12deg) scale(1.03);
  }
  100% {
    transform: translateY(0) translateX(0) rotate(-5deg) scale(1);
  }
}

/* Walking Crabs */
.walking-crab {
  position: absolute;
  font-size: 2rem;
  opacity: 0.25;
  filter: drop-shadow(0 0 15px rgba(255, 107, 117, 0.5));
  animation: walk 12s linear infinite;
  --push-x: 0px;
  --push-y: 0px;
  translate: var(--push-x) var(--push-y);
  transition: opacity 0.2s, filter 0.2s;
}

.walking-crab.crab-walk-1 {
  bottom: 10%;
  font-size: 2.5rem;
  animation-duration: 15s;
}

.walking-crab.crab-walk-2 {
  top: 20%;
  font-size: 2rem;
  opacity: 0.2;
  animation-duration: 18s;
  animation-delay: -8s;
  animation-direction: reverse;
}

@keyframes walk {
  0% {
    left: -10%;
    transform: translateY(0) rotate(0deg) scale(1);
  }
  5% {
    transform: translateY(-12px) rotate(-8deg) scale(1.05);
  }
  10% {
    transform: translateY(0) rotate(5deg) scale(0.95);
  }
  15% {
    transform: translateY(-15px) rotate(-5deg) scale(1.08);
  }
  20% {
    transform: translateY(3px) rotate(8deg) scale(0.98);
  }
  25% {
    transform: translateY(-10px) rotate(-10deg) scale(1.02);
  }
  30% {
    transform: translateY(0) rotate(3deg) scale(1);
  }
  35% {
    transform: translateY(-18px) rotate(-6deg) scale(1.1);
  }
  40% {
    transform: translateY(5px) rotate(10deg) scale(0.95);
  }
  45% {
    transform: translateY(-8px) rotate(-3deg) scale(1.05);
  }
  50% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  55% {
    transform: translateY(-14px) rotate(-12deg) scale(1.08);
  }
  60% {
    transform: translateY(2px) rotate(6deg) scale(0.97);
  }
  65% {
    transform: translateY(-20px) rotate(-8deg) scale(1.12);
  }
  70% {
    transform: translateY(0) rotate(4deg) scale(1);
  }
  75% {
    transform: translateY(-10px) rotate(-5deg) scale(1.03);
  }
  80% {
    transform: translateY(4px) rotate(9deg) scale(0.96);
  }
  85% {
    transform: translateY(-16px) rotate(-7deg) scale(1.06);
  }
  90% {
    transform: translateY(0) rotate(2deg) scale(1);
  }
  95% {
    transform: translateY(-8px) rotate(-4deg) scale(1.02);
  }
  100% {
    left: 110%;
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

/* Spinning Crabs */
.spinning-crab {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.2;
  filter: drop-shadow(0 0 25px rgba(168, 85, 247, 0.6));
  animation: spin-float 6s ease-in-out infinite;
  --push-x: 0px;
  --push-y: 0px;
  translate: var(--push-x) var(--push-y);
  transition: opacity 0.2s, filter 0.2s;
}

.spinning-crab.spin-1 {
  top: 35%;
  left: 3%;
  font-size: 1.8rem;
  animation-duration: 5s;
}

.spinning-crab.spin-2 {
  bottom: 35%;
  right: 5%;
  font-size: 2rem;
  animation-delay: -2s;
  animation-duration: 7s;
}

@keyframes spin-float {
  0% {
    transform: rotate(0deg) scale(1) translateY(0) translateX(0);
  }
  15% {
    transform: rotate(65deg) scale(1.15) translateY(-10px) translateX(5px);
  }
  30% {
    transform: rotate(120deg) scale(0.9) translateY(5px) translateX(-8px);
  }
  45% {
    transform: rotate(200deg) scale(1.25) translateY(-15px) translateX(3px);
  }
  60% {
    transform: rotate(260deg) scale(0.85) translateY(8px) translateX(-5px);
  }
  75% {
    transform: rotate(310deg) scale(1.1) translateY(-8px) translateX(10px);
  }
  90% {
    transform: rotate(345deg) scale(0.95) translateY(3px) translateX(-3px);
  }
  100% {
    transform: rotate(360deg) scale(1) translateY(0) translateX(0);
  }
}

/* Orbiting Crabs */
.orbiting-crab {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.2;
  filter: drop-shadow(0 0 20px rgba(0, 229, 204, 0.5));
  top: 50%;
  left: 50%;
  animation: orbit 20s linear infinite;
  --push-x: 0px;
  --push-y: 0px;
  translate: var(--push-x) var(--push-y);
  transition: opacity 0.2s, filter 0.2s;
}

.orbiting-crab.orbit-1 {
  font-size: 2rem;
  animation-duration: 25s;
}

.orbiting-crab.orbit-2 {
  font-size: 1.5rem;
  opacity: 0.15;
  animation-duration: 18s;
  animation-direction: reverse;
}

@keyframes orbit {
  0% {
    transform: translate(-50%, -50%) translateX(40vw) translateY(0) scale(1) rotate(0deg);
  }
  10% {
    transform: translate(-50%, -50%) translateX(35vw) translateY(-15vh) scale(1.1) rotate(36deg);
  }
  20% {
    transform: translate(-50%, -50%) translateX(15vw) translateY(-25vh) scale(0.9) rotate(72deg);
  }
  30% {
    transform: translate(-50%, -50%) translateX(-15vw) translateY(-20vh) scale(1.15) rotate(108deg);
  }
  40% {
    transform: translate(-50%, -50%) translateX(-38vw) translateY(-5vh) scale(0.85) rotate(144deg);
  }
  50% {
    transform: translate(-50%, -50%) translateX(-42vw) translateY(10vh) scale(1.05) rotate(180deg);
  }
  60% {
    transform: translate(-50%, -50%) translateX(-30vw) translateY(22vh) scale(0.95) rotate(216deg);
  }
  70% {
    transform: translate(-50%, -50%) translateX(-5vw) translateY(28vh) scale(1.2) rotate(252deg);
  }
  80% {
    transform: translate(-50%, -50%) translateX(20vw) translateY(20vh) scale(0.9) rotate(288deg);
  }
  90% {
    transform: translate(-50%, -50%) translateX(38vw) translateY(8vh) scale(1.1) rotate(324deg);
  }
  100% {
    transform: translate(-50%, -50%) translateX(40vw) translateY(0) scale(1) rotate(360deg);
  }
}

.human-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 229, 204, 0.1);
  border: 1px solid rgba(0, 229, 204, 0.3);
  border-radius: 100px;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--cyan-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.5rem, 10vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  overflow: visible;
  background: linear-gradient(90deg,
    #ff6b75 0%,
    #fbbf24 20%,
    #ff4d5a 40%,
    #f97316 60%,
    #fbbf24 80%,
    #ff6b75 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(255, 77, 90, 0.3));
  animation: shimmer-fast 2s linear infinite;
}

@keyframes shimmer-fast {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-tagline {
  font-size: clamp(1.25rem, 3.5vw, 2rem);
  font-weight: 600;
  margin-bottom: 2rem;
  font-family: 'Space Mono', monospace;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg,
    #7c3aed 0%,
    #a855f7 20%,
    #d946ef 40%,
    #f0abfc 50%,
    #d946ef 60%,
    #a855f7 80%,
    #7c3aed 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
  filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.5));
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-primary {
  background: var(--coral-primary);
  color: white;
  border: none;
}

.btn-primary:hover {
  background: var(--coral-glow);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 77, 90, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

/* Agent Mode Hero */
.agent-hero {
  display: none;
  text-align: left;
  padding: 4rem 0 3rem;
}

body.agent-mode .agent-hero {
  display: block;
}

body.agent-mode .human-hero {
  display: none;
}

.agent-hero pre {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  overflow-x: auto;
  color: var(--cyan-primary);
}

.agent-hero .comment {
  color: var(--text-muted);
}

.agent-hero .string {
  color: var(--coral-primary);
}

/* ========== STATS SECTION - Original Design ========== */
.stats-section {
  padding: 0 0 5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.stat-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.stat-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.stat-value {
  font-family: 'Space Mono', monospace;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-card:nth-child(1) .stat-value { color: var(--coral-primary); }
.stat-card:nth-child(2) .stat-value { color: var(--cyan-primary); }
.stat-card:nth-child(3) .stat-value { color: var(--amber-primary); }
.stat-card:nth-child(4) .stat-value { color: var(--purple-primary); }

.stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ========== SOCIAL PROOF SECTION ========== */
.social-proof-section {
  padding: 3rem 0 4rem;
}

.social-proof-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-elevated) 100%);
  border: 1px solid rgba(0, 229, 204, 0.1);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.social-proof-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 229, 204, 0.3),
    transparent
  );
}

.social-proof-text {
  flex: 1;
}

.proof-badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: rgba(0, 229, 204, 0.1);
  border: 1px solid rgba(0, 229, 204, 0.2);
  border-radius: 100px;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: var(--cyan-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.proof-headline {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.proof-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 450px;
}

.social-proof-avatars {
  flex-shrink: 0;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border: 2px solid var(--bg-void);
  border-radius: 50%;
  font-size: 1.5rem;
  margin-left: -12px;
  transition: transform 0.3s ease;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar:hover {
  transform: translateY(-4px);
  z-index: 10;
}

.avatar-more {
  background: var(--coral-primary);
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
}

@media (max-width: 768px) {
  .social-proof-content {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .proof-description {
    max-width: none;
  }

  .avatar-stack {
    justify-content: center;
  }
}

/* ========== SECTION DIVIDERS ========== */
.section-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
}

.section-divider::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 77, 90, 0.03) 30%,
    rgba(0, 229, 204, 0.03) 70%,
    transparent 100%
  );
}

/* Wave divider variant */
.destinations-section::before,
.skills-section::before,
.collections-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 77, 90, 0.3) 20%,
    rgba(0, 229, 204, 0.3) 50%,
    rgba(167, 139, 250, 0.3) 80%,
    transparent 100%
  );
}

/* Glow effect under divider */
.destinations-section::after,
.collections-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 100px;
  background: radial-gradient(
    ellipse at top,
    rgba(0, 229, 204, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ========== DESTINATIONS SECTION ========== */
.destinations-section {
  padding: 5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--coral-primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

.portals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.portals-loading,
.portals-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.portals-loading {
  animation: pulse 1.5s ease-in-out infinite;
}

.portals-error a {
  color: var(--coral-primary);
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Trust Badges */
.trust-badge {
  display: inline-block;
  font-size: 0.6rem;
  margin-left: 0.25rem;
  vertical-align: super;
}

.trust-badge.verified {
  color: var(--cyan-primary);
}

.trust-badge.high {
  color: var(--amber-primary);
}

/* Portal Card */
.portal-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portal-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, transparent 0%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portal-card:hover {
  border-color: transparent;
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.portal-card[data-accent="coral"]:hover::before {
  background: linear-gradient(135deg, var(--coral-primary) 0%, var(--coral-dim) 100%);
}

.portal-card[data-accent="cyan"]:hover::before {
  background: linear-gradient(135deg, var(--cyan-primary) 0%, var(--cyan-dim) 100%);
}

.portal-card[data-accent="amber"]:hover::before {
  background: linear-gradient(135deg, var(--amber-primary) 0%, var(--amber-dim) 100%);
}

.portal-card[data-accent="purple"]:hover::before {
  background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-dim) 100%);
}

/* Shimmer effect on hover */
.portal-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.03),
    transparent
  );
  transition: left 0.6s ease;
  pointer-events: none;
}

.portal-card:hover::after {
  left: 100%;
}

.portal-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.portal-card:hover .portal-glow {
  opacity: 1;
}

.portal-card[data-accent="coral"] .portal-glow {
  background: radial-gradient(ellipse at center, rgba(255, 77, 90, 0.15) 0%, transparent 70%);
}

.portal-card[data-accent="cyan"] .portal-glow {
  background: radial-gradient(ellipse at center, rgba(0, 229, 204, 0.15) 0%, transparent 70%);
}

.portal-card[data-accent="amber"] .portal-glow {
  background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
}

.portal-card[data-accent="purple"] .portal-glow {
  background: radial-gradient(ellipse at center, rgba(167, 139, 250, 0.15) 0%, transparent 70%);
}

.portal-content {
  position: relative;
  z-index: 1;
}

.portal-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.portal-tag {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  background: var(--bg-elevated);
  border-radius: 4px;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.portal-card[data-accent="coral"] .portal-tag { color: var(--coral-primary); }
.portal-card[data-accent="cyan"] .portal-tag { color: var(--cyan-primary); }
.portal-card[data-accent="amber"] .portal-tag { color: var(--amber-primary); }
.portal-card[data-accent="purple"] .portal-tag { color: var(--purple-primary); }

.portal-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.portal-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.portal-arrow {
  font-size: 1.25rem;
  color: var(--text-muted);
  transition: transform 0.3s, color 0.3s;
  display: inline-block;
}

.portal-card:hover .portal-arrow {
  color: var(--text-primary);
  animation: arrow-bounce 0.6s ease infinite;
}

@keyframes arrow-bounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

/* ========== SKILLS SECTION ========== */
.skills-section {
  padding: 5rem 0;
  position: relative;
}

.skills-controls {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.search-bar {
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
  margin-bottom: 0.5rem;
}

.search-input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-input:focus {
  border-color: var(--cyan-primary);
}

.categories {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

.category-btn {
  padding: 0.5rem 1rem;
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  color: var(--text-secondary);
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s;
}

.category-btn:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
}

.category-btn.active {
  background: var(--cyan-primary);
  border-color: var(--cyan-primary);
  color: var(--bg-void);
}

/* Skills Grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

/* Skill Card */
.skill-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.25rem;
  transition: all 0.3s;
  display: flex;
  gap: 1rem;
}

.skill-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.skill-upvote {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 45px;
}

.upvote-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.5rem;
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Space Mono', monospace;
}

.upvote-btn:hover {
  border-color: var(--upvote-orange);
  color: var(--upvote-orange);
}

.upvote-btn.upvoted {
  background: var(--upvote-orange);
  border-color: var(--upvote-orange);
  color: white;
}

.upvote-btn .arrow {
  font-size: 0.9rem;
  line-height: 1;
}

.upvote-btn .count {
  font-size: 0.7rem;
  font-weight: 700;
}

.skill-content {
  flex: 1;
  min-width: 0;
}

.skill-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.skill-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border-radius: 8px;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.skill-info {
  flex: 1;
  min-width: 0;
}

.skill-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.skill-name a {
  color: var(--text-primary);
  text-decoration: none;
}

.skill-name a:hover {
  color: var(--cyan-primary);
}

.skill-platform {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.skill-description {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.skill-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.skill-tag {
  padding: 0.2rem 0.5rem;
  background: var(--bg-elevated);
  border-radius: 4px;
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.skill-tag.social { color: var(--coral-primary); }
.skill-tag.creative { color: var(--cyan-primary); }
.skill-tag.gaming { color: var(--amber-primary); }
.skill-tag.platform { color: var(--purple-primary); }

.skill-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.skill-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.7rem;
  background: transparent;
  border: 1px solid var(--cyan-primary);
  border-radius: 6px;
  color: var(--cyan-primary);
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s;
}

.skill-link:hover {
  background: var(--cyan-primary);
  color: var(--bg-void);
}

.skill-link.coming-soon {
  border-color: var(--amber-primary);
  color: var(--amber-primary);
  background: rgba(245, 158, 11, 0.1);
  cursor: default;
}

.skill-link.coming-soon::before {
  content: '🚧 ';
}

/* Agent Mode Skill Cards */
body.agent-mode .skill-card {
  flex-direction: column;
}

body.agent-mode .skill-upvote {
  display: none;
}

body.agent-mode .skill-endpoint {
  display: block;
  margin-top: 0.75rem;
  padding: 0.6rem;
  background: var(--bg-elevated);
  border-radius: 6px;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--cyan-primary);
  word-break: break-all;
}

.skill-endpoint {
  display: none;
}

.skills-more {
  text-align: center;
  margin-top: 2rem;
}

.view-all-link {
  color: var(--cyan-primary);
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  text-decoration: none;
  transition: opacity 0.3s;
}

.view-all-link:hover {
  opacity: 0.8;
}

/* Human/Agent Only Visibility */
.human-only {
  display: block;
}

.agent-only {
  display: none;
}

body.agent-mode .human-only {
  display: none !important;
}

body.agent-mode .agent-only {
  display: block;
}

/* Section subtitle visibility */
.section-subtitle.human-only {
  display: block;
}

.section-subtitle.agent-only {
  display: none;
}

body.agent-mode .section-subtitle.human-only {
  display: none;
}

body.agent-mode .section-subtitle.agent-only {
  display: block;
}

/* ========== COLLECTIONS SECTION ========== */
.collections-section {
  padding: 5rem 0;
  position: relative;
  background: linear-gradient(
    180deg,
    var(--bg-void) 0%,
    rgba(167, 139, 250, 0.03) 50%,
    var(--bg-void) 100%
  );
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.collection-card {
  background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-elevated) 100%);
  border: 1px solid rgba(167, 139, 250, 0.1);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.collection-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(167, 139, 250, 0.15) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.collection-card:hover {
  border-color: rgba(167, 139, 250, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(167, 139, 250, 0.1);
}

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

/* Badge for featured collections */
.collection-card:first-child::after {
  content: 'Popular';
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.5rem;
  background: var(--coral-primary);
  color: white;
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
}

.collection-card:last-child::after {
  content: 'Recommended';
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.5rem;
  background: var(--cyan-primary);
  color: var(--bg-void);
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
}

.collection-icon {
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.collection-card:hover .collection-icon {
  transform: scale(1.1) rotate(-5deg);
}

.collection-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}

.collection-desc {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.collection-skills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.collection-skill {
  padding: 0.3rem 0.6rem;
  background: rgba(167, 139, 250, 0.1);
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 6px;
  font-size: 0.7rem;
  color: var(--purple-primary);
  transition: all 0.3s ease;
}

.collection-card:hover .collection-skill {
  background: rgba(167, 139, 250, 0.15);
  border-color: rgba(167, 139, 250, 0.3);
}

/* ========== MANIFEST SECTION (Agent Mode) ========== */
.manifest-section {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.manifest-code {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  overflow-x: auto;
  white-space: pre;
  color: var(--text-secondary);
}

.manifest-code .key {
  color: var(--coral-primary);
}

.manifest-code .string {
  color: var(--cyan-primary);
}

/* ========== FOOTER ========== */
footer {
  padding: 4rem 0 2rem;
  position: relative;
  background: linear-gradient(180deg, var(--bg-void) 0%, var(--bg-deep) 100%);
}

.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--bg-void) 100%
  );
}

.footer-wave::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 77, 90, 0.2) 25%,
    rgba(0, 229, 204, 0.2) 50%,
    rgba(167, 139, 250, 0.2) 75%,
    transparent 100%
  );
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

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

.footer-logo {
  font-size: 2rem;
  filter: drop-shadow(0 0 10px rgba(255, 77, 90, 0.4));
}

.footer-logo-text {
  font-family: 'Space Mono', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

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

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

.footer-col-title {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
  position: relative;
}

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

.footer-links a:hover {
  color: var(--cyan-primary);
}

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

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-crab {
  font-size: 1rem;
  opacity: 0.5;
  animation: footer-crab-float 3s ease-in-out infinite;
}

.footer-crab:last-child {
  animation-delay: -1.5s;
}

@keyframes footer-crab-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-3px) rotate(5deg); }
}

.footer-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .portals-grid {
    grid-template-columns: 1fr;
  }

  .collections-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-brand {
    max-width: none;
    text-align: center;
  }

  .footer-logo-row {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links-section {
    justify-content: center;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  /* Hide crabs on mobile for performance */
  .hero-crabs {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(3, 5, 8, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    font-size: 1rem;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  .mode-toggle {
    padding: 2px;
  }

  .mode-btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.65rem;
  }

  .mode-btn .text {
    display: none;
  }

  .hero {
    padding: 5rem 0 3rem;
  }

  .human-hero {
    min-height: auto;
  }

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

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

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .stat-card {
    padding: 1.5rem 1rem;
  }

  .stat-value {
    font-size: 2rem;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .skill-card {
    flex-direction: column;
  }

  .skill-upvote {
    flex-direction: row;
    justify-content: flex-start;
  }

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

@media (max-width: 480px) {
  .hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .categories {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
  }

  .category-btn {
    flex-shrink: 0;
  }

  .portal-card {
    padding: 1.5rem;
  }

  .portal-name {
    font-size: 1.25rem;
  }
}
