:root {
  --bg-dark: #050609;
  --card-bg: rgba(12, 14, 22, 0.68);
  --card-border: rgba(255, 255, 255, 0.08);
  --card-glow: rgba(10, 132, 255, 0.15);

  --saka-blue: #0a84ff;
  --saka-green: #30d19e;
  --saka-purple: #8c78ff;
  --saka-cyan: #00f3ff;

  --text-main: #ffffff;
  --text-muted: #8e93b4;
  --text-sub: #525675;

  --status-online: #30d19e;
  --status-idle: #f0b232;
  --status-dnd: #ff453a;
  --status-offline: #636366;

  --font-heading: 'Outfit', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after, body, a, button, input, textarea, select, label, [role="button"] {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-height: 100vh;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-user-drag: none;
}

::selection {
  background: rgba(10, 132, 255, 0.3);
  color: #fff;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--saka-cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px var(--saka-cyan), 0 0 24px var(--saka-blue);
  transition: transform 0.05s linear;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(0, 243, 255, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
  background: radial-gradient(circle, rgba(0, 243, 255, 0.06) 0%, transparent 70%);
}

.mesh-glows {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.38;
  animation: float-mesh 14s infinite alternate ease-in-out;
}

.glow-1 {
  top: 5%;
  left: 8%;
  width: 580px;
  height: 580px;
  background: radial-gradient(ellipse, rgba(10, 132, 255, 0.3) 0%, transparent 65%);
}

.glow-2 {
  top: 25%;
  right: 5%;
  width: 620px;
  height: 620px;
  background: radial-gradient(ellipse, rgba(48, 209, 158, 0.22) 0%, transparent 65%);
  animation-delay: -5s;
}

.glow-3 {
  bottom: 5%;
  left: 25%;
  width: 680px;
  height: 680px;
  background: radial-gradient(ellipse, rgba(140, 120, 255, 0.24) 0%, transparent 65%);
  animation-delay: -9s;
}

@keyframes float-mesh {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(35px, 45px) scale(1.1); }
}

#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 6, 9, 0.97);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.splash-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.splash-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  animation: splash-float 3.5s infinite ease-in-out;
}

.splash-logo {
  font-family: var(--font-heading);
  font-size: clamp(4.5rem, 11vw, 8rem);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1.15;
  display: inline-block;
  overflow: visible;
  padding-bottom: 16px;
  background: linear-gradient(180deg, #ffffff 40%, var(--saka-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 35px rgba(10, 132, 255, 0.3));
}

.splash-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: lowercase;
  transition: var(--transition-fast);
}

.splash-screen:hover .splash-chip {
  border-color: var(--saka-blue);
  color: #fff;
  background: rgba(10, 132, 255, 0.1);
  box-shadow: 0 0 30px rgba(10, 132, 255, 0.45);
}

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

.top-nav-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: opacity 0.5s ease;
}

.top-nav-container.hidden {
  opacity: 0;
  pointer-events: none;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 8px;
  background: rgba(12, 14, 22, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50px;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.nav-tab {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 6px 16px;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  transition: var(--transition-fast);
  text-decoration: none;
}

.nav-tab:hover {
  color: #fff;
}

.nav-tab.active {
  background: var(--saka-blue);
  color: #fff;
  box-shadow: 0 0 15px rgba(10, 132, 255, 0.5);
}

.nav-status-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-dot.online { background-color: var(--status-online); box-shadow: 0 0 8px var(--status-online); }
.status-dot.idle { background-color: var(--status-idle); box-shadow: 0 0 8px var(--status-idle); }
.status-dot.dnd { background-color: var(--status-dnd); box-shadow: 0 0 8px var(--status-dnd); }
.status-dot.offline { background-color: var(--status-offline); }

.nav-status-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.nav-clock {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-sub);
  padding-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.music-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 16px;
  background: rgba(10, 12, 18, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  backdrop-filter: blur(25px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.music-pill-art {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--saka-blue);
  font-size: 0.85rem;
}

.music-pill-art.playing {
  animation: spin-disc 5s linear infinite;
}

@keyframes spin-disc {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.music-pill-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.pill-song { color: #fff; font-weight: 700; }
.pill-artist { color: var(--text-muted); }

.music-pill-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.pill-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.pill-btn:hover {
  color: var(--saka-blue);
  transform: scale(1.15);
}

.volume-slider-wrap {
  width: 55px;
  display: flex;
  align-items: center;
}

.pill-volume-bar {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
}

.pill-volume-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--saka-blue);
}

.app-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 100px 20px;
  transition: opacity 0.5s ease;
}

.app-container.hidden {
  opacity: 0;
  pointer-events: none;
}

.page-section {
  padding-top: 140px;
  margin-bottom: 120px;
}

/* DRAMATIC BLUR & SCALE SCROLL ENTRANCE ANIMATION */
.reveal-card {
  opacity: 0;
  transform: translateY(60px) scale(0.9) rotateX(10deg);
  filter: blur(12px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
  perspective: 1000px;
}

.reveal-card.in-view {
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0deg);
  filter: blur(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

.sec-home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding-top: 120px;
  margin-bottom: 60px;
}

.home-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex: 1;
}

.hero-left { flex: 1; }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 14vw, 9.5rem);
  font-weight: 900;
  letter-spacing: -4px;
  line-height: 1.15;
  display: inline-block;
  overflow: visible;
  padding-bottom: 16px;
  background: linear-gradient(180deg, #ffffff 45%, var(--saka-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 45px rgba(10, 132, 255, 0.25));
}

.hero-subtitle {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: var(--text-muted);
}

.typing-cursor {
  color: var(--saka-blue);
  animation: blink 1s infinite;
}

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

.hero-right { flex-shrink: 0; }

.clock-widget {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 30px 40px;
  backdrop-filter: blur(25px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  text-align: center;
  transition: transform var(--transition-bounce), border-color var(--transition-fast);
}

.clock-widget:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(10, 132, 255, 0.4);
}

.digital-clock {
  font-family: var(--font-mono);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
}

.clock-tz {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-sub);
  letter-spacing: 1.5px;
  display: block;
  margin-top: 6px;
}

.scroll-arrow-wrapper {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s ease;
}

.scroll-arrow-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--saka-blue);
  font-size: 0.9rem;
  animation: bounce-arrow 2s infinite ease-in-out;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.scroll-arrow-wrapper:hover .scroll-arrow-btn {
  border-color: var(--saka-blue);
  background: rgba(10, 132, 255, 0.1);
  box-shadow: 0 0 20px rgba(10, 132, 255, 0.4);
}

.scroll-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 3px;
  color: var(--text-sub);
}

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

.section-header { margin-bottom: 40px; }

.section-tag {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(10, 132, 255, 0.1);
  border: 1px solid rgba(10, 132, 255, 0.25);
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--saka-blue);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -2px;
  color: #fff;
  line-height: 1;
}

.section-desc {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.glass-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 28px;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  transition: transform var(--transition-bounce), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.glass-card:hover {
  transform: translateY(-5px) scale(1.015);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 40px var(--card-glow);
}

.glass-card.full-width { grid-column: 1 / -1; }

.card-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-sub);
  letter-spacing: 1.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.discord-user-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.discord-avatar-wrap {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
}

.discord-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.status-dot-large {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid var(--bg-dark);
}

.status-dot-large.online { background-color: var(--status-online); box-shadow: 0 0 12px var(--status-online); }
.status-dot-large.idle { background-color: var(--status-idle); box-shadow: 0 0 12px var(--status-idle); }
.status-dot-large.dnd { background-color: var(--status-dnd); box-shadow: 0 0 12px var(--status-dnd); }
.status-dot-large.offline { background-color: var(--status-offline); }

.user-handle-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}

.status-title-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: lowercase;
}

.status-title-badge.online { background: rgba(48, 209, 158, 0.12); color: var(--status-online); border: 1px solid rgba(48, 209, 158, 0.3); }
.status-title-badge.idle { background: rgba(240, 178, 50, 0.12); color: var(--status-idle); border: 1px solid rgba(240, 178, 50, 0.3); }
.status-title-badge.dnd { background: rgba(255, 69, 58, 0.12); color: var(--status-dnd); border: 1px solid rgba(255, 69, 58, 0.3); }
.status-title-badge.offline { background: rgba(99, 99, 102, 0.12); color: var(--status-offline); border: 1px solid rgba(99, 99, 102, 0.3); }

.custom-status-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px 16px;
  margin-top: 8px;
}

.status-quote-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-sub);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}

.status-quote-body {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.custom-emoji-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  vertical-align: middle;
}

.activity-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  min-height: 180px;
}

.activity-content-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 6px 0;
}

.activity-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.act-icon { width: 100%; height: 100%; object-fit: cover; }
.act-title { font-size: 1.15rem; font-weight: 700; color: #fff; }
.act-sub { font-size: 0.85rem; color: var(--text-muted); margin-top: 2px; }

.act-timer {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--saka-blue);
  display: inline-block;
  margin-top: 4px;
}

.spotify-content-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.spotify-art {
  width: 78px;
  height: 78px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.spotify-info { flex-grow: 1; }
.spotify-song-title { font-size: 1.25rem; font-weight: 800; color: #fff; }
.spotify-artist-name { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 10px; }

.spotify-progress-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-sub);
}

.sp-bar-bg {
  flex-grow: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.sp-bar-fill {
  height: 100%;
  background: var(--saka-blue);
  width: 0%;
  transition: width 1s linear;
}

.about-hero-text { margin-bottom: 30px; }

.about-lead {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 750px;
  line-height: 1.6;
}

.about-glass-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.about-card {
  position: relative;
  overflow: hidden;
}

.card-top-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.5rem;
  color: rgba(10, 132, 255, 0.25);
  transition: transform var(--transition-bounce), color var(--transition-fast);
}

.about-card:hover .card-top-icon {
  transform: rotate(12deg) scale(1.2);
  color: var(--saka-blue);
}

.about-card-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--saka-blue);
  margin-bottom: 8px;
}

.about-card-desc {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.fact-block { margin-bottom: 16px; }
.fact-block:last-child { margin-bottom: 0; }

.fact-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-sub);
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 4px;
}

.fact-value {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: #fff;
}

.tech-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.tech-pill {
  padding: 4px 12px;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform var(--transition-bounce), border-color var(--transition-fast);
}

.tech-pill:hover {
  transform: translateY(-2px);
}

.tech-pill.lua { color: var(--saka-blue); border-color: rgba(10, 132, 255, 0.3); background: rgba(10, 132, 255, 0.08); }
.tech-pill.python { color: #3776ab; border-color: rgba(55, 118, 171, 0.3); background: rgba(55, 118, 171, 0.08); }
.tech-pill.js { color: #f7df1e; border-color: rgba(247, 223, 30, 0.3); background: rgba(247, 223, 30, 0.08); }
.tech-pill.html { color: #e34f26; border-color: rgba(227, 79, 38, 0.3); background: rgba(227, 79, 38, 0.08); }

.card-tags { display: flex; gap: 8px; flex-wrap: wrap; }

.card-tags span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-sub);
  background: rgba(255, 255, 255, 0.03);
  padding: 2px 8px;
  border-radius: 4px;
}

.fivem-highlight-card {
  background: linear-gradient(135deg, rgba(10, 132, 255, 0.12), rgba(140, 120, 255, 0.12));
  border: 1px solid rgba(10, 132, 255, 0.28);
  border-radius: 20px;
  padding: 20px 28px;
  backdrop-filter: blur(20px);
  transition: transform var(--transition-bounce), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.fivem-highlight-card:hover {
  transform: translateY(-4px);
  border-color: var(--saka-blue);
  box-shadow: 0 15px 40px rgba(10, 132, 255, 0.2);
}

.fivem-card-inner {
  display: flex;
  align-items: center;
  gap: 18px;
}

.fivem-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(10, 132, 255, 0.2);
  color: var(--saka-blue);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.fivem-text-box { flex-grow: 1; }
.fivem-text-box h4 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; color: #fff; }
.fivem-text-box p { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-muted); }

.fivem-status-chip {
  padding: 4px 14px;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(48, 209, 158, 0.15);
  border: 1px solid rgba(48, 209, 158, 0.3);
  color: var(--status-online);
  letter-spacing: 1px;
}

.socials-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.socials-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.glass-social-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  color: var(--text-main);
  text-decoration: none;
  backdrop-filter: blur(20px);
  transition: var(--transition-bounce);
}

.glass-social-item:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.social-icon {
  font-size: 1.6rem;
  color: var(--saka-blue);
}

.social-details { flex-grow: 1; }
.social-name { font-size: 1.05rem; font-weight: 700; color: #fff; display: block; }
.social-handle { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-muted); }

.arrow-icon {
  font-size: 0.88rem;
  color: var(--text-sub);
  transition: transform var(--transition-bounce);
}

.glass-social-item:hover .arrow-icon {
  transform: translate(4px, -4px) scale(1.15);
  color: #fff;
}

.glass-social-item.discord:hover .social-icon { color: #5865F2; }
.glass-social-item.steam:hover .social-icon { color: #66c0f4; }

.copy-discord-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 22px;
  backdrop-filter: blur(20px);
}

.copy-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-sub);
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 12px;
}

.copy-row { display: flex; gap: 12px; }

.copy-input {
  flex-grow: 1;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 16px;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  outline: none;
  user-select: text;
}

.copy-action-btn {
  background: var(--saka-blue);
  border: none;
  color: #fff;
  padding: 10px 22px;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition-bounce);
}

.copy-action-btn:hover {
  background: #0072e5;
  transform: scale(1.04);
  box-shadow: 0 0 20px rgba(10, 132, 255, 0.6);
}

.toast-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  background: rgba(10, 12, 18, 0.95);
  border: 1px solid var(--saka-blue);
  color: #fff;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-family: var(--font-mono);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 15px rgba(10, 132, 255, 0.3);
  backdrop-filter: blur(15px);
  animation: slide-in 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slide-in {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.hidden { display: none !important; }

@media (max-width: 768px) {
  *, *::before, *::after, body, a, button, input, textarea, select, label, [role="button"] {
    cursor: auto !important;
  }
  .cursor-dot, .cursor-ring { display: none; }

  .home-hero {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .hero-title { font-size: 4.5rem; }
  .cards-grid, .about-glass-grid, .socials-list { grid-template-columns: 1fr; }

  .spotify-content-inner {
    flex-direction: column;
    text-align: center;
  }

  .fivem-card-inner {
    flex-direction: column;
    text-align: center;
  }

  .top-nav-container { width: 92%; }
  .nav-pill { flex-wrap: wrap; justify-content: center; }
  .page-section { padding-top: 110px; margin-bottom: 80px; }
}
