:root {
  --bg: #0a0a0f;
  --bg-secondary: rgba(26, 28, 36, 0.6);
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --accent: #3b82f6;
  --accent-hover: #60a5fa;
  --accent-cyan: #06b6d4;
  --gradient: linear-gradient(135deg, rgba(56, 189, 248, 1) 0%, rgba(14, 165, 233, 1) 50%, rgba(3, 105, 161, 1) 100%);
  --danger: #ef4444;
  --danger-bg: rgba(239, 68, 68, 0.1);
  --success: #10b981;
  --warning: #f59e0b;
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(15, 23, 42, 0.4);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  letter-spacing: 0.045em;
  cursor: url("Cursor/Pointer.cur") 1 1, auto;
}

body {
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background Mesh / Glow */
.bg-mesh {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, #11111a 0%, #0a0a0f 100%);
}
.bg-mesh::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.15;
  filter: contrast(150%) brightness(100%);
  pointer-events: none;
}
.blob-blue {
  position: absolute;
  top: -10%;
  left: -20%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, rgba(10,10,15,0) 70%);
  border-radius: 50%;
  animation: float 20s infinite alternate ease-in-out;
  filter: blur(80px);
}
.blob-cyan {
  position: absolute;
  bottom: -10%;
  right: -20%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(6,182,212,0.12) 0%, rgba(10,10,15,0) 70%);
  border-radius: 50%;
  animation: float 25s infinite alternate-reverse ease-in-out;
  filter: blur(80px);
}
@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(5%, 10%) scale(1.1); }
}

.top-nav {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  background: rgba(15, 23, 42, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  z-index: 1000;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.top-nav.shrink {
  width: 75%;
  padding: 0.45rem 1.25rem;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  letter-spacing: 0.025em;
}

.logo i { color: var(--accent); font-size: 1.5rem; }

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: #3895f8; }

.nav-links .nav-btn {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  color: var(--text);
}
.nav-links .nav-btn:hover { 
    background: rgba(255, 255, 255, 0.1); 
    border-color: #3895f8;
    color: var(--text); 
    animation: pulseGlow 1.5s infinite ease-in-out;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 255, 0);
    }
}

.latest-version-bubble
{
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--accent-hover);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-family: "Geist Pixel", sans-serif;
  letter-spacing: 0.06em;
}

.hero
{
    background: linear-gradient(135deg, rgba(56, 189, 248, 1) 0%, rgba(14, 165, 233, 1) 50%, rgba(3, 105, 161, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    font-size: 25px;
}

.card-hero {
    display: inline-block;
    background: var(--glass-bg);
    border: 1px solid #3895f8;
    border-radius: 40px;
    padding: 2em;
    margin-bottom: 1.5rem;
    text-align: left;
    margin-left: 20px;
    transition:
        transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.25s ease,
        background-color 0.25s ease,
        backdrop-filter 0.25s ease;

    box-shadow:
        0 0 20px rgba(56, 189, 248, 0.25),
        0 0 20px rgba(56, 189, 248, 0.15);
}

.card-hero h1 
{
    margin-bottom: 1rem;
    font-family: "Geist Pixel", sans-serif;
    font-size: 2rem;
    align-content: center;
    background: linear-gradient(135deg, rgba(56, 189, 248, 1) 0%, rgba(14, 165, 233, 1) 50%, rgba(3, 105, 161, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-hero:hover {
    transform: translateY(-6px) scale(1.01);
    transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);

    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(20px);

    box-shadow:
        0 0 35px rgba(56, 189, 248, 0.25),
        0 0 35px rgba(56, 189, 248, 0.15);
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;

    padding: 0.8rem 4.8rem;
    border-radius: 10px;

    background: var(--gradient);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;

    border: none;
    cursor: pointer;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
    
    box-shadow:
        0 0 20px rgba(56, 189, 248, 0.35),
        0 8px 24px rgba(0, 0, 0, 0.3);
}

.download-btn:hover {
    transform: translateY(-4px) scale(1.03);
    filter: brightness(1.08);

    box-shadow:
        0 0 35px rgba(56, 189, 248, 0.6),
        0 0 60px rgba(14, 165, 233, 0.25);
}

.download-btn:active {
    transform: translateY(1px) scale(0.98);
}

.download-btn i {
    font-size: 1.1rem;
}

.download-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
}

.github-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;

    padding: 0.5rem 1.8rem;
    border-radius: 10px;

    background: var(--glass-bg);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;

    border: none;
    cursor: pointer;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
    
    box-shadow:
        0 0 20px rgba(56, 189, 248, 0.35),
        0 8px 24px rgba(0, 0, 0, 0.3);
}

.github-btn:hover {
    transform: translateY(-4px) scale(1.03);
    filter: brightness(1.08);

    box-shadow:
        0 0 35px rgba(56, 189, 248, 0.6),
        0 0 60px rgba(14, 165, 233, 0.25);
}

.github-btn:active {
    transform: translateY(1px) scale(0.98);
}

.github-btn i {
    font-size: 1.1rem;
}

.github-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
}

.card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}