
/* =========================================================
   HORIZONNODE - GAME COMING SOON PAGES
   Uses the existing HorizonNode global/header/footer system.
========================================================= */

.hn-game-page {
  --hn-bg: #05051f;
  --hn-panel: #11102c;
  --hn-panel-2: #181630;
  --hn-blue: #1198ff;
  --hn-blue-2: #3ec1f3;
  --hn-text: #fff;
  --hn-muted: #9aa4c4;
  --hn-border: rgba(255,255,255,.10);
  background: var(--hn-bg);
  color: var(--hn-text);
  overflow: hidden;
}

.hn-game-shell {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.hn-game-breadcrumb {
  padding: 28px 0 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: #8fa0c6;
  font-size: 14px;
}

.hn-game-breadcrumb a {
  color: #8fa0c6;
  text-decoration: none;
}

.hn-game-breadcrumb a:hover {
  color: var(--hn-blue-2);
}

.hn-game-breadcrumb span {
  color: #4f5879;
}

.hn-game-breadcrumb strong {
  color: #fff;
}

/* HERO */
.hn-game-hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 78% 45%, rgba(20,100,190,.17), transparent 31%),
    linear-gradient(90deg, #05051f 0%, #05051f 47%, rgba(5,5,31,.82) 100%);
}

.hn-game-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(62,193,243,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62,193,243,.035) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.hn-game-hero::after {
  content: "";
  position: absolute;
  right: -8%;
  top: 0;
  width: 62%;
  height: 100%;
  background:
    radial-gradient(circle at 60% 50%, rgba(20,100,255,.18), transparent 35%);
  pointer-events: none;
}

.hn-game-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 50px;
  align-items: center;
  min-height: 620px;
}

.hn-game-hero-copy {
  max-width: 690px;
}

.hn-coming-label {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}

.hn-game-title {
  margin: 0 0 24px;
  font-size: clamp(46px, 5vw, 72px);
  line-height: .98;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--hn-blue-2);
  text-shadow: 0 0 35px rgba(62,193,243,.12);
}

.hn-game-description {
  max-width: 650px;
  margin: 0;
  color: #c2cae0;
  font-size: 17px;
  line-height: 1.75;
}

.hn-game-feature-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 20px 34px;
}

.hn-game-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e6eaff;
  font-size: 15px;
  font-weight: 700;
}

.hn-game-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(10,123,205,.18);
  border: 1px solid rgba(62,193,243,.10);
  color: var(--hn-blue-2);
  font-size: 17px;
}

.hn-trailer-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 32px;
  padding: 15px 22px;
  border-radius: 8px;
  background: var(--hn-blue-2);
  color: #04101d;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: .2s ease;
}

.hn-trailer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(62,193,243,.20);
}

.hn-hero-art {
  position: relative;
  height: 540px;
}

.hn-hero-orb {
  position: absolute;
  border: 12px solid rgba(55,55,70,.75);
  border-radius: 50%;
  overflow: hidden;
  background: #11142b;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

.hn-hero-orb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.9) brightness(.72);
}

.hn-hero-orb.one {
  width: 235px;
  height: 310px;
  right: 205px;
  top: 40px;
}

.hn-hero-orb.two {
  width: 285px;
  height: 380px;
  right: 40px;
  top: 165px;
}

.hn-hero-orb.three {
  width: 290px;
  height: 390px;
  right: 175px;
  bottom: 0;
}

.hn-hero-glow {
  position: absolute;
  width: 450px;
  height: 450px;
  right: 20px;
  top: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24,143,255,.15), transparent 65%);
  filter: blur(10px);
}

/* TRAILER */
.hn-game-trailer-section {
  padding: 95px 0 110px;
  background:
    linear-gradient(rgba(5,5,31,.88), rgba(5,5,31,.96)),
    linear-gradient(rgba(62,193,243,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62,193,243,.035) 1px, transparent 1px);
  background-size: auto, 36px 36px, 36px 36px;
}

.hn-section-center {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hn-coming-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border: 1px solid rgba(62,193,243,.45);
  border-radius: 999px;
  color: var(--hn-blue-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.hn-trailer-title {
  margin: 25px auto 20px;
  max-width: 800px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.15;
}

.hn-trailer-title .accent {
  color: var(--hn-blue-2);
}

.hn-trailer-copy {
  margin: 0 auto 50px;
  max-width: 750px;
  color: #9eacd0;
  font-size: 16px;
  line-height: 1.7;
}

.hn-video-card {
  width: min(860px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(62,193,243,.16);
  border-radius: 18px;
  background: #0c0d25;
  box-shadow: 0 25px 70px rgba(0,0,0,.38);
}

.hn-video-topbar {
  min-height: 52px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(9,9,28,.98);
  border-bottom: 1px solid rgba(62,193,243,.12);
  color: #dce5ff;
  font-size: 13px;
  font-weight: 700;
}

.hn-video-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: var(--hn-blue-2);
  box-shadow: 0 0 12px rgba(62,193,243,.55);
}

.hn-video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #05061f;
}

.hn-video-embed iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* DDOS */
.hn-ddos-section {
  padding: 95px 0;
  background: #05051f;
}

.hn-ddos-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 90px;
  align-items: center;
}

.hn-ddos-copy h2 {
  margin: 0 0 28px;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.08;
}

.hn-ddos-copy h2 span {
  color: #078dff;
  display: block;
}

.hn-ddos-copy > p {
  max-width: 580px;
  color: #9eb0d4;
  line-height: 1.7;
  font-size: 16px;
}

.hn-ddos-feature-list {
  margin-top: 30px;
  display: grid;
  gap: 18px;
}

.hn-ddos-feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hn-ddos-feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(0,132,255,.15);
  color: #078dff;
  font-size: 19px;
}

.hn-ddos-feature strong {
  display: block;
  color: white;
  margin-bottom: 5px;
}

.hn-ddos-feature span {
  color: #8fa6d2;
  font-size: 14px;
}

.hn-ddos-stats {
  display: flex;
  gap: 65px;
  margin-top: 35px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.hn-ddos-stat strong {
  display: block;
  color: #078dff;
  font-size: 31px;
  line-height: 1;
}

.hn-ddos-stat span {
  display: block;
  margin-top: 8px;
  color: #8ea1ca;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .5px;
}

.hn-learn-btn {
  display: inline-flex;
  margin-top: 32px;
  padding: 14px 23px;
  border-radius: 8px;
  background: #fff;
  color: #09091d;
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hn-security-art {
  min-height: 500px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(62,193,243,.10);
  background:
    radial-gradient(circle at 50% 42%, rgba(20,137,255,.38), transparent 24%),
    radial-gradient(circle at 15% 15%, rgba(28,103,255,.16), transparent 28%),
    linear-gradient(145deg, #111c56, #07132f 65%, #060a24);
}

.hn-security-shield {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 230px;
  height: 270px;
  background: linear-gradient(145deg, #1679c8, #102e79);
  clip-path: polygon(50% 0%, 92% 15%, 82% 65%, 50% 100%, 18% 65%, 8% 15%);
  box-shadow: 0 0 70px rgba(25,142,255,.25);
  display: grid;
  place-items: center;
}

.hn-security-lock {
  width: 80px;
  height: 65px;
  border: 12px solid #081e54;
  border-radius: 13px;
  position: relative;
}

.hn-security-lock::before {
  content: "";
  position: absolute;
  width: 44px;
  height: 44px;
  left: 50%;
  top: -42px;
  transform: translateX(-50%);
  border: 11px solid #081e54;
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
}

.hn-security-node {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(62,193,243,.35);
  background: rgba(5,22,61,.65);
}

.hn-security-node:nth-child(1) { left: 13%; top: 16%; }
.hn-security-node:nth-child(2) { right: 13%; top: 22%; }
.hn-security-node:nth-child(3) { left: 17%; bottom: 18%; }
.hn-security-node:nth-child(4) { right: 18%; bottom: 15%; }

/* FAQ */
.hn-faq-section {
  padding: 105px 0;
  background:
    linear-gradient(rgba(5,5,31,.82), rgba(5,5,31,.96)),
    linear-gradient(rgba(62,193,243,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62,193,243,.035) 1px, transparent 1px);
  background-size: auto, 36px 36px, 36px 36px;
}

.hn-faq-heading {
  max-width: 760px;
  margin-bottom: 60px;
}

.hn-faq-heading h2 {
  margin: 0;
  font-size: clamp(44px, 5vw, 62px);
  line-height: .98;
}

.hn-faq-layout {
  display: grid;
  grid-template-columns: 1.45fr .85fr;
  gap: 80px;
  align-items: start;
}

.hn-faq-list {
  display: grid;
  gap: 12px;
}

.hn-faq-item {
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  background: #201e3a;
  overflow: hidden;
}

.hn-faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: #e7eaff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.hn-faq-plus {
  font-size: 23px;
  font-weight: 400;
  color: #fff;
}

.hn-faq-answer {
  display: none;
  padding: 0 20px 22px;
  color: #bcc7e3;
  line-height: 1.7;
  font-size: 14px;
}

.hn-faq-item.open .hn-faq-answer {
  display: block;
}

.hn-faq-item.open .hn-faq-plus {
  transform: rotate(45deg);
}

.hn-help-card {
  min-height: 380px;
  padding: 42px 35px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: rgba(15,14,40,.78);
  text-align: center;
}

.hn-help-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: #fff;
  position: relative;
}

.hn-help-icon::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: 8px;
  bottom: -3px;
  background: #fff;
  transform: rotate(30deg);
}

.hn-help-card h3 {
  margin: 0 0 15px;
  font-size: 18px;
}

.hn-help-card p {
  margin: 0 auto 28px;
  max-width: 360px;
  color: #9da9ca;
  line-height: 1.65;
  font-size: 14px;
}

.hn-help-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  margin-top: 12px;
  border-radius: 8px;
  background: #078dff;
  color: white;
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
}

.hn-help-btn.secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,.12);
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .hn-game-hero-inner,
  .hn-ddos-grid,
  .hn-faq-layout {
    grid-template-columns: 1fr;
  }

  .hn-game-hero {
    padding-bottom: 70px;
  }

  .hn-hero-art {
    height: 430px;
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }

  .hn-ddos-grid {
    gap: 45px;
  }

  .hn-security-art {
    min-height: 420px;
  }

  .hn-help-card {
    min-height: auto;
  }
}

@media (max-width: 700px) {
  .hn-game-shell {
    width: min(100% - 30px, 1240px);
  }

  .hn-game-feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .hn-game-feature {
    font-size: 13px;
  }

  .hn-hero-art {
    height: 360px;
  }

  .hn-hero-orb.one {
    width: 155px;
    height: 210px;
    right: 45%;
    top: 20px;
  }

  .hn-hero-orb.two {
    width: 185px;
    height: 250px;
    right: 0;
    top: 95px;
  }

  .hn-hero-orb.three {
    width: 190px;
    height: 255px;
    right: 28%;
    bottom: 0;
  }

  .hn-ddos-stats {
    gap: 25px;
  }

  .hn-ddos-stat strong {
    font-size: 25px;
  }
}

/* High-resolution game hero artwork */
.hn-hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.hn-game-hero-image {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100%, 560px);
  height: auto;
  max-height: 560px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 26px 50px rgba(0, 143, 254, 0.28));
}

@media (max-width: 1000px) {
  .hn-game-hero-image {
    width: min(100%, 500px);
    max-height: 500px;
  }
}

@media (max-width: 700px) {
  .hn-game-hero-image {
    width: min(100%, 390px);
    max-height: 390px;
  }
}
