/* ═══════════════════════════════════════════════════════════
   SalmonMC · EcoMoney Survival — Main Stylesheet
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg:           #0c071a;
  --bg-elevated:  #160e32;
  --bg-card:      #1c123d;
  --bg-card-hover:#241650;
  --aqua:         #00a8c4;
  --aqua-soft:    #00e5ff;
  --gold:         #41ff57;
  --gold-soft:    #9affad;
  --gold-dim:     #27c996;
  --text:         #f0eaf8;
  --text-muted:   #a89bc0;
  --text-dim:     #6e5f8a;
  --success:      #5dff9a;
  --danger:       #ff5c7a;
  --border:       rgba(255, 213, 65, 0.12);
  --radius:       16px;
  --radius-sm:    10px;
  --shadow:       0 20px 50px rgba(0, 0, 0, 0.45);
  --font-pixel:   'Press Start 2P', system-ui, monospace;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; cursor: pointer; background: none; color: inherit; }

.pixel {
  font-family: var(--font-pixel);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* ── Background FX ─────────────────────────────────────── */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: float 18s ease-in-out infinite;
}
.orb.a {
  width: 420px; height: 420px;
  background: #00a8c4;
  top: -120px; left: -80px;
}
.orb.b {
  width: 340px; height: 340px;
  background: #ffd541;
  bottom: 10%; right: -60px;
  opacity: 0.18;
  animation-delay: -6s;
}
.orb.c {
  width: 280px; height: 280px;
  background: #007a8f;
  top: 45%; left: 35%;
  opacity: 0.25;
  animation-delay: -11s;
}

.grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 213, 65, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 213, 65, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, black 20%, transparent 70%);
}

.noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(30px, -40px); }
}

/* ── Layout ────────────────────────────────────────────── */
.content {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

/* ── Top / Hero ────────────────────────────────────────── */
.top {
  position: relative;
  padding-top: 24px;
  padding-bottom: 48px;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 18px;
  background: rgba(22, 14, 50, 0.72);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-brand .mark {
  width: 40px; height: 40px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--aqua);
  box-shadow: 0 0 16px rgba(255, 213, 65, 0.35);
}
.nav-brand .mark img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.nav-brand .name {
  font-family: var(--font-pixel);
  font-size: 0.72rem;
  color: var(--text);
}
.nav-brand .name span {
  color: var(--aqua);
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
nav a {
  font-size: 0.58rem;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}
nav a:hover {
  color: var(--gold-soft);
  background: rgba(255, 213, 65, 0.08);
}
nav a.active {
  color: var(--bg);
  background: var(--aqua);
  box-shadow: 0 0 20px #04019c65;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: 0.25s;
}

/* Floating blocks + particles */
.float-blocks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.float-blocks i {
  position: absolute;
  width: 18px; height: 18px;
  background: var(--gold);
  opacity: 0.12;
  border-radius: 3px;
  animation: block-float 12s ease-in-out infinite;
}
.float-blocks i:nth-child(1) { top: 18%; left: 8%;  animation-delay: 0s; }
.float-blocks i:nth-child(2) { top: 32%; right: 12%; width: 12px; height: 12px; animation-delay: -3s; }
.float-blocks i:nth-child(3) { top: 55%; left: 15%; width: 14px; height: 14px; animation-delay: -6s; }
.float-blocks i:nth-child(4) { top: 22%; left: 55%; width: 10px; height: 10px; animation-delay: -2s; }
.float-blocks i:nth-child(5) { top: 70%; right: 22%; animation-delay: -8s; }

@keyframes block-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-28px) rotate(12deg); }
}

.hero-particles span {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold-soft);
  border-radius: 50%;
  opacity: 0.5;
  animation: particle 9s linear infinite;
}
.hero-particles span:nth-child(1)  { top: 20%; left: 20%; animation-delay: 0s; }
.hero-particles span:nth-child(2)  { top: 40%; left: 70%; animation-delay: -1.5s; }
.hero-particles span:nth-child(3)  { top: 60%; left: 35%; animation-delay: -3s; }
.hero-particles span:nth-child(4)  { top: 25%; left: 85%; animation-delay: -4.5s; }
.hero-particles span:nth-child(5)  { top: 75%; left: 10%; animation-delay: -6s; }
.hero-particles span:nth-child(6)  { top: 50%; left: 50%; animation-delay: -2s; }
.hero-particles span:nth-child(7)  { top: 15%; left: 45%; animation-delay: -7s; }
.hero-particles span:nth-child(8)  { top: 80%; left: 65%; animation-delay: -1s; }
.hero-particles span:nth-child(9)  { top: 35%; left: 5%;  animation-delay: -5s; }
.hero-particles span:nth-child(10) { top: 65%; left: 90%; animation-delay: -8s; }

@keyframes particle {
  0%   { transform: translateY(0) scale(1); opacity: 0.5; }
  50%  { opacity: 0.9; }
  100% { transform: translateY(-60px) scale(0.4); opacity: 0; }
}

/* Brand row */
.brand-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-top: 56px;
}

.info-panel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(28, 18, 61, 0.75);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  cursor: pointer;
}
.info-panel:hover {
  border-color: rgba(65, 255, 78, 0.35);
  box-shadow: 0 0 28px rgba(255, 213, 65, 0.12);
  transform: translateY(-3px);
}
.info-panel .count {
  font-size: 0.62rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.info-panel .info-title {
  font-size: 0.7rem;
  color: var(--text);
  margin-top: 2px;
}
.info-panel .info-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.play-icon {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  background: rgba(255, 213, 65, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}
.play-icon img { width: 24px; height: 24px; }

.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text-dim);
  display: inline-block;
}
.status-dot.online {
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
}
.status-dot.offline {
  background: var(--danger);
  box-shadow: 0 0 8px var(--danger);
}

/* Logo centerpiece */
.logo-wrap {
  position: relative;
  text-align: center;
  padding: 20px 0;
}
.logo-ring {
  position: absolute;
  inset: -20px;
  border: 2px solid rgba(255, 213, 65, 0.15);
  border-radius: 50%;
  animation: spin 28s linear infinite;
}
.logo-ring::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(255, 213, 65, 0.2);
  border-radius: 50%;
}
.logo-glow {
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle, rgba(255, 213, 65, 0.18) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.logo-text {
  font-size: 1.65rem;
  color: var(--aqua);
  text-shadow: 0 0 30px rgba(0, 240, 8, 0.45);
  position: relative;
  z-index: 1;
}
.logo-text .line2 {
  color: var(--text);
  font-size: 1.1rem;
}
.sub-tag {
  margin-top: 12px;
  font-size: 0.48rem;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  position: relative;
  z-index: 1;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Mobile drawer ─────────────────────────────────────── */
.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.mobile-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(300px, 85vw);
  height: 100%;
  background: var(--bg-elevated);
  border-left: 1px solid var(--border);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.mobile-drawer-close {
  font-size: 1.2rem;
  color: var(--text-muted);
  padding: 6px 10px;
}
.mobile-drawer-close:hover { color: var(--gold); }

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.mobile-nav-item {
  display: block;
  font-size: 0.7rem;
  padding: 14px 16px;
  border-radius: 12px;
  color: var(--text-muted);
  transition: 0.2s;
}
.mobile-nav-item:hover,
.mobile-nav-item.active {
  background: rgba(255, 213, 65, 0.1);
  color: var(--gold);
}

.mobile-drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.mobile-drawer-action {
  display: block;
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 213, 65, 0.08);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: left;
  transition: 0.2s;
}
.mobile-drawer-action:hover {
  border-color: rgba(255, 213, 65, 0.35);
  background: rgba(255, 213, 65, 0.14);
}
.mobile-drawer-action span {
  display: block;
  font-size: 0.85rem;
  color: var(--text);
}
.mobile-drawer-action .hint {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── Jagged divider ────────────────────────────────────── */
.jagged {
  height: 28px;
  background:
    linear-gradient(135deg, var(--bg) 33.33%, transparent 33.33%) 0 0 / 20px 28px,
    linear-gradient(225deg, var(--bg) 33.33%, transparent 33.33%) 0 0 / 20px 28px;
  margin: 0 -20px 48px;
  opacity: 0.6;
}

/* ── Section head ──────────────────────────────────────── */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.section-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 8px;
}
.section-head h2 {
  font-size: 1.15rem;
  color: var(--text);
}
.section-head h2 span {
  color: var(--gold);
}
.section-head p {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 420px;
}
.section-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 213, 65, 0.1);
  border: 1px solid rgba(255, 213, 65, 0.25);
  color: var(--gold);
  white-space: nowrap;
}

/* ── Store tiles ───────────────────────────────────────── */
.store {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}

.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
  padding: 22px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s, background 0.3s;
  transform-style: preserve-3d;
  perspective: 800px;
}
.tile:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 213, 65, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 213, 65, 0.08);
  transform: translateY(-8px) scale(1.015);
}

.tile .mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 213, 65, 0.08), transparent 50%),
    linear-gradient(135deg, transparent 40%, rgba(0, 168, 196, 0.12));
  pointer-events: none;
}

.tile .badge {
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--font-pixel);
  font-size: 0.45rem;
  padding: 5px 9px;
  border-radius: 6px;
  letter-spacing: 0.06em;
}
.badge.hot {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 0 14px rgba(255, 213, 65, 0.45);
}
.badge.soon {
  background: rgba(168, 155, 192, 0.15);
  color: var(--text-muted);
  border: 1px solid rgba(168, 155, 192, 0.25);
}

.tile .label {
  font-size: 0.78rem;
  color: var(--text);
  margin-bottom: 6px;
}
.tile .hint {
  font-size: 0.48rem;
  color: var(--text-muted);
}

.tile-icon {
  width: 48px; height: 48px;
  margin-top: 12px;
  align-self: flex-end;
}
.tile-icon svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Tile spans */
.tile.ranks  { grid-column: span 2; }
.tile.crates { grid-column: span 2; }
.tile.coins  { grid-column: span 2; }
.tile.lands  { grid-column: span 3; }
.tile.perks  { grid-column: span 3; }

/* ── Features ──────────────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 64px;
}

.feature-card {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: 0.3s;
}
.feature-card:hover {
  border-color: rgba(202, 0, 142, 0.641);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature-card .icon {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  background: rgba(255, 213, 65, 0.1);
  border-radius: 12px;
  color: var(--gold);
  margin-bottom: 18px;
}
.feature-card .icon svg {
  width: 24px; height: 24px;
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ── Join band ─────────────────────────────────────────── */
.join-band {
  margin-bottom: 48px;
}
.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 32px 36px;
  background: linear-gradient(135deg, rgba(0, 168, 196, 0.25), rgba(255, 213, 65, 0.08));
  border: 1px solid rgba(255, 213, 65, 0.2);
  border-radius: 20px;
  box-shadow: 0 0 50px rgba(0, 168, 196, 0.15);
  flex-wrap: wrap;
}
.cta-card h3 {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.cta-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 380px;
}
.cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-primary {
  padding: 14px 28px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 12px;
  box-shadow: 0 0 24px rgba(255, 213, 65, 0.35);
  transition: 0.25s;
}
.btn-primary:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(255, 213, 65, 0.5);
}

.btn-ghost {
  padding: 14px 28px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: 0.25s;
}
.btn-ghost:hover {
  border-color: rgba(255, 213, 65, 0.4);
  color: var(--gold);
  background: rgba(255, 213, 65, 0.06);
}

/* ── Footer ────────────────────────────────────────────── */
footer {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
}
.footer-meta p {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.footer-meta strong {
  color: var(--text-muted);
  font-weight: 600;
}

.socials {
  display: flex;
  gap: 12px;
}
.socials a {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: 0.25s;
}
.socials a:hover {
  border-color: rgba(255, 213, 65, 0.35);
  background: rgba(255, 213, 65, 0.1);
  transform: translateY(-2px);
}
.socials img {
  width: 20px; height: 20px;
  opacity: 0.85;
}

.back-to-top {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: 0.25s;
}
.back-to-top:hover {
  color: var(--gold);
  border-color: rgba(255, 213, 65, 0.3);
}

/* ── Toast ─────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 14px 24px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 213, 65, 0.3);
  border-radius: 12px;
  font-size: 0.88rem;
  color: var(--text);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 200;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.toast span {
  color: var(--gold);
}

/* ── Scroll reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 900px) {
  .store {
    grid-template-columns: repeat(2, 1fr);
  }
  .tile.ranks,
  .tile.crates,
  .tile.coins,
  .tile.lands,
  .tile.perks {
    grid-column: span 1;
  }
  .tile.lands,
  .tile.perks {
    grid-column: span 2;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .brand-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .logo-wrap {
    order: -1;
  }
  .info-panel:last-of-type {
    flex-direction: row-reverse;
  }
}

@media (max-width: 720px) {
  nav { display: none; }
  .menu-toggle { display: flex; }

  .nav-shell {
    border-radius: 16px;
  }

  .logo-text {
    font-size: 1.3rem;
  }
  .logo-text .line2 {
    font-size: 0.9rem;
  }

  .section-head h2 {
    font-size: 0.95rem;
  }

  .cta-card {
    padding: 24px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-actions {
    width: 100%;
  }
  .btn-primary,
  .btn-ghost {
    flex: 1;
    text-align: center;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .store {
    grid-template-columns: 1fr;
  }
  .tile.ranks,
  .tile.crates,
  .tile.coins,
  .tile.lands,
  .tile.perks {
    grid-column: span 1;
  }
  .content {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .orb,
  .float-blocks i,
  .hero-particles span,
  .logo-ring,
  .reveal {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

::selection {
  background: rgba(0, 229, 255, 0.35);
  color: #e0fbff;
}

::-moz-selection {
  background: rgba(0, 229, 255, 0.35);
  color: #e0fbff;
}

/* Custom Scrollbar — SalmonMC (aqua accent) */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #0c071a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00e5ff 0%, #00a8c4 100%);
  border-radius: 999px;
  border: 2px solid #0c071a;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #7ff9ff 0%, #00e5ff 100%);
}

::-webkit-scrollbar-corner {
  background: #0c071a;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #00e5ff #0c071a;
}