@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Qwitcher+Grypen:wght@400;700&display=swap');

/* ─── Design Tokens ─────────────────────────────────────────────────────────── */
:root {
  --c1: #ff2d2d;
  --c2: #ff6b00;
  --c1-dim: rgba(255, 45, 45, 0.18);
  --c1-glow: rgba(255, 45, 45, 0.5);
  --c2-glow: rgba(255, 107, 0, 0.4);
  --text-color: #f0ece8;
  --text-muted: #7a7570;
  --text-dim: #4a4641;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.07);
  --border-accent: rgba(255, 45, 45, 0.35);
  --bg-dark: #080707;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 100px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-italic: 'Playfair Display', serif;
  --font-script: 'Qwitcher Grypen', cursive;
}

/* Light theme overrides */
body.light-theme {
  --c1: #0057ff;
  --c2: #00c2ff;
  --c1-dim: rgba(0, 87, 255, 0.12);
  --c1-glow: rgba(0, 87, 255, 0.4);
  --c2-glow: rgba(0, 194, 255, 0.3);
  --text-color: #0d0d14;
  --text-muted: #60637a;
  --text-dim: #a0a3bc;
  --surface: rgba(0, 0, 0, 0.04);
  --surface-hover: rgba(0, 0, 0, 0.07);
  --border: rgba(0, 0, 0, 0.08);
  --border-accent: rgba(0, 87, 255, 0.3);
  --bg-dark: #f4f2f0;
}

/* ─── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body, html {
  font-family: var(--font-body);
  color: var(--text-color);
  min-height: 100vh;
  overflow-x: hidden;
  background-color: var(--bg-dark);
}

body {
  background-image: url('background.gif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  cursor: none;
}

body.light-theme {
  background-image: url('background12.gif');
  cursor: none;
}

a, button { cursor: none; }

/* ─── Cursor Canvas ─────────────────────────────────────────────────────────── */
#cursor-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
}

/* ─── Loading Screen ────────────────────────────────────────────────────────── */
#loading-screen {
  position: fixed;
  inset: 0;
  background: #0a0908;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.loading-content {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Diagonal grid lines on loading */
.loading-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,45,45,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,45,45,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.logo {
  position: absolute;
  top: 28px;
  left: 32px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.15em;
  color: var(--c1);
  text-transform: uppercase;
}

.service-info {
  position: absolute;
  top: 28px;
  right: 32px;
  font-size: 10px;
  text-align: right;
  max-width: 180px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.8;
}

.image-stack {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  cursor: none;
  filter: drop-shadow(0 0 40px var(--c1-glow));
}

.stack-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#loading-progress {
  position: absolute;
  bottom: 28px;
  right: 32px;
  font-family: var(--font-display);
  font-size: 72px;
  letter-spacing: -0.02em;
  color: var(--text-color);
  line-height: 1;
  opacity: 0.12;
}

/* Loading bar at bottom */
.loading-content::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: var(--load-pct, 0%);
  background: linear-gradient(90deg, var(--c1), var(--c2));
  transition: width 0.2s ease;
  box-shadow: 0 0 12px var(--c1-glow);
}

/* ─── Navigation ────────────────────────────────────────────────────────────── */
.fixed-nav {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  background: rgba(8, 7, 7, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 6px 8px;
  z-index: 1000;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
}

body.light-theme .fixed-nav {
  background: rgba(244, 242, 240, 0.7);
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.8);
}

.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.logo-container { display: none; }

.nav-buttons {
  display: flex;
  gap: 2px;
}

.nav-button {
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  position: relative;
  background: transparent;
  border: none;
  white-space: nowrap;
}

.nav-button:hover {
  color: var(--text-color);
  background: var(--surface-hover);
}

.nav-button.active,
.nav-button:focus-visible {
  color: var(--c1);
  background: var(--c1-dim);
}

/* Theme Toggle */
.theme-toggle { margin-left: 8px; padding-left: 12px; border-left: 1px solid var(--border); }

.theme-switch { display: none; }

.theme-switch-label {
  display: inline-flex;
  align-items: center;
  width: 48px;
  height: 26px;
  background: var(--surface-hover);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  position: relative;
  cursor: none;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.theme-switch-label::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  background: var(--text-muted);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
}

.theme-switch:checked + .theme-switch-label {
  background: var(--c1-dim);
  border-color: var(--border-accent);
}

.theme-switch:checked + .theme-switch-label::before {
  transform: translateX(22px);
  background: var(--c1);
}

/* ─── Mobile Menu ───────────────────────────────────────────────────────────── */
.mobile-menu-toggle { display: none; }
.mobile-menu { display: none; }

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

.parallax-text-container {
  position: absolute;
  top: 42%;
  left: 24%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  pointer-events: none;
}

.parallax-text {
  position: relative;
  font-family: var(--font-display);
  font-size: 8vw;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-block;
  letter-spacing: 0.04em;
}

.text-layer {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.edge {
  position: absolute;
  top: 0; left: 0;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.15);
  z-index: 1;
}

.glow {
  position: absolute;
  top: 0; left: 0;
  color: var(--text-color);
  text-shadow:
    0 0 40px var(--c1-glow),
    0 0 80px var(--c2-glow);
  z-index: 2;
  opacity: 0.9;
}

body.light-theme .edge {
  -webkit-text-stroke: 1.5px rgba(0,0,0,0.12);
}

body.light-theme .glow {
  color: var(--text-color);
  text-shadow:
    0 0 40px var(--c1-glow),
    0 0 80px var(--c2-glow);
}

/* Fixed watermark text */
.p3x-text {
  position: fixed;
  top: 88px;
  left: 24px;
  font-family: var(--font-script);
  font-size: 52px;
  font-weight: 700;
  color: var(--text-color);
  opacity: 0.7;
  text-shadow: 0 0 20px var(--c1-glow);
  z-index: 10;
  pointer-events: none;
}

/* ─── Main Container ────────────────────────────────────────────────────────── */
.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 24px 40px;
  position: relative;
  z-index: 1;
}

/* ─── Profile ───────────────────────────────────────────────────────────────── */
.profile {
  text-align: center;
  margin-bottom: 36px;
}

.profile-pic-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.profile-pic {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-accent);
  box-shadow:
    0 0 0 6px var(--c1-dim),
    0 0 40px var(--c1-glow),
    0 0 80px var(--c2-glow);
  display: block;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.profile-pic:hover {
  transform: scale(1.04);
  box-shadow:
    0 0 0 8px var(--c1-dim),
    0 0 60px var(--c1-glow),
    0 0 100px var(--c2-glow);
}

/* Rotating ring */
.profile-pic-wrapper::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--c1), var(--c2), transparent, transparent, var(--c1));
  animation: spin-ring 4s linear infinite;
  opacity: 0.6;
  z-index: -1;
}

@keyframes spin-ring {
  to { transform: rotate(360deg); }
}

.username {
  font-family: var(--font-display);
  font-size: 42px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 6px;
  background: linear-gradient(135deg, var(--c1) 0%, var(--c2) 60%, #ffdd57 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 16px var(--c1-glow));
}

.bio {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 16px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ─── Contacts Heading ──────────────────────────────────────────────────────── */
.contacts-heading {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c1);
  margin: 8px 0 20px;
  opacity: 0.7;
  position: relative;
}

.contacts-heading::before,
.contacts-heading::after {
  content: '——';
  margin: 0 12px;
  opacity: 0.4;
}

/* ─── Links ─────────────────────────────────────────────────────────────────── */
.links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 380px;
  width: 100%;
}

.link-item {
  display: flex;
  align-items: center;
  background: var(--surface);
  color: var(--text-color);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.34, 1.3, 0.64, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

/* Left accent bar */
.link-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--c1), var(--c2));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

/* Shimmer sweep */
.link-item::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  transition: left 0.5s ease;
}

.link-item:hover::after { left: 150%; }
.link-item:hover::before { opacity: 1; }

.link-item:hover {
  transform: translateX(4px);
  border-color: var(--border-accent);
  background: var(--surface-hover);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3), -4px 0 20px var(--c1-dim);
}

.link-title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
  flex: 1;
  transition: color 0.3s ease;
}

.link-item:hover .link-title {
  color: var(--c1);
}

.hover-image {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: blur(6px) brightness(0.7);
  z-index: 1;
}

.link-item:hover .hover-image {
  right: 14px;
  opacity: 1;
  filter: blur(0) brightness(1);
}

/* Discord button */
.discord-btn {
  border: 1px solid var(--border);
  cursor: none;
  background: var(--surface);
  color: var(--text-color);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.34, 1.3, 0.64, 1);
  backdrop-filter: blur(12px);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: left;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.discord-btn::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--c1), var(--c2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.discord-btn:hover::before { opacity: 1; }
.discord-btn:hover {
  transform: translateX(4px);
  border-color: var(--border-accent);
  background: var(--surface-hover);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3), -4px 0 20px var(--c1-dim);
  color: var(--c1);
}

/* Copy notification */
.copy-notification {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(8,7,7,0.9);
  border: 1px solid var(--border-accent);
  color: var(--c1);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px var(--c1-dim);
  z-index: 5000;
}

/* ─── Mods Section ──────────────────────────────────────────────────────────── */
.mods-section {
  max-width: 860px;
  margin: 60px auto;
  padding: 48px 32px;
  background: rgba(8,7,7,0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  backdrop-filter: blur(20px);
}

/* Corner accents */
.mods-section::before,
.mods-section::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: var(--c1);
  border-style: solid;
  opacity: 0.4;
}
.mods-section::before {
  top: 12px; left: 12px;
  border-width: 2px 0 0 2px;
  border-radius: var(--radius-sm) 0 0 0;
}
.mods-section::after {
  bottom: 12px; right: 12px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 var(--radius-sm) 0;
}

.mid-align { text-align: center; }

.f14 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-color);
  margin-bottom: 36px;
  position: relative;
  display: inline-block;
}

.f14::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--c1), var(--c2));
  border-radius: 2px;
  box-shadow: 0 0 12px var(--c1-glow);
}

.mod-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mod-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.mod-item:hover {
  border-color: var(--border-accent);
}

.mod-item h3 {
  background: var(--surface);
  color: var(--text-color);
  padding: 16px 20px;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
  user-select: none;
}

.mod-item h3:hover {
  background: var(--surface-hover);
  color: var(--c1);
}

.toggle-btn {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
  line-height: 1;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  font-family: var(--font-body);
}

.mod-item h3:hover .toggle-btn {
  color: var(--c1);
  border-color: var(--border-accent);
}

.mod-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  background: rgba(0,0,0,0.3);
  opacity: 0;
}

.mod-content.active {
  opacity: 1;
  padding: 24px;
}

.screenshot {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin-top: 12px;
  border: 1px solid var(--border);
}

.install-guide ol { padding-left: 20px; }

.install-guide li {
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.video-tutorial { margin-top: 20px; }
.video-tutorial h4 {
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── Fade-in Utility ───────────────────────────────────────────────────────── */
.fade-in-element {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-element.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Glow Pulse on click ───────────────────────────────────────────────────── */
@keyframes glow-pulse {
  0%   { box-shadow: 0 4px 24px rgba(0,0,0,0.3), -4px 0 20px var(--c1-dim); }
  50%  { box-shadow: 0 4px 40px rgba(0,0,0,0.4), -4px 0 40px var(--c1-glow); }
  100% { box-shadow: 0 4px 24px rgba(0,0,0,0.3), -4px 0 20px var(--c1-dim); }
}

.link-item:active {
  animation: glow-pulse 0.5s ease;
}

/* ─── Scrollbar ─────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: var(--c1-dim);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--border-accent);
}

/* ─── Selection ─────────────────────────────────────────────────────────────── */
::selection {
  background: var(--c1-dim);
  color: var(--c1);
}

/* ─── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  body { cursor: auto; }
  a, button { cursor: pointer; }

  .fixed-nav {
    width: 90%;
    padding: 8px 12px;
  }

  .nav-container {
    justify-content: space-between;
  }

  .logo-container {
    display: block;
  }

  .logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 0.12em;
    color: var(--c1);
  }

  .nav-buttons { display: none; }

  /* Hamburger */
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
  }

  .mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(8,7,7,0.95);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px 28px;
    z-index: 999;
    backdrop-filter: blur(20px);
  }

  .mobile-menu.active { display: block; }

  .mobile-menu-item {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s ease;
  }

  .mobile-menu-item:last-child { border-bottom: none; }
  .mobile-menu-item:hover { color: var(--c1); }

  .p3x-text { display: none; }

  #loading-progress {
    font-size: 48px;
    bottom: 20px;
    right: 20px;
  }

  .image-stack {
    width: 200px;
    height: 200px;
  }

  .parallax-text-container {
    top: 45%;
    left: 4%;
    transform: none;
    text-align: left;
  }

  .parallax-text { font-size: 15vw; }

  .edge { top: 2px; left: 2px; }
  .glow { top: -2px; left: -2px; }

  .profile-pic { width: 90px; height: 90px; }
  .username { font-size: 32px; }
  .bio { font-size: 15px; }

  .links { max-width: 100%; }

  .link-item { padding: 13px 16px; }

  .mods-section {
    padding: 32px 20px;
    margin: 40px 16px;
  }

  .f14 { font-size: 1.8rem; }

  .link-item .hover-image {
    opacity: 0;
    right: -50px;
  }
  .link-item:active .hover-image {
    opacity: 1;
    right: 14px;
  }
}

/* Remove old star trail — no longer needed */
#star-trail, .star { display: none !important; }