@charset "UTF-8";
/* ==========================
   Theme Variables (SCSS friendly)
   ========================== */
:root {
  --bg: #08090b; /* main background */
  --panel: #0f1113; /* cards / panels */
  --muted: #ffffff; /* secondary text */
  --text: #ffffff; /* primary text */
  --gold: #b59b27; /* gold accent */
  --green: #3bd07a; /* up color */
  --red: #ff6b6b; /* down color */
  --glass: rgba(255,255,255,0.02);
  --radius: 12px;
  --max-width: 1400px;
  --gap: 20px;
  --transition: 220ms ease;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* ------------------ Reset & base ------------------ */
* {
  box-sizing: border-box;
}

/* ✅ Static gradient background (performance friendly) */
html {
  min-height: 100%;
  background: linear-gradient(135deg, rgb(93, 6, 83) 0%, rgb(1, 29, 47) 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-color: rgba(25, 34, 3, 0.8784313725);
}

body {
  min-height: 100%;
  margin: 0;
  font-family: var(--font-sans);
  background: transparent;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
  padding: 24px;
}

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

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

/* ------------------ Layout ------------------ */
.site {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--gap);
  align-items: start;
}

/* ------------------ Header (sticky) ------------------ */
.header {
  position: sticky;
  top: 18px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  margin-bottom: 12px;
}

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

.logo {
  width: 44px;
  height: 44px;
  border-radius: 50%; /* ✅ round container */
  overflow: hidden; /* ✅ clips image */
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--panel), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
}

.logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* fills circle cleanly */
  border-radius: 50%; /* safety */
}

/* ===============================
   Header Logo Click Animation
   =============================== */
.logo {
  cursor: pointer;
  transition: transform 0.15s ease;
}

.logo.animate {
  animation: logo-pulse 420ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes logo-pulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(212, 175, 55, 0));
  }
  35% {
    transform: scale(0.94);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.35));
  }
  65% {
    transform: scale(1.03);
    filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.55));
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(212, 175, 55, 0));
  }
}
.site-title {
  font-size: 16px;
  font-weight: 700;
}

.site-sub {
  font-size: 12px;
  color: var(--muted);
}

/* ------------------ Nav (desktop) ------------------ */
.nav {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav a {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--muted);
}

.nav a:hover {
  color: var(--text);
  background: var(--glass);
  transition: var(--transition);
}

/* ------------------ Burger (mobile) ------------------ */
.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 8px;
}

.burger span {
  width: 24px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  display: block;
}

/* ------------------ Mobile Menu Overlay ------------------ */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 24px;
}

.mobile-menu-overlay.active {
  display: flex;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
  font-size: 20px;
  max-width: 90%;
}

.mobile-menu-links a {
  color: var(--text);
  font-weight: 600;
}

/* ------------------ Hero ------------------ */
.hero {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--gap);
  align-items: stretch;
  margin-bottom: 6px;
}

.hero-card {
  background: linear-gradient(180deg, rgba(8, 195, 72, 0.57), rgba(0, 0, 0, 0.75));
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

/* tickers etc */
.market-snapshot {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.ticker {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  min-width: 180px;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.ticker .sym {
  font-weight: 700;
}

.ticker .price {
  font-family: monospace;
}

.up {
  color: var(--green);
}

.down {
  color: var(--red);
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ------------------ Main Content ------------------ */
.main-column {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

/* Post grid */
.post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

/* Card */
.card {
  background: rgba(15, 17, 19, 0.4588235294);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 140px;
}

.card .kicker {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
}

.card h3 {
  margin: 0;
  font-size: 18px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.card .meta {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}

/* ------------------ Sidebar ------------------ */
.sidebar {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ad-slot {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.popular {
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.popular li {
  margin: 8px 0;
}

/* ------------------ Footer ------------------ */
footer {
  grid-column: 1/-1;
  margin-top: 18px;
  padding: 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

footer .small {
  color: var(--muted);
  font-size: 13px;
}

/* ------------------ Utilities ------------------ */
.muted {
  color: var(--muted);
}

.muted-2 {
  color: #27a8b5;
}

.pill {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  font-size: 13px;
  color: white;
}

/* ------------------ Responsive ------------------ */
@media (max-width: 1100px) {
  .site {
    grid-template-columns: 1fr 320px;
  }
  .hero {
    grid-template-columns: 1fr 300px;
  }
  .post-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 760px) {
  body {
    padding: 12px;
  }
  .site {
    grid-template-columns: 1fr;
  }
  .hero {
    grid-column: 1/-1;
    grid-template-columns: 1fr;
  }
  .header {
    top: 8px;
  }
  .nav {
    display: none;
  }
  .burger {
    display: flex;
  }
}
/* ------------------ Price flash animations ------------------ */
.ticker.flash-up {
  animation: flashGreen 1s;
}

.ticker.flash-down {
  animation: flashRed 1s;
}

@keyframes flashGreen {
  from {
    background-color: rgba(22, 218, 104, 0.377);
  }
  to {
    background-color: transparent;
  }
}
@keyframes flashRed {
  from {
    background-color: rgba(255, 107, 107, 0.377);
  }
  to {
    background-color: transparent;
  }
}
/* ------------------ Fullscreen Image Viewer ------------------ */
.image-viewer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  cursor: zoom-out;
  animation: fadeIn 0.3s ease;
}

.image-viewer-overlay.active {
  display: flex;
}

.image-viewer-overlay img {
  max-width: 92%;
  max-height: 92vh;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
  transition: transform 0.25s ease;
}

.image-viewer-overlay img:active {
  transform: scale(1.02);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* === Zoomable Image Viewer Enhancements === */
.viewer-toolbar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  background: rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 8px 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
  z-index: 2100;
}

.viewer-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text);
  font-size: 16px;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.viewer-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.image-viewer-overlay img {
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: transform 0.2s ease;
  touch-action: none;
}

/* Make post images look clickable */
.viewable-img {
  cursor: zoom-in;
  transition: opacity 0.2s ease;
}

.viewable-img:hover {
  opacity: 0.9;
}

/* ------------------ Enhanced Card & Coin Logo ------------------ */
.card.clickable-card {
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.card.clickable-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.coin-logo {
  position: absolute;
  top: 2px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s ease;
}

.card.clickable-card:hover .coin-logo {
  transform: scale(1.08);
  animation: logoShine 1.4s ease-in-out; /* ✨ subtle shimmer */
}

/* ✨ Gold shimmer animation for coin logos */
@keyframes logoShine {
  0% {
    filter: brightness(1) saturate(1);
  }
  50% {
    filter: brightness(1.5) saturate(1.2);
  }
  100% {
    filter: brightness(1) saturate(1);
  }
}
/* ------------------ Pagination ------------------ */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}

.pagination button {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 14px;
  transition: background var(--transition), transform var(--transition);
}

.pagination button:hover {
  background: var(--glass);
  transform: translateY(-1px);
}

.pagination button.active {
  background: var(--gold);
  color: #000;
  font-weight: 600;
  border: none;
}

/* ========================== 
   Wave Analysis — Blurred Background Card Visuals
   ========================== */
.card.analysis-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(15, 17, 19, 0.92), rgba(15, 17, 19, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card.analysis-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  filter: blur(2px) brightness(0.55);
  opacity: 0.45;
  z-index: 0;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.card.analysis-card:hover::before {
  transform: scale(1.05);
  opacity: 0.6;
  filter: brightness(1) blur(0.5px);
}

.card.analysis-card > * {
  position: relative;
  z-index: 1;
}

.card.analysis-card h3 {
  font-size: 19px;
  color: #fff;
}

.card.analysis-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.6);
}

.thumb {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  opacity: 0.88;
}

.diagram-placeholder {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  padding: 18px;
  border-radius: 10px;
  text-align: center;
  margin: 20px 0;
  font-size: 14px;
  color: var(--muted);
}

.table-sentiment {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 14px;
}

.table-sentiment th, .table-sentiment td {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
  text-align: left;
}

.table-sentiment th {
  background: rgba(255, 255, 255, 0.06);
}

/* ------------------ Academy article niceties ------------------ */
.post-content h1 {
  margin-top: 6px;
  margin-bottom: 8px;
}

.post-content h2 {
  margin-top: 18px;
  margin-bottom: 8px;
}

.post-content p {
  margin-bottom: 12px;
  color: var(--text);
}

.diagram-placeholder {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 26px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed rgba(255, 255, 255, 0.04);
  margin: 18px 0;
  cursor: default;
}

/* make placeholders keyboard accessible like images (they're also .viewable-img so viewer works) */
.diagram-placeholder:focus {
  outline: 2px dashed rgba(214, 178, 74, 0.35);
}

/* floating left Table of Contents (wide screens only) */
.toc-floating {
  display: none;
}

.toc-floating .toc-inner {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.01));
  border-radius: 10px;
  padding: 12px;
  width: 180px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

.toc-title {
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  padding-top: 15px;
}

.toc-inner ol {
  margin: 0;
  padding-left: 16px;
  font-size: 14px;
  color: var(--muted);
}

.toc-inner ol li {
  margin-bottom: 6px;
}

.toc-inner ol li a {
  color: var(--muted);
  text-decoration: none;
}

.toc-inner ol li a:hover {
  color: var(--text);
}

/* place the floating TOC left of the centered site container on wide screens */
@media (min-width: 1200px) {
  .toc-floating {
    display: block;
    position: fixed;
    top: 120px;
    left: calc((100% - var(--max-width)) / 2 - 210px); /* sits left of main site container */
    z-index: 80;
  }
}
/* table improvements */
.table-sentiment th, .table-sentiment td {
  color: var(--muted);
}

.table-sentiment td {
  font-size: 14px;
}

/* ensure academy content images (diagram placeholders) are clickable for your image viewer */
.diagram-placeholder.viewable-img {
  cursor: crosshair;
}

/* === Horizontal Scroll Fix (Desktop Safe) === */
html, body {
  overflow-x: hidden; /* Prevent horizontal scrolling globally */
}

/* Only force full-width containers on small screens */
@media (max-width: 760px) {
  body {
    padding: 0 8px; /* snug mobile padding */
  }
  .site, .header, footer, .sidebar, .toc-floating {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
}
/* === Restore Apple-style Sticky Header (fixed glass look) === */
.header {
  position: fixed; /* Make it truly float over content */
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 98%; /* Keeps centered, responsive */
  z-index: 999;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(20, 22, 25, 0.02); /* translucent background */
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  transition: background 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
}

/* Add top spacing so content doesn’t hide under header */
body {
  padding-top: 90px; /* adjust if your header height changes */
}

/* Mobile fine-tune */
@media (max-width: 760px) {
  .header {
    top: -2px;
    width: calc(100% - 12px);
    border-radius: 12px;
  }
  body {
    padding-top: 80px;
  }
}
.project-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.project-card .tag {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 12px;
  margin-right: 6px;
  color: var(--text);
}

.btn-small {
  align-self: start;
  background: var(--gold);
  color: #000;
  font-weight: 600;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 14px;
  transition: all 0.2s ease;
}

.btn-small:hover {
  background: #e6c86d;
}

.project-card .tags {
  margin-top: 4px;
  margin-bottom: 10px;
}

.project-card .btn-small {
  margin-top: 6px;
}

/* === Fix: Keep button at bottom even if tags wrap === */
.project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-footer {
  margin-top: auto; /* pushes footer to bottom */
  padding-top: 6px;
  display: flex;
  justify-content: flex-start;
}

.project-card .tags {
  margin-bottom: 8px;
  line-height: 1.3;
}

/* Category Tag Colors */
.tag-layer1 {
  background: rgba(66, 135, 245, 0.25);
}

.tag-defi {
  background: rgba(255, 187, 0, 0.25);
}

.tag-ai {
  background: rgba(0, 255, 170, 0.25);
}

.tag-gaming {
  background: rgba(255, 0, 200, 0.25);
}

.tag-rwa {
  background: rgba(255, 90, 90, 0.25);
}

.tag-infrastructure {
  background: rgba(130, 90, 255, 0.25);
}

/* === Projects — enhancements (append to style.scss) === */
/* price & meta */
.price-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-value {
  font-weight: 700;
  font-family: monospace;
  font-size: 14px;
  color: var(--text);
}

.price-change {
  font-size: 12px;
}

.price-change.up {
  color: var(--green);
}

.price-change.down {
  color: var(--red);
}

/* score bar */
.score-block {
  min-width: 110px;
}

.score-label {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 4px;
}

.score-bar {
  width: 110px;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.score-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--gold));
  width: 0%;
  transition: width 350ms ease;
}

/* tokenomics preview */
.tokenomics-preview .tok-row {
  font-size: 12px;
  color: var(--muted);
}

.tok-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 6px;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.tok-fill {
  height: 100%;
  background: linear-gradient(90deg, rgba(214, 178, 74, 0.95), rgba(59, 208, 122, 0.85));
  transition: width 350ms ease;
}

/* compact meta row layout on mobile */
@media (max-width: 760px) {
  .meta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .score-block {
    min-width: 100%;
    width: 100%;
  }
}
/* category tag colors (already in your file, but included here for completeness) */
.tag-layer1 {
  background: rgba(66, 135, 245, 0.15);
  color: var(--text);
  padding: 4px 8px;
  border-radius: 999px;
  margin-right: 6px;
  display: inline-block;
}

.tag-defi {
  background: rgba(255, 187, 0, 0.12);
  color: var(--text);
  padding: 4px 8px;
  border-radius: 999px;
  margin-right: 6px;
  display: inline-block;
}

.tag-ai {
  background: rgba(0, 255, 170, 0.12);
  color: var(--text);
  padding: 4px 8px;
  border-radius: 999px;
  margin-right: 6px;
  display: inline-block;
}

.tag-gaming {
  background: rgba(255, 0, 200, 0.1);
  color: var(--text);
  padding: 4px 8px;
  border-radius: 999px;
  margin-right: 6px;
  display: inline-block;
}

.tag-rwa {
  background: rgba(255, 90, 90, 0.1);
  color: var(--text);
  padding: 4px 8px;
  border-radius: 999px;
  margin-right: 6px;
  display: inline-block;
}

.tag-infrastructure {
  background: rgba(130, 90, 255, 0.1);
  color: var(--text);
  padding: 4px 8px;
  border-radius: 999px;
  margin-right: 6px;
  display: inline-block;
}

/* small utilities */
.small {
  font-size: 12px;
}

.project-desc {
  min-height: 40px;
} /* keeps cards visually consistent */
/* -----------------------------------------
   PROJECT CARDS — LAYOUT + AESTHETICS
----------------------------------------- */
.project-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 215, 0, 0.2);
}

/* The new card-body + card-footer system */
.project-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Footer stays at bottom */
.project-card .card-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Clean logo presentation */
.project-card .coin-logo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin-bottom: 12px;
  -o-object-fit: contain;
     object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* -----------------------------------------
   TITLES & TEXT
----------------------------------------- */
.project-card h3 {
  font-size: 1.1rem;
  line-height: 1.35;
  font-weight: 600;
  margin-bottom: 6px;
}
.project-card h3 a {
  color: #fff;
  text-decoration: none;
}
.project-card h3 a:hover {
  color: var(--gold);
}

.project-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
  line-height: 1.45;
  /* Two-line clamp so card heights stay stable */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* -----------------------------------------
   TAGS (Category Badges)
----------------------------------------- */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.tag {
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  color: #e7e7e7;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Optional automatic category-based color tone */
.tag-layer1 {
  background: rgba(0, 127, 255, 0.15);
}

.tag-defi {
  background: rgba(0, 255, 163, 0.15);
}

.tag-ai {
  background: rgba(255, 147, 0, 0.18);
}

.tag-infrastructure {
  background: rgba(255, 0, 191, 0.18);
}

/* -----------------------------------------
   TOKENOMICS PREVIEW BAR
----------------------------------------- */
.tokenomics-preview .tok-bar {
  background: rgba(255, 255, 255, 0.05);
  height: 8px;
  width: 100%;
  border-radius: 6px;
  margin-top: 6px;
  overflow: hidden;
}

.tokenomics-preview .tok-fill {
  background: linear-gradient(90deg, #afff00, #9e770d);
  height: 100%;
  transition: width 0.4s ease;
}

/* -----------------------------------------
   GRID FIXES (consistent height system)
----------------------------------------- */
#projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
  width: 100%;
}

/* -----------------------------------------
   BUTTON FIXES
----------------------------------------- */
.btn-small {
  padding: 7px 16px;
  font-size: 0.85rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transition: all 0.2s;
}
.btn-small:hover {
  background: var(--gold);
  color: #111;
}

/* -----------------------------------------
   MOBILE IMPROVEMENTS
----------------------------------------- */
@media (max-width: 480px) {
  .project-card {
    padding: 16px;
    min-height: 330px;
  }
  .coin-logo {
    width: 48px;
    height: 48px;
  }
  .tags {
    gap: 4px;
  }
  .btn-small {
    padding: 6px 14px;
  }
}
/* === Leverage Calculator (updated) === */
/* === Leverage Calculator === */
.calculator-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.back-link {
  display: inline-block;
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  margin-right: 6px;
  padding: 6px 10px;
  border-radius: 8px;
  transition: all 160ms ease;
  border: 1px solid rgba(255, 255, 255, 0.03);
  background: rgba(255, 255, 255, 0.02);
}

.back-link:hover {
  transform: translateY(-2px);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

/* tabs */
.mode-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.tab {
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  color: var(--muted);
  transition: var(--transition);
}

.tab.active {
  background: var(--gold);
  color: #000;
  font-weight: 700;
}

/* panels */
.mode-panel {
  display: none;
  flex-direction: column;
  gap: 10px;
}

.mode-panel.active {
  display: flex;
}

.calculator-card input {
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  border-radius: 8px;
}

.calc-result {
  margin-top: 12px;
  padding: 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

/* --------------------------- Leverage Calculator styles --------------------------- */
.calculator-card {
  padding: 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.03);
}

/* Shared inputs horizontal bar */
.shared-inputs-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  align-items: start;
  margin: 12px 0 18px 0;
}

.shared-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-label {
  font-weight: 700;
  font-size: 13px;
}

.field-desc {
  margin-top: 2px;
  color: var(--muted);
}

.field-error {
  color: var(--red);
  font-size: 13px;
  min-height: 18px;
}

/* risk slider row */
.risk-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* default accent color uses --gold (keeps your theme) */
.risk-row input[type=range] {
  width: 100%;
  accent-color: var(--gold);
  transition: box-shadow 140ms ease, transform 120ms ease;
  height: 6px;
  border-radius: 6px;
}

/* When risk-high class applied: red accent */
.risk-row input[type=range].risk-high {
  accent-color: #ff5a5a;
  box-shadow: 0 4px 18px rgba(255, 90, 90, 0.12);
}

/* risk-value label */
.risk-value {
  min-width: 64px;
  text-align: center;
  font-weight: 700;
  transition: color 140ms ease, transform 120ms ease;
}

.risk-value.risk-high {
  color: #ff5a5a;
}

/* Mode tabs */
.mode-tabs {
  display: flex;
  gap: 10px;
  margin: 8px 0 12px 0;
}

.mode-tabs .tab {
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.mode-tabs .tab.active {
  background: linear-gradient(180deg, rgba(63, 173, 253, 0.95), rgba(255, 255, 255, 0.15));
  color: #000;
  font-weight: 700;
  border-color: rgba(214, 214, 214, 0.8);
}

/* Panels */
.mode-panels {
  margin-top: 6px;
}

.mode-panel {
  display: none;
  padding-top: 8px;
}

.mode-panel.active {
  display: block;
}

.mode-panel label {
  font-size: 13px;
  font-weight: 600;
  margin-top: 10px;
  display: block;
}

.mode-panel input[type=number] {
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

/* panel action buttons row */
.panel-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  align-items: center;
}

.btn-small.ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* Results: card-like highlight with gold border */
.calc-result {
  margin-top: 14px;
}

.result-card {
  border-radius: 12px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.12));
  border: 2px solid rgba(214, 178, 74, 0.12);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

.result-card h4 {
  margin: 0 0 8px 0;
}

.result-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  align-items: center;
  color: var(--muted);
}

.result-row .muted {
  color: var(--muted);
}

.result-row.highlight {
  border-top: 1px dashed rgba(255, 255, 255, 0.04);
  padding-top: 10px;
  margin-top: 6px;
  color: var(--text);
}

.result-row.highlight strong {
  color: #000;
  background: var(--gold);
  padding: 4px 8px;
  border-radius: 6px;
}

/* glossary */
.calc-glossary {
  margin-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.03);
  padding-top: 10px;
}

/* responsive */
@media (max-width: 900px) {
  .shared-inputs-bar {
    grid-template-columns: 1fr;
  }
  .result-row {
    font-size: 14px;
  }
}
/* -----------------------------------------
   Crypto Converter — Unified Styles (Pulse + Suggestions)
----------------------------------------- */
/* container grid for converter */
.calculator-card .converter-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Shared inputs bar (responsive) */
.shared-inputs-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 220px;
  gap: 12px;
  align-items: start;
}

.shared-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.field-label {
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
}

.field-desc {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.field-error {
  color: var(--red);
  font-size: 13px;
  min-height: 18px;
}

/* Inputs */
.calculator-card input[type=number],
.calculator-card input[type=text],
.calculator-card select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  box-shadow: none;
}

/* result card */
.result-card {
  margin-top: 8px;
  border-radius: 12px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.12));
  border: 2px solid rgba(214, 178, 74, 0.12);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
}

.result-card h3 {
  margin: 0 0 8px 0;
  color: var(--text);
}

.result-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  padding: 6px 0;
}

.result-row.highlight {
  margin-top: 8px;
  color: var(--text);
  border-top: 1px dashed rgba(255, 255, 255, 0.04);
  padding-top: 10px;
}

.result-row strong {
  color: #000;
  background: var(--gold);
  padding: 4px 8px;
  border-radius: 6px;
}

/* glossary */
.calc-glossary {
  margin-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.03);
  padding-top: 10px;
  color: var(--muted);
}

/* small screens */
@media (max-width: 900px) {
  .shared-inputs-bar {
    grid-template-columns: 1fr;
  }
  .result-row {
    font-size: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
/* -----------------------------------------
   Converter UI (suggestions + swap + results)
----------------------------------------- */
/* suggestions list (rich items with icon + symbol + name + price) */
.suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.98), rgba(12, 12, 12, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  padding: 6px;
  z-index: 2200;
  max-height: 340px;
  overflow: auto;
}

/* suggestion item */
.suggestion-item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 160ms ease, transform 120ms ease;
  color: var(--text);
}

.suggestion-item:hover,
.suggestion-item.highlight {
  background: rgba(214, 178, 74, 0.06);
  transform: translateY(-2px);
}

/* left (icon) */
.suggestion-item .s-left img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* mid (symbol + name) */
.suggestion-item .s-mid {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.suggestion-item .s-symbol {
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
}

.suggestion-item .s-name {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 260px;
}

/* right (price) */
.suggestion-item .s-right {
  margin-left: auto;
  font-weight: 600;
  font-family: monospace;
  font-size: 13px;
  color: var(--muted);
}

/* empty state */
.suggestion-empty {
  padding: 10px;
  color: var(--muted);
  text-align: center;
}

/* swap button small style */
#swapBtn {
  padding: 8px 10px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(17, 16, 16, 0.16));
  color: #000;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

#swapBtn:hover {
  transform: translateY(-2px);
}

/* Mode buttons */
.mode-btn {
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
  color: var(--muted);
  cursor: pointer;
}

.mode-btn.active {
  background: linear-gradient(180deg, rgba(63, 173, 253, 0.95), rgba(255, 255, 255, 0.15));
  color: #000;
  font-weight: 700;
  border-color: rgba(255, 255, 255, 0.8);
}

/* responsive behaviour tweaks */
@media (max-width: 900px) {
  .shared-inputs-bar {
    grid-template-columns: 1fr;
  }
  .suggestions {
    max-height: 260px;
  }
  .suggestion-item .s-name {
    max-width: 160px;
  }
}
/* -----------------------------------------
   Symbol Pulse Animation (compact, colorful-friendly)
----------------------------------------- */
/* container for pulse */
.symbol-pulse-container {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  padding: 8px 10px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.03);
  width: 220px;
}

/* ring (animated) */
.pulse-ring {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
  background: linear-gradient(180deg, rgba(10, 15, 30, 0.9), rgba(8, 10, 20, 0.9));
  border: 2px solid rgba(255, 255, 255, 0.03);
  overflow: visible;
}

/* inner small circle that pulses */
.pulse-ring::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #19c709;
  box-shadow: 0 6px 18px rgba(77, 166, 255, 0.12);
  transform: scale(1);
  transition: transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

/* colors for movement state */
.pulse-ring.up::before {
  background: #4DE68A;
  box-shadow: 0 8px 22px rgba(78, 230, 138, 0.12);
}

.pulse-ring.down::before {
  background: #FF7A7A;
  box-shadow: 0 8px 22px rgba(255, 122, 122, 0.12);
}

/* symbol label */
.symbol-label {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  letter-spacing: 0.6px;
}

/* price label */
.symbol-price {
  font-family: monospace;
  font-weight: 600;
  font-size: 13px;
  color: var(--muted);
}

/* pop animation on update */
.symbol-pulse-container.pulse-pop {
  animation: pulse-pop 360ms ease-out;
}

@keyframes pulse-pop {
  0% {
    transform: scale(0.995);
    opacity: 0.98;
  }
  40% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}
/* placeholder */
.pulse-placeholder {
  color: var(--muted);
  text-align: center;
}

/* mobile tweaks */
@media (max-width: 480px) {
  .symbol-pulse-container {
    width: 100%;
    gap: 10px;
    padding: 8px;
  }
  .pulse-ring {
    width: 42px;
    height: 42px;
  }
  .symbol-label {
    font-size: 13px;
  }
  .symbol-price {
    font-size: 12px;
  }
}
/* =========================
   Ad Heatmap Slots
========================= */
/* Hero-side ad (desktop only) */
.hero-ad {
  width: 300px;
  min-height: 250px; /* 300x250 */
}

/* Hide hero ad on smaller screens */
@media (max-width: 1100px) {
  .hero-ad {
    display: none;
  }
}
/* Mid-feed horizontal ad */
.mid-feed-ad {
  width: 100%;
  min-height: 250px; /* responsive in-article ad */
  margin: 24px 0;
}

/* Sidebar ad (desktop only) */
.sidebar-ad {
  width: 100%;
  min-height: 300px; /* flexible: supports 300x250, 300x600 */
  margin: 16px 0;
}

@media (max-width: 900px) {
  .sidebar-ad {
    display: none;
  }
}
/* ===== Analysis History UX ===== */
.history-item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
  cursor: pointer;
}

.history-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.history-title {
  font-weight: 600;
}

.history-preview {
  margin-top: 8px;
}

.status-badge {
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.badge-active {
  background: rgba(0, 200, 150, 0.15);
  color: #00c896;
}

.badge-completed {
  background: rgba(100, 160, 255, 0.15);
  color: #64a0ff;
}

.badge-invalid {
  background: rgba(255, 90, 90, 0.15);
  color: #ff5a5a;
}

.badge-neutral {
  background: rgba(255, 255, 255, 0.12);
  color: #aaa;
}

/* Active history item */
.history-item.active {
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid #64a0ff;
  padding-left: 12px;
}

.history-item.active .history-title {
  color: #fff;
}

.history-item.active .small {
  opacity: 1;
}

.latest-badge {
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 11px;
  border-radius: 999px;
  background: rgba(0, 200, 150, 0.15);
  color: #00c896;
  font-weight: 600;
}

.history-item {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.analysis-summary {
  font-weight: 500;
}

.analysis-body p {
  margin-top: 8px;
}

.scenario-section {
  margin-top: 20px;
}

.scenario-card {
  border-left: 3px solid rgba(255, 255, 255, 0.15);
  padding-left: 12px;
  margin-top: 14px;
}

.scenario-header {
  font-weight: 600;
  margin-bottom: 4px;
}

/* ===== Featured (Latest) Analysis Readability ===== */
.analysis-featured {
  font-size: 15.5px;
  line-height: 1.65;
}

.analysis-featured h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.analysis-featured .analysis-summary {
  font-size: 15px;
  color: var(--text);
}

.analysis-featured .analysis-body p {
  font-size: 15px;
}

.analysis-featured .scenario-header {
  font-size: 14.5px;
}

/* ===== Analysis Share Button ===== */
.analysis-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.share-btn {
  font-size: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(12, 73, 117, 0.79);
  color: #bbb;
  border: none;
  cursor: pointer;
}

.share-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

/* =========================
   Support / Buy Me a Coffee Card
========================= */
.support-card {
  background: linear-gradient(180deg, rgba(39, 168, 181, 0.15), rgba(15, 17, 19, 0.95));
  border: 1px solid rgba(208, 169, 15, 0.73);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.55);
  position: relative;
  overflow: hidden;
}

.support-card::before {
  content: "☕";
  position: absolute;
  top: -10px;
  right: 12px;
  font-size: 64px;
  opacity: 0.15;
  pointer-events: none;
}

.support-card h3 {
  color: #fff;
}

.support-card .support-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 6px;
}

.bmc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #b58b27;
  color: #000;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 6px 18px #664e15;
}

.bmc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px #756a02;
}

/* ------------------ Micro Badge ------------------ */
.micro-badge {
  display: inline-block;
  margin-top: 4px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--gold);
  background: rgba(39, 168, 181, 0.08);
  border: 1px solid rgba(39, 168, 181, 0.25);
  border-radius: 999px;
  width: -moz-fit-content;
  width: fit-content;
  cursor: none;
}

/* =========================
   Footer Divider Dots
========================= */
/* Footer links container */
footer > div:last-child {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* Each footer link */
footer > div:last-child a {
  position: relative;
  padding: 0 8px;
}

/* Dot between links */
footer > div:last-child a:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -4px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

/* =========================
   Footer — Mobile Fix
========================= */
@media (max-width: 760px) {
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  footer > div {
    width: 100%;
  }
  /* Footer links container */
  footer > div:last-child {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
  }
  footer a {
    font-size: 12px; /* smaller, cleaner */
    white-space: nowrap; /* prevents ugly word breaks */
  }
  footer .small {
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */