:root {
  --blue: #00b4ff;
  --black: #000000;
  --panel: rgba(13, 20, 28, 0.78);
  --panel-solid: #101722;
  --footer: #0d121b;
  --text: #ffffff;
  --muted: #a9b4c2;
  --line: rgba(255, 255, 255, 0.12);
  --shadow-blue: 0 18px 46px rgba(0, 180, 255, 0.26);
  --hero-image: url("https://tr.rbxcdn.com/180DAY-49f817c119d8ed00402e8a7a462a0800/768/432/Image/Png/noFilter");
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--black);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 48px;
  background: #000000;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--blue);
}

.brand span,
nav a,
.button,
.hero-title h1,
.section-heading h2,
.contact-strip h2,
.experience-copy h3,
.site-footer a {
  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.brand:hover img,
.hero-title:hover img {
  animation: logo-shake 420ms ease-in-out;
}

.brand:hover span,
.hero-title:hover h1 {
  transform: scale(1.035);
}

.section-heading h2:hover,
.contact-strip h2:hover {
  color: var(--blue);
  transform: scale(1.035);
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 1.08rem;
  font-weight: 850;
}

nav a {
  position: relative;
  padding: 12px 0;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.92;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 3px;
  border-radius: 8px;
  background: var(--blue);
  opacity: 0;
  transform: translateY(5px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

nav a:hover,
nav a.active {
  color: var(--blue);
  opacity: 1;
  transform: scale(1.07);
}

nav a:hover::after,
nav a.active::after {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  position: relative;
  min-height: clamp(600px, calc(100vh - 120px), 820px);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 56px 32px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40px;
  z-index: -3;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  filter: blur(18px);
  opacity: 0.62;
  transform: scale(1.2);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.7)),
    radial-gradient(circle at center, rgba(0, 180, 255, 0.16), rgba(0, 0, 0, 0.72));
}

.hero-card {
  width: min(690px, 100%);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
}

.hero-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.hero-title img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--blue);
}

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

h1 {
  margin-bottom: 0;
  font-size: 4.5rem;
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 560px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.55;
  text-align: center;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 950;
  text-decoration: none;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.button:hover {
  transform: scale(1.045);
}

.button-primary {
  color: #00111c;
  background: var(--blue);
  box-shadow: var(--shadow-blue);
}

.button-light {
  color: #000000;
  background: #ffffff;
}

.button-dark {
  min-height: 50px;
  color: #ffffff;
  background: #1c2a3e;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
  text-align: center;
}

.hero-stats strong {
  display: block;
  font-size: 2.65rem;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
}

.section {
  padding: 72px 48px;
}

.section-heading {
  width: min(980px, 100%);
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 14px;
  font-size: 3.25rem;
  line-height: 1;
  letter-spacing: 0;
}

.section-heading span {
  width: 92px;
  height: 5px;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  background: var(--blue);
}

.section-heading p {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 700;
}

.games-section {
  padding-bottom: 36px;
  background:
    linear-gradient(180deg, #000000 0%, #020712 46%, #000000 100%),
    linear-gradient(90deg, rgba(0, 180, 255, 0.08), transparent 28%, rgba(255, 255, 255, 0.04)),
    #000000;
}

.games-frame {
  width: min(1240px, 100%);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 520px), 1fr));
  gap: 18px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 180, 255, 0.14), transparent 34%),
    rgba(7, 12, 19, 0.76);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.38);
}

.loading-card {
  min-height: 0;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 900;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 20, 31, 0.78);
}

.experience-card {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  min-width: 0;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #08101a;
  box-shadow: inset 0 -110px 90px rgba(0, 0, 0, 0.64);
  isolation: isolate;
  transition:
    border-color 190ms ease,
    box-shadow 190ms ease,
    transform 190ms ease;
}

.experience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.74) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.48), transparent 48%);
  opacity: 0.92;
  transition: opacity 190ms ease;
}

.experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.28), transparent 40%);
  opacity: 0;
  transition: opacity 190ms ease;
}

.experience-card:hover {
  border-color: rgba(0, 180, 255, 0.78);
  box-shadow:
    0 0 0 1px rgba(0, 180, 255, 0.2),
    0 24px 70px rgba(0, 180, 255, 0.18),
    inset 0 -120px 90px rgba(0, 0, 0, 0.68);
  transform: translateY(-6px);
}

.experience-card:hover::after {
  opacity: 1;
}

.experience-card:hover .experience-art {
  transform: scale(1.055);
  filter: saturate(1.12) brightness(1.04);
}

.experience-card:hover .experience-copy h3 {
  transform: scale(1.035);
}

.experience-art {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  background: transparent;
  transition:
    filter 190ms ease,
    transform 260ms ease;
}

.live-pill {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 950;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(6, 13, 22, 0.82);
  backdrop-filter: blur(10px);
}

.live-pill span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #45f28a;
  box-shadow: 0 0 18px rgba(69, 242, 138, 0.72);
}

.live-pill.muted span {
  background: #77818f;
  box-shadow: none;
}

.experience-copy {
  width: 100%;
}

.experience-copy h3 {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 14px;
  font-size: 1.75rem;
  line-height: 1.04;
  transform-origin: left center;
}

.experience-copy dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.experience-copy dl div {
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(12, 20, 31, 0.78);
}

.experience-copy dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.experience-copy dd {
  margin: 0;
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 950;
}

.about-section {
  padding-top: 42px;
  padding-bottom: 72px;
}

.info-card {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 42px 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-solid);
  text-align: center;
}

.info-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
  line-height: 1.7;
  font-weight: 650;
}

.contact-strip h2 {
  margin-bottom: 12px;
  font-size: 2rem;
  line-height: 1.1;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 34px 32px 42px;
  background: #000000;
}

.contact-strip h2 {
  margin: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 18px 48px;
  padding: 24px 48px 18px;
  background: var(--footer);
  border-top: 1px solid var(--line);
}

.site-footer .brand {
  font-size: 1.2rem;
}

.site-footer .brand img {
  width: 40px;
  height: 40px;
}

.site-footer h2 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.site-footer a:not(.brand) {
  display: block;
  margin: 8px 0;
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:not(.brand):hover {
  color: var(--blue);
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 700;
}

@keyframes logo-shake {
  0%,
  100% {
    transform: rotate(0deg) translateX(0);
  }

  20% {
    transform: rotate(-4deg) translateX(-1px);
  }

  40% {
    transform: rotate(4deg) translateX(1px);
  }

  60% {
    transform: rotate(-3deg) translateX(-1px);
  }

  80% {
    transform: rotate(3deg) translateX(1px);
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 22px;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    gap: 22px;
    padding-bottom: 2px;
    white-space: nowrap;
  }

  .hero {
    min-height: 620px;
    padding: 40px 20px;
  }

  .hero-card {
    padding: 24px;
  }

  .hero-title {
    flex-direction: column;
    gap: 14px;
  }

  h1 {
    font-size: 3.1rem;
    text-align: center;
  }

  .hero-actions,
  .contact-strip {
    flex-direction: column;
  }

  .hero-actions,
  .button,
  .contact-strip .button {
    width: 100%;
  }

  .games-frame,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 8px;
  }

  .hero-stats strong {
    font-size: 1.75rem;
  }

  .hero-stats span {
    font-size: 0.8rem;
  }

  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: 2.4rem;
  }

  .games-frame {
    gap: 14px;
    padding: 14px;
  }

  .experience-card,
  .loading-card {
    aspect-ratio: auto;
    min-height: 340px;
  }

  .experience-copy h3 {
    font-size: 1.55rem;
  }

  .info-card {
    padding: 28px 22px;
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: 1.3rem;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  nav {
    font-size: 0.96rem;
  }

  .hero {
    min-height: 580px;
  }

  .hero-title img {
    width: 74px;
    height: 74px;
  }

  h1 {
    font-size: 2.45rem;
  }

  .hero-copy,
  .info-card p {
    font-size: 1rem;
  }

  .hero-stats strong {
    font-size: 1.55rem;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .games-frame {
    padding: 10px;
  }

  .experience-card,
  .loading-card {
    aspect-ratio: auto;
    min-height: 310px;
    padding: 16px;
  }

  .experience-copy dl {
    grid-template-columns: 1fr;
  }

  .live-pill {
    top: 12px;
    right: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
