* {
  box-sizing: border-box;
}

:root {
  --bg: #080a12;
  --bg-soft: #0e1422;
  --panel: rgba(16, 23, 40, 0.8);
  --panel-solid: #12192b;
  --text: #f6f8ff;
  --muted: #98a5bc;
  --purple: #8f6bff;
  --purple-deep: #6247e8;
  --cyan: #22d3ee;
  --pink: #ff5db1;
  --green: #3ee68a;
  --border: rgba(255, 255, 255, 0.09);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  background:
    radial-gradient(circle at 18% 8%, rgba(143, 107, 255, 0.12), transparent 28%),
    radial-gradient(circle at 82% 34%, rgba(34, 211, 238, 0.1), transparent 28%),
    linear-gradient(#080a12, #090d18 65%, #070910);
}

#particles {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.45;
}

.page-glow {
  position: fixed;
  z-index: -2;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  opacity: 0.12;
}

.glow-one {
  top: -180px;
  left: -150px;
  background: var(--purple);
}

.glow-two {
  top: 260px;
  right: -170px;
  background: var(--cyan);
}

.cursor-glow {
  position: fixed;
  z-index: -1;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(143, 107, 255, 0.1), transparent 68%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.boot-screen {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-content: center;
  justify-items: center;
  background: #060810;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.boot-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.boot-mark {
  font-family: "Orbitron", sans-serif;
  font-size: 5rem;
  color: var(--cyan);
  text-shadow: 0 0 34px rgba(34, 211, 238, 0.4);
  animation: spin 1.25s linear infinite;
}

.boot-screen p {
  margin: 12px 0 0;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.18em;
}

.boot-screen span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(8, 10, 18, 0.72);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #fff;
  font-family: "Orbitron", sans-serif;
  font-size: 1.35rem;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  box-shadow: 0 0 28px rgba(143, 107, 255, 0.3);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong,
.brand-copy small {
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.11em;
}

.brand-copy strong {
  font-size: 0.92rem;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--cyan);
  font-size: 0.58rem;
}

.site-nav {
  display: flex;
  gap: 25px;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  transition: right 0.25s ease;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav a:hover::after {
  right: 0;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,0.035);
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 10px;
  background: var(--text);
}

main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 64px;
  padding: 88px 0 76px;
}

.kicker {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

h1, h2, h3 {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 0;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(3rem, 6.5vw, 6.2rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

h1 span {
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  -webkit-background-clip: text;
  color: transparent;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.hero-text {
  max-width: 660px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 1.07rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 23px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  box-shadow: 0 15px 36px rgba(143, 107, 255, 0.27);
}

.button-primary:hover {
  box-shadow: 0 20px 46px rgba(143, 107, 255, 0.4);
}

.button-secondary {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
}

.button-icon {
  font-size: 0.78rem;
}

.save-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: rgba(255,255,255,0.03);
}

.status-light {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(62, 230, 138, 0.8);
}

.save-status div {
  display: grid;
}

.save-status small {
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.13em;
}

.save-status strong {
  font-size: 0.88rem;
}

.launcher-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(21, 29, 50, 0.96), rgba(8, 12, 22, 0.96));
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}

.launcher-topbar,
.launcher-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 13px 18px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
}

.online {
  color: #b8f7d1;
}

.online i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 11px rgba(62,230,138,0.75);
}

.launcher-content {
  position: relative;
  min-height: 470px;
  display: grid;
  justify-items: center;
  align-content: center;
  overflow: hidden;
  padding: 36px;
  text-align: center;
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(143,107,255,0.18), transparent 42%),
    #070a12;
  background-size: 28px 28px, 28px 28px, auto, auto;
}

.launcher-content::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(to bottom, transparent 0 4px, rgba(255,255,255,0.03) 5px);
  opacity: 0.35;
}

.logo-orbit {
  position: relative;
  z-index: 2;
  width: 190px;
  height: 150px;
}

.orbit {
  position: absolute;
  top: 3px;
  font-family: "Orbitron", sans-serif;
  font-size: 7.5rem;
  line-height: 1;
  text-shadow: 0 0 35px currentColor;
}

.orbit-left {
  left: 0;
  color: var(--purple);
  transform: rotate(-24deg);
}

.orbit-right {
  right: 0;
  color: var(--cyan);
  transform: rotate(24deg);
}

.hr-mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
}

.hr-mark b {
  color: var(--pink);
}

.launcher-label {
  position: relative;
  z-index: 2;
  margin: 10px 0 8px;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.launcher-content h2 {
  position: relative;
  z-index: 2;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
}

.launcher-content h2 span {
  color: var(--cyan);
  font-size: 0.72em;
  letter-spacing: 0.18em;
}

.launch-button {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2px;
  margin-top: 28px;
  padding: 14px 28px;
  border: 1px solid rgba(143,107,255,0.5);
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, rgba(143,107,255,0.22), rgba(34,211,238,0.08));
  cursor: pointer;
  box-shadow: inset 0 0 24px rgba(143,107,255,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.launch-button:hover {
  transform: scale(1.04);
  box-shadow: 0 0 34px rgba(143,107,255,0.24), inset 0 0 28px rgba(34,211,238,0.08);
}

.launch-button span {
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
}

.launch-button small {
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.11em;
}

.section {
  padding: 92px 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 36px;
}

.section-heading > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

code {
  color: #c9bcff;
}

.featured-video {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 25px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.featured-player {
  position: relative;
  min-height: 430px;
  background: #03050a;
}

.featured-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.featured-info {
  padding: 38px 32px;
  align-self: center;
}

.featured-info h3 {
  margin-bottom: 12px;
  font-size: 1.65rem;
  line-height: 1.2;
}

.featured-info > p:not(.kicker) {
  color: var(--muted);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0;
}

.meta-row span {
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #ccd5e5;
  font-size: 0.76rem;
  background: rgba(255,255,255,0.035);
}

.text-link {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 800;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 24px;
}

.video-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(143,107,255,0.48);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #05070c;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-info {
  padding: 19px;
}

.video-info h3 {
  margin-bottom: 7px;
  font-size: 1rem;
}

.video-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.game-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 23px;
  background:
    linear-gradient(145deg, rgba(22,29,50,0.93), rgba(11,16,28,0.95));
  box-shadow: 0 18px 50px rgba(0,0,0,0.2);
}

.game-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -70px;
  border-radius: 50%;
  background: rgba(143,107,255,0.12);
  filter: blur(8px);
}

.game-number {
  position: absolute;
  right: 22px;
  top: 17px;
  color: rgba(255,255,255,0.08);
  font-family: "Orbitron", sans-serif;
  font-size: 3.2rem;
}

.game-icon {
  font-size: 2.2rem;
}

.game-card h3 {
  margin: 20px 0 9px;
  font-size: 1.25rem;
}

.game-card p {
  color: var(--muted);
}

.achievement {
  position: absolute;
  left: 28px;
  bottom: 25px;
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.player-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
}

.player-card {
  padding: 35px;
  border: 1px solid var(--border);
  border-radius: 25px;
  background: linear-gradient(145deg, rgba(22,29,50,0.95), rgba(11,16,28,0.95));
  box-shadow: var(--shadow);
}

.player-hoba {
  box-shadow: inset 0 0 55px rgba(143,107,255,0.05), var(--shadow);
}

.player-roga {
  box-shadow: inset 0 0 55px rgba(34,211,238,0.05), var(--shadow);
}

.player-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.player-slot {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.avatar {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 22px;
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  background: linear-gradient(135deg, rgba(143,107,255,0.24), rgba(34,211,238,0.16));
}

.player-card h3 {
  margin: 21px 0 8px;
  font-size: 1.55rem;
}

.player-card > p {
  color: var(--muted);
}

.stats {
  display: grid;
  gap: 9px;
  margin-top: 23px;
}

.stats span {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 11px;
  color: var(--muted);
  font-size: 0.82rem;
  background: rgba(255,255,255,0.025);
}

.stats b {
  color: var(--text);
}

.plus-mark {
  color: var(--pink);
  font-family: "Orbitron", sans-serif;
  font-size: 2.2rem;
  text-shadow: 0 0 20px rgba(255,93,177,0.45);
}

.community-card {
  padding: 50px 35px;
  border: 1px solid var(--border);
  border-radius: 28px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(143,107,255,0.15), transparent 38%),
    linear-gradient(145deg, rgba(22,29,50,0.96), rgba(10,15,27,0.96));
  box-shadow: var(--shadow);
}

.community-card > div:first-child > p:not(.kicker) {
  color: var(--muted);
}

.contact-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 31px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 155px;
  padding: 13px 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  background: #171d31;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.social-btn:hover {
  transform: translateY(-5px) scale(1.03);
}

.youtube:hover { background: #ff0000; box-shadow: 0 0 27px rgba(255,0,0,.42); }
.twitch:hover { background: #9146ff; box-shadow: 0 0 27px rgba(145,70,255,.42); }
.instagram:hover { background: linear-gradient(45deg,#833ab4,#e1306c,#fcaf45); }
.tiktok:hover { background: #080808; box-shadow: 0 0 27px rgba(34,211,238,.38); }
.twitter:hover { background: #000; box-shadow: 0 0 27px rgba(255,255,255,.12); }
.reddit:hover { background: #ff5700; box-shadow: 0 0 27px rgba(255,87,0,.35); }
.email:hover { background: var(--cyan); color: #03050a; box-shadow: 0 0 27px rgba(34,211,238,.35); }

.social-btn.disabled {
  opacity: 0.6;
}

.small-note {
  margin-top: 21px;
  color: var(--muted);
  font-size: 0.78rem;
}

footer {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 24px 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand > span {
  color: var(--cyan);
  font-size: 1.8rem;
}

.footer-brand div {
  display: grid;
}

.footer-brand strong {
  color: var(--text);
  font-family: "Orbitron", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.footer-brand small {
  margin-top: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .launcher-card {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    transform: none;
  }

  .featured-video {
    grid-template-columns: 1fr;
  }

  .featured-player {
    min-height: 420px;
  }

  .video-grid,
  .game-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .player-grid {
    grid-template-columns: 1fr;
  }

  .plus-mark {
    text-align: center;
  }
}

@media (max-width: 720px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 75px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #111728;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 10px;
  }

  .site-nav a::after {
    display: none;
  }

  .brand-copy strong {
    font-size: 0.78rem;
  }

  .hero {
    gap: 45px;
    padding-top: 68px;
  }

  .launcher-content {
    min-height: 410px;
    padding: 26px 18px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .video-grid,
  .game-grid {
    grid-template-columns: 1fr;
  }

  .featured-player {
    min-height: 260px;
  }

  .featured-info,
  .player-card,
  .community-card {
    padding: 28px 22px;
  }

  .social-btn {
    width: 100%;
    min-width: 0;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }
}
