:root {
  --primary: #ffffff;
  --bg: #050505;
  --glass: rgba(14, 12, 13, 0.55);
  --border-thin: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --blur-strength: blur(24px);
  --accent: #ff3355;
  --accent-2: #ff6b3d;
  --discord: #5865F2;
  --font-ui: 'Outfit', 'Inconsolata', sans-serif;
  --font-mono: 'Inconsolata', monospace;
  --font-dot: 'Doto', 'Inconsolata', monospace;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: #fff;
  font-family: var(--font-ui);
  letter-spacing: 0.02em;
  min-height: 100vh;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
::selection { background: var(--accent); color: #fff; }
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% -10%, #23090e 0%, #050505 45%);
  overflow: hidden;
}
.orb { position: absolute; border-radius: 50%; filter: blur(120px); will-change: transform; }
.orb-1 { width: 620px; height: 620px; background: #ff3355; opacity: 0.4; top: -220px; right: -140px; animation: drift1 18s ease-in-out infinite; }
.orb-2 { width: 520px; height: 520px; background: #7a1220; opacity: 0.55; bottom: -260px; left: -160px; animation: drift2 22s ease-in-out infinite; }
.beam {
  position: absolute;
  top: -20%; left: 40%;
  width: 40%; height: 140%;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.06) 50%, transparent 60%);
  transform: rotate(12deg);
  animation: sweep 12s ease-in-out infinite;
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 20%, black 20%, transparent 75%);
}
.noise {
  position: absolute; inset: 0; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@keyframes drift1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-70px,60px); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(60px,-50px); } }
@keyframes sweep { 0%,100% { transform: translate(-30%,0) rotate(12deg); opacity: 0.3; } 50% { transform: translate(60%,0) rotate(12deg); opacity: 0.8; } }
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 32px;
  background: rgba(8, 7, 7, 0.6);
  backdrop-filter: var(--blur-strength);
  -webkit-backdrop-filter: var(--blur-strength);
  border-bottom: 1px solid var(--border-thin);
}
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-dot); font-weight: 900; font-size: 18px; letter-spacing: 0.12em; }
.brand-mark {
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-dot);
  font-weight: 900;
  box-shadow: 0 6px 18px rgba(255,51,85,0.5);
}
.nav-links { display: flex; gap: 6px; margin-left: 18px; }
.nav-links a {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.05); }
.nav-links a.active { color: #fff; background: rgba(255,51,85,0.14); }
.nav-discord {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--discord);
  font-size: 14px; font-weight: 600;
  box-shadow: 0 8px 22px rgba(88,101,242,0.4);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.nav-discord:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(88,101,242,0.55); }
.hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 24px 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}
.status-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-thin);
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  animation: rise 0.6s ease both;
}
.status-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 10px #4ade80; animation: pulse 2s infinite; }
.status-pill .ver { color: var(--accent); }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero-title {
  font-family: var(--font-dot);
  font-weight: 900;
  font-size: clamp(48px, 11vw, 128px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #ffffff 0%, #ff3355 130%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 60px rgba(255,51,85,0.35);
  animation: rise 0.7s ease both 0.05s;
}
.hero-tagline { 
  font-size: clamp(18px, 3vw, 26px); 
  font-weight: 600; 
  color: #fff; 
  animation: rise-tagline 0.7s ease 0.12s;
  transition: opacity 0.5s ease-in-out; 
  opacity: 1; 
}
@keyframes rise-tagline { 
  from { opacity: 0; transform: translateY(20px); } 
  to { opacity: 1; transform: translateY(0); } 
}
.hero-sub { font-size: 15px; color: rgba(255,255,255,0.5); animation: rise 0.7s ease both 0.18s; }
.badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; animation: rise 0.7s ease both 0.24s; }
.badge {
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-thin);
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.08em; color: rgba(255,255,255,0.7);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 8px; animation: rise 0.7s ease both 0.3s; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  border-radius: 16px;
  font-size: 15px; font-weight: 600;
  cursor: pointer; border: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 30px rgba(255,51,85,0.45); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(255,51,85,0.6); }
.btn-primary .arrow { transition: transform 0.2s ease; }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-discord { background: var(--discord); color: #fff; box-shadow: 0 10px 30px rgba(88,101,242,0.4); }
.btn-discord:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(88,101,242,0.55); }
.btn-ghost { background: rgba(255,255,255,0.04); border: 1px solid var(--border-strong); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.stats { display: flex; gap: 48px; margin-top: 24px; animation: rise 0.7s ease both 0.36s; }
.stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stat-num { font-family: var(--font-dot); font-weight: 900; font-size: 34px; }
.stat-label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
@keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.section { max-width: 1040px; margin: 0 auto; padding: 70px 24px; }
.section-head { text-align: center; margin-bottom: 44px; }
.section-tag { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); }
.section-title { font-family: var(--font-dot); font-weight: 900; font-size: clamp(30px, 5vw, 46px); margin-top: 10px; }
.section-desc { max-width: 560px; margin: 14px auto 0; font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.55); }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.card {
  position: relative;
  display: block;
  padding: 28px;
  border-radius: 24px;
  background: var(--glass);
  backdrop-filter: var(--blur-strength);
  -webkit-backdrop-filter: var(--blur-strength);
  border: 1px solid var(--border-thin);
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.25,1,0.5,1), border-color 0.25s ease, box-shadow 0.25s ease;
}
.card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% -10%, rgba(255,51,85,0.18), transparent 55%);
  opacity: 0; transition: opacity 0.3s ease;
}
.card:not(.disabled):hover { transform: translateY(-6px); border-color: rgba(255,51,85,0.4); box-shadow: 0 24px 50px rgba(0,0,0,0.5); }
.card:not(.disabled):hover::before { opacity: 1; }
.card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; position: relative; }
.card-icon {
  display: grid; place-items: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(255,51,85,0.12);
  border: 1px solid rgba(255,51,85,0.3);
  font-family: var(--font-dot); font-weight: 900; font-size: 22px; color: var(--accent);
}
.tag { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; padding: 6px 12px; border-radius: 999px; white-space: nowrap; }
.tag.released { background: rgba(74,222,128,0.12); color: #4ade80; border: 1px solid rgba(74,222,128,0.35); }
.tag.notdone { background: rgba(255,51,85,0.14); color: var(--accent); border: 1px solid rgba(255,51,85,0.4); }
.card-name { position: relative; font-family: var(--font-dot); font-weight: 700; font-size: 26px; letter-spacing: 0.04em; }
.card-game { position: relative; margin-top: 6px; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.08em; color: rgba(255,255,255,0.45); }
.card-desc { position: relative; margin-top: 14px; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.6); }
.card-cta { position: relative; margin-top: 22px; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: #fff; }
.card-cta .arrow { transition: transform 0.2s ease; }
.card:not(.disabled):hover .card-cta .arrow { transform: translateX(4px); }
.card.disabled { cursor: not-allowed; opacity: 0.85; border-color: rgba(255,51,85,0.25); }
.card.disabled .card-cta { color: var(--accent); }
.about { text-align: center; }
.about-cta { margin-top: 30px; }
.footer {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: space-between; align-items: center;
  max-width: 1040px; margin: 40px auto 0; padding: 30px 24px;
  border-top: 1px solid var(--border-thin);
}
.footer-brand { font-family: var(--font-dot); font-weight: 700; letter-spacing: 0.1em; }
.footer-note { font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.4); }
#discordFloat {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--discord); color: #fff;
  display: flex; align-items: center; justify-content: center;
  z-index: 60;
  box-shadow: 0 12px 30px rgba(88,101,242,0.5);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
#discordFloat:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 18px 40px rgba(88,101,242,0.65); }
@media (max-width: 640px) {
  .nav { padding: 14px 18px; gap: 10px; }
  .nav-links { display: none; }
  .stats { gap: 30px; }
  .hero { padding: 80px 18px 60px; }
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-content {
  background: var(--glass);
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  max-width: 550px;
  width: 100%;
  padding: 32px;
  position: relative;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.7);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.modal-overlay.active .modal-content {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
  cursor: pointer;
  transition: color 0.2s;
}
.modal-close:hover {
  color: var(--accent);
}
.modal-slideshow {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  margin: 20px 0;
  border: 1px solid var(--border-thin);
}
.modal-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
.modal-slide.active {
  opacity: 1;
}
.modal-title {
  font-family: var(--font-dot);
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 8px;
}
.modal-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}
.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.modal-actions .btn {
  justify-content: center;
  width: 100%;
}