:root {
  --main-font: "Cinzel", serif;
  --sub-font: "Poppins", sans-serif;
  --color-black: #000;
  --color-white: #fff;
  --color-blue: #1c229e;

  --font-size-h1: 1.41rem;
  --font-size-desc-1: 0.16rem;
  --font-size-header-text-1: 0.14rem;
  --font-size-btn-1: 0.18rem;
  --font-size-btn-2: 0.18rem;

  --line-height-h1: 1.26rem;
  --line-height-desc-1: 0.16rem;
  --line-height-header-text-1: 0.14rem;
  --line-height-btn-1: 0.18rem;
  --line-height-btn-2: 0.18rem;
}

html {
  font-size: 6.9444444444vw;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

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

body {
  background: var(--color-black);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(28, 34, 158, 0.26) 0%, rgba(0, 0, 0, 0.55) 42%, rgba(0, 0, 0, 0.92) 100%),
    radial-gradient(circle at 82% 62%, rgba(28, 34, 158, 0.18) 0%, rgba(0, 0, 0, 0.65) 48%, rgba(0, 0, 0, 1) 100%);
}

.container {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 0.32rem;
}

.title-h1 {
  font-size: var(--font-size-h1);
  line-height: var(--line-height-h1);
  font-weight: 700;
  color: var(--color-white);
  font-family: var(--main-font);
  letter-spacing: 0.02em;
}

.desc-1 {
  font-size: var(--font-size-desc-1);
  line-height: var(--line-height-desc-1);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--sub-font);
}

.header-text-1 {
  font-size: var(--font-size-header-text-1);
  line-height: var(--line-height-header-text-1);
  font-weight: 500;
  color: var(--color-white);
  font-family: var(--sub-font);
}

.btn-2 {
  font-size: var(--font-size-btn-1);
  line-height: var(--line-height-btn-1);
  font-weight: 600;
  color: var(--color-white);
  font-family: var(--sub-font);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 0.9rem;
  padding: 0 0.32rem;
  z-index: 10;
  background: linear-gradient(
    180deg,
    rgba(28, 34, 158, 0.55) 0%,
    rgba(0, 0, 0, 0.05) 100%
  );
  backdrop-filter: blur(6px);
}

.flex-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}

.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.12rem;
}

.brand-logo {
  width: 0.42rem;
  height: 0.42rem;
  object-fit: contain;
}

.brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 0.08rem;
  font-family: var(--sub-font);
  font-weight: 800;
  font-size: 0.2rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-text__n7 {
  color: rgba(255, 255, 255, 0.95);
}

.brand-text__store {
  color: rgba(28, 34, 158, 0.95);
}

.header-menu {
  display: flex;
  align-items: center;
  list-style-type: none;
}

.hero {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 0.36rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12rem;
  pointer-events: none;
  z-index: 4;
}

.scroll-indicator__text {
  font-family: var(--sub-font);
  font-size: 0.14rem;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.scroll-indicator__mouse {
  width: 0.32rem;
  height: 0.5rem;
  border-radius: 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.25);
  position: relative;
  box-shadow: 0 0.18rem 0.5rem rgba(28, 34, 158, 0.25);
  backdrop-filter: blur(6px);
}

.scroll-indicator__wheel {
  width: 0.06rem;
  height: 0.1rem;
  border-radius: 0.08rem;
  background: rgba(28, 34, 158, 0.95);
  position: absolute;
  top: 0.12rem;
  left: 50%;
  transform: translateX(-50%);
  animation: wheelMove 1.35s ease-in-out infinite;
}

@keyframes wheelMove {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.65;
  }
  55% {
    transform: translateX(-50%) translateY(0.12rem);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.65;
  }
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

#grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      circle at 25% 30%,
      rgba(28, 34, 158, 0.55) 0%,
      rgba(0, 0, 0, 0.3) 35%,
      rgba(0, 0, 0, 0.75) 100%
    );
}

.title-block {
  padding-left: 0;
  position: relative;
}

.title-block .title-h1 {
  text-transform: uppercase;
}

.title-row {
  display: flex;
  justify-content: center;
}

.title-charts-cont {
  display: flex;
  overflow: hidden;
}

.title-row-2 {
  padding-left: 0;
}

#store {
  margin-left: 0.28rem;
}

#pxl {
  margin-left: 0.28rem;
}

.copyright {
  position: absolute;
  bottom: 0.32rem;
  left: 0.32rem;
  overflow: hidden;
  display: flex;
  z-index: 4;
}

.book-btn {
  position: absolute;
  bottom: 0.32rem;
  right: 0.32rem;
  width: 1.7rem;
  height: 1.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  z-index: 4;
}

.access {
  min-height: 100vh;
  width: 100vw;
  position: relative;
  padding: 1.2rem 0 1rem;
  background: transparent;
}

.access .container {
  display: flex;
  justify-content: center;
}

.access::before {
  content: none;
}

.access-card {
  width: min(9.6rem, 100%);
  margin: 0 auto;
  border-radius: 0.22rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
}

.access-card__banner {
  width: 100%;
  height: 1.65rem;
  position: relative;
}

.access-card__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.access-card__body {
  padding: 0.34rem 0.34rem 0.38rem;
}

.access-card__title {
  font-family: var(--sub-font);
  font-weight: 700;
  font-size: 0.28rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.95);
}

 .access-tabs {
   margin-top: 0.18rem;
   display: flex;
   gap: 0.08rem;
   flex-wrap: wrap;
 }

 .access-tab {
   height: 0.36rem;
   padding: 0 0.14rem;
   border-radius: 0.12rem;
   border: 1px solid rgba(255, 255, 255, 0.12);
   background: rgba(255, 255, 255, 0.04);
   color: rgba(255, 255, 255, 0.82);
   font-family: var(--sub-font);
   font-weight: 600;
   font-size: 0.13rem;
   line-height: 1;
   cursor: pointer;
   transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, opacity 160ms ease;
 }

 .access-tab:hover {
   opacity: 0.95;
   transform: translateY(-0.01rem);
   border-color: rgba(28, 34, 158, 0.55);
 }

 .access-tab.is-active {
   background: rgba(28, 34, 158, 0.25);
   border-color: rgba(28, 34, 158, 0.55);
   color: rgba(255, 255, 255, 0.95);
   box-shadow: 0 0.18rem 0.55rem rgba(28, 34, 158, 0.22);
 }

 .access-tab:active {
   transform: translateY(0.01rem);
 }

.access-card__desc {
  margin-top: 0.12rem;
  font-family: var(--sub-font);
  font-weight: 500;
  font-size: 0.16rem;
  color: rgba(255, 255, 255, 0.75);
}

.access-card__steps {
  margin-top: 0.24rem;
  display: grid;
  gap: 0.14rem;
}

.access-step {
  display: grid;
  grid-template-columns: 0.16rem 1fr;
  gap: 0.12rem;
  align-items: start;
}

.access-step__dot {
  width: 0.1rem;
  height: 0.1rem;
  border-radius: 999px;
  margin-top: 0.04rem;
  background: rgba(28, 34, 158, 1);
  box-shadow: 0 0 0.2rem rgba(28, 34, 158, 0.65);
}

.access-step__text {
  font-family: var(--sub-font);
  font-weight: 500;
  font-size: 0.15rem;
  color: rgba(255, 255, 255, 0.82);
}

.access-card__actions {
  margin-top: 0.28rem;
  display: flex;
  gap: 0.16rem;
  flex-wrap: wrap;
}

.action-btn {
  height: 0.52rem;
  padding: 0 0.22rem;
  border-radius: 0.14rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sub-font);
  font-weight: 600;
  font-size: 0.16rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, opacity 160ms ease;
  user-select: none;
}

.action-btn--primary {
  background: rgba(28, 34, 158, 0.92);
  color: rgba(255, 255, 255, 0.95);
  border-color: rgba(28, 34, 158, 0.75);
  box-shadow: 0 0.2rem 0.65rem rgba(28, 34, 158, 0.35);
}

.action-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.12);
}

.action-btn:active {
  transform: translateY(0.02rem);
}

.action-btn[disabled] {
  opacity: 0.45;
  pointer-events: none;
}

.access-card__password {
  margin-top: 0.22rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.12rem;
  align-items: center;
  padding: 0.12rem 0.14rem;
  border-radius: 0.16rem;
  border: 1px solid rgba(28, 34, 158, 0.35);
  background: rgba(28, 34, 158, 0.12);
}

.access-card__password-text {
  display: grid;
  gap: 0.04rem;
}

.access-card__password-heading {
  margin-top: 0.22rem;
  margin-bottom: -0.14rem;
  font-family: var(--sub-font);
  font-weight: 700;
  font-size: 0.12rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.access-card__password-value {
  font-family: var(--sub-font);
  font-weight: 700;
  font-size: 0.14rem;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.02em;
}

.copy-btn {
  height: 0.38rem;
  padding: 0 0.14rem;
  border-radius: 0.12rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--sub-font);
  font-weight: 600;
  font-size: 0.13rem;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, opacity 160ms ease;
  user-select: none;
}

.copy-btn:active {
  transform: translateY(0.02rem);
}

.access-card__note {
  margin-top: 0.16rem;
  font-family: var(--sub-font);
  font-weight: 500;
  font-size: 0.14rem;
  color: rgba(255, 255, 255, 0.6);
}

.info-panel {
  width: 100vw;
  position: relative;
  padding: 0.22rem 0 0.24rem;
  margin-top: 0.18rem;
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  transition: all 0.3s ease;
  border: 0 solid #e4e4e7;
  border-style: solid;
}

.info-panel:hover {
  border-color: currentColor;
}

.info-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(28, 34, 158, 0.45), rgba(255, 255, 255, 0));
  opacity: 0.7;
}

.info-panel__grid {
  width: min(10rem, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.75fr;
  gap: 0.06rem;
  align-items: start;
}

.info-col {
  display: grid;
  gap: 0.05rem;
}

.info-col:nth-child(2),
.info-col:nth-child(3) {
  width: 1.575rem;
  height: auto;
  border: 0 solid #e4e4e7;
  border-style: solid;
  transition: all 0.3s ease;
  justify-items: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.12rem;
  padding: 0.2rem 0.1rem;
  border-radius: 0.12rem;
  background: rgba(255, 255, 255, 0.02);
}

.info-col:nth-child(2):hover,
.info-col:nth-child(3):hover {
  border-color: currentColor;
}

.info-col__title {
  font-family: var(--sub-font);
  font-weight: 800;
  font-size: 0.14rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
  margin-bottom: 0;
  text-align: center;
}

 .info-panel .info-col:first-child .info-col__title {
   text-align: right;
   justify-self: start;
   margin-bottom: 0.06rem;
 }

.info-box {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.info-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.045rem;
}

.info-list li {
  font-family: var(--sub-font);
  font-weight: 500;
  font-size: 0.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.info-list li::before {
  content: "•";
  display: inline-block;
  margin-inline-end: 0.12rem;
  color: rgba(28, 34, 158, 0.95);
}

 .info-credit {
   margin-top: 0.08rem;
   font-family: var(--sub-font);
   font-weight: 500;
   font-size: 0.11rem;
   color: rgba(255, 255, 255, 0.55);
   text-align: right;
 }

 .info-credit__link {
   color: rgba(255, 255, 255, 0.85);
   text-decoration: none;
   border-bottom: 1px solid rgba(28, 34, 158, 0.45);
   padding-bottom: 0.01rem;
   transition: opacity 160ms ease, border-color 160ms ease;
 }

 .info-credit__link:hover {
   opacity: 0.9;
   border-color: rgba(28, 34, 158, 0.85);
 }

.info-link {
  display: grid;
  text-decoration: none;
  padding: 0.02rem 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  gap: 0.03rem;
  justify-items: center;
}

.info-link:active {
  transform: translateY(0.02rem);
}

.info-link:hover .info-link__label {
  color: rgba(28, 34, 158, 0.95);
}

.info-link__label {
  font-family: var(--sub-font);
  font-weight: 800;
  font-size: 0.135rem;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}

.info-link__value {
  margin-top: 0;
  font-family: var(--sub-font);
  font-weight: 500;
  font-size: 0.115rem;
  color: rgba(255, 255, 255, 0.62);
  direction: ltr;
  text-align: center;
  word-break: break-word;
}

.info-panel .social-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  max-width: 100%;
  padding: 0.09rem 0.12rem;
  border: 0.0063rem solid rgba(255, 255, 255, 0.06);
  border-radius: 0.18rem;
  background: rgba(0, 0, 0, 0.3);
  color: #e4e4e7;
  text-decoration: none;
  gap: 0.1rem;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

 .info-panel .info-col:nth-child(2),
 .info-panel .info-col:nth-child(3) {
   width: auto;
   height: auto;
   padding: 0;
   background: transparent;
   border: 0;
   border-radius: 0;
   display: grid;
   align-items: start;
   justify-items: center;
   gap: 0.12rem;
 }

 .info-panel .info-col:nth-child(2):hover,
 .info-panel .info-col:nth-child(3):hover {
   border-color: transparent;
 }

 .info-panel .info-col:nth-child(2) .social-card,
 .info-panel .info-col:nth-child(3) .social-card {
   width: 100%;
   justify-content: flex-start;
   background: transparent;
   border: 0;
   padding: 0;
   border-radius: 0;
   gap: 0.12rem;
 }

 .info-panel .info-col:nth-child(2) .social-card:hover,
 .info-panel .info-col:nth-child(3) .social-card:hover {
   opacity: 0.9;
   transform: translateY(-0.01rem);
   border-color: transparent;
 }

.info-panel .social-card:hover {
  opacity: 0.9;
  transform: translateY(-0.01rem);
  border-color: currentColor;
}

.info-panel .social-card:active {
  transform: translateY(0.01rem);
}

.info-panel .social-card__text {
  min-width: 0;
  display: grid;
  gap: 0.02rem;
  text-align: right;
}

.info-panel .social-card__title {
  font-family: var(--sub-font);
  font-weight: 700;
  font-size: 0.135rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.2;
}

.info-panel .social-card__sub {
  font-family: var(--sub-font);
  font-weight: 500;
  font-size: 0.11rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.2;
}

.info-panel .social-card__icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  width: 0.18rem;
  height: 0.18rem;
}

.info-panel .social-card__icon--youtube {
  color: #ff0000;
}

.info-panel .social-card__icon--discord {
  color: #5865f2;
}

.info-panel .social-card:hover .social-card__icon {
  transform: scale(1.1);
}

@media (max-width: 900px) {
  .info-panel__grid {
    grid-template-columns: 1fr;
  }
}


.book-btn__circle {
  width: 1.7rem;
  height: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0.25rem 0.7rem rgba(28, 34, 158, 0.35);
  background: rgba(0, 0, 0, 0.75);
}

.btn-image {
  width: 1.28rem;
  height: 1.28rem;
  border-radius: 999px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.18rem 0.45rem rgba(0, 0, 0, 0.5);
  background: #000;
}

.btn-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-btn:hover .book-btn__circle {
  border-color: rgba(255, 255, 255, 1);
}

.book-btn:focus-visible {
  outline: 2px solid rgba(28, 34, 158, 0.9);
  outline-offset: 0.1rem;
}

@media (max-width: 900px) {
  html {
    font-size: 10vw;
  }

  .title-block {
    padding-left: 0;
  }

  .title-row-2 {
    padding-left: 0;
  }
}
