/* ─── The ETH Bull — $VITALIK ─── */
:root {
  --eth-purple: #627EEA;
  --eth-purple-deep: #4c63b6;
  --eth-purple-dark: #1a0f2e;
  --eth-purple-mid: #2d1b4e;
  --gold: #d4a843;
  --gold-light: #f0c75e;
  --gold-glow: rgba(212, 168, 67, 0.35);
  --purple-glow: rgba(98, 126, 234, 0.4);
  --bg: #0a0612;
  --bg-elevated: #120a1f;
  --surface: rgba(45, 27, 78, 0.45);
  --surface-border: rgba(98, 126, 234, 0.15);
  --text: #e8e4f0;
  --text-muted: #9b93b0;
  --font-display: 'Cinzel', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius: 12px;
  --radius-lg: 20px;
  --nav-h: 72px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.mono { font-family: var(--font-mono); }

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

/* ─── ETH Diamond Icon ─── */
.eth-diamond {
  display: inline-block;
  width: 10px;
  height: 16px;
  background: linear-gradient(135deg, var(--eth-purple) 0%, #a78bfa 50%, var(--eth-purple) 100%);
  clip-path: polygon(50% 0%, 100% 35%, 50% 100%, 0% 35%);
  flex-shrink: 0;
}

/* ─── Floating Particles ─── */
.eth-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.eth-particles::before,
.eth-particles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: float 20s ease-in-out infinite;
}

.eth-particles::before {
  width: 500px;
  height: 500px;
  background: var(--eth-purple);
  top: -10%;
  right: -5%;
}

.eth-particles::after {
  width: 400px;
  height: 400px;
  background: var(--gold);
  bottom: 10%;
  left: -10%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 6, 18, 0.85);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--surface-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.nav-logo img {
  border-radius: 50%;
  box-shadow: 0 0 20px var(--purple-glow);
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  letter-spacing: 0.03em;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-cta {
  padding: 0.5rem 1.25rem !important;
  background: linear-gradient(135deg, var(--eth-purple), var(--eth-purple-deep));
  color: white !important;
  border-radius: 999px;
  box-shadow: 0 4px 20px var(--purple-glow);
}

.nav-cta:hover {
  box-shadow: 0 6px 28px var(--purple-glow);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10, 6, 18, 0.5) 0%, rgba(10, 6, 18, 0.3) 40%, rgba(10, 6, 18, 0.92) 85%, var(--bg) 100%),
    linear-gradient(to right, rgba(10, 6, 18, 0.6) 0%, transparent 50%, rgba(10, 6, 18, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.4rem 1rem;
  background: rgba(98, 126, 234, 0.15);
  border: 1px solid rgba(98, 126, 234, 0.3);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--eth-purple);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.title-line {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, #fff 60%, var(--gold-light) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
  filter: drop-shadow(0 0 30px var(--gold-glow));
}

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

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.hero-motto {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 2.5rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.03em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--eth-purple), #8b5cf6);
  color: white;
  box-shadow: 0 4px 24px var(--purple-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--purple-glow);
}

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

.btn-ghost:hover {
  background: rgba(98, 126, 234, 0.1);
  border-color: rgba(98, 126, 234, 0.35);
}

.btn-full { width: 100%; }

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.25rem 2rem;
  background: rgba(18, 10, 31, 0.6);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}

.stat {
  text-align: center;
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold-light);
}

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

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 1;
  animation: bounce 2.5s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--eth-purple), transparent);
}

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

/* ─── Sections ─── */
.section {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--eth-purple);
  margin-bottom: 1rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.section-header h2 em {
  font-style: normal;
  color: var(--gold-light);
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Vision ─── */
.vision {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 50%, var(--bg) 100%);
}

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

.vision-card {
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  transition: all var(--transition);
}

.vision-card:hover {
  border-color: rgba(98, 126, 234, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.vision-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(98, 126, 234, 0.12);
  border-radius: 10px;
  color: var(--eth-purple);
  margin-bottom: 1rem;
}

.vision-card-icon svg {
  width: 22px;
  height: 22px;
}

.vision-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.vision-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.vision-card-featured {
  grid-column: span 3;
  text-align: center;
  background: linear-gradient(135deg, rgba(98, 126, 234, 0.12), rgba(212, 168, 67, 0.08));
  border-color: rgba(212, 168, 67, 0.2);
  padding: 2.5rem;
}

.vision-card-featured blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.vision-card-featured cite {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: normal;
}

/* ─── Quote Banner ─── */
.quote-banner {
  padding: 4rem 0;
  background: linear-gradient(90deg, var(--eth-purple-dark), var(--eth-purple-mid), var(--eth-purple-dark));
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
  text-align: center;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.quote-text em {
  font-style: normal;
  color: var(--gold-light);
}

.quote-sub {
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ─── Roadmap ─── */
.roadmap-track {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
  margin: 0 auto;
}

.roadmap-line {
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--eth-purple), var(--gold), var(--eth-purple));
  opacity: 0.4;
}

.roadmap-node {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  position: relative;
}

.node-marker {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border: 2px solid var(--eth-purple);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--eth-purple);
  box-shadow: 0 0 20px var(--purple-glow);
  z-index: 1;
}

.roadmap-node-final .node-marker {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
  font-size: 1.1rem;
}

.node-content {
  flex: 1;
  padding: 0.75rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.roadmap-node:hover .node-content {
  border-color: rgba(98, 126, 234, 0.3);
  transform: translateX(4px);
}

.node-content h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--gold-light);
}

.node-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Gallery ─── */
.gallery {
  background: var(--bg-elevated);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--surface-border);
  aspect-ratio: 1;
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(10, 6, 18, 0.95), transparent);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  transform: translateY(100%);
  transition: transform var(--transition);
}

.gallery-item:hover figcaption {
  transform: translateY(0);
}

/* ─── Token ─── */
.token-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.token-coin {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}

.token-coin img {
  width: 100%;
  border-radius: 50%;
  animation: coinFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 0 40px var(--gold-glow));
}

.coin-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes coinFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

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

.token-info h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  letter-spacing: 0.06em;
}

.token-desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.token-specs {
  margin-bottom: 2rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--surface-border);
}

.spec-row dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.spec-row dd {
  font-weight: 500;
  text-align: right;
}

.token-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.token-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ─── Community ─── */
.community-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(98, 126, 234, 0.1), rgba(45, 27, 78, 0.6));
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.community-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.community-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.community-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.65rem 1.15rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--surface-border);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition);
}

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

.social-link:hover {
  background: rgba(98, 126, 234, 0.15);
  border-color: var(--eth-purple);
  transform: translateY(-2px);
}

.community-emblem {
  display: flex;
  justify-content: center;
  align-items: center;
}

.community-emblem img {
  width: min(280px, 100%);
  border-radius: 50%;
  opacity: 0.85;
  filter: drop-shadow(0 0 50px var(--purple-glow));
  animation: coinFloat 8s ease-in-out infinite;
}

/* ─── Footer ─── */
.footer {
  position: relative;
  z-index: 1;
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--surface-border);
  background: var(--bg);
}

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

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.75rem;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
}

.footer-brand .mono {
  font-size: 0.8rem;
  color: var(--eth-purple);
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(155, 147, 176, 0.6);
}

/* ─── Toast ─── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 0.75rem 1.5rem;
  background: var(--eth-purple-mid);
  border: 1px solid var(--eth-purple);
  border-radius: 999px;
  font-size: 0.85rem;
  z-index: 200;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ─── Reveal Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .vision-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vision-card-featured {
    grid-column: span 2;
  }

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

  .gallery-item-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .token-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .community-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .community-links {
    justify-content: center;
  }

  .community-emblem {
    order: -1;
  }

  .community-emblem img {
    width: 180px;
  }
}

@media (max-width: 640px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 6, 18, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--surface-border);
    padding: 1rem 0;
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.85rem 1.5rem;
    text-align: center;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

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

  .vision-card-featured {
    grid-column: span 1;
  }

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

  .gallery-item-large {
    grid-column: span 1;
  }

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

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

  .roadmap-line {
    left: 23px;
  }

  .node-marker {
    width: 48px;
    height: 48px;
  }
}
