:root {
  --bg: #090604;
  --text: #efe3cf;
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top, rgba(255, 128, 48, 0.18), transparent 34%),
    linear-gradient(180deg, #110c0a 0%, #070403 54%, #040202 100%);
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  cursor: url("assets/cursor-small.png") 4 4, auto;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  content: none;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: url("assets/cursor-small.png") 4 4, auto;
}

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

.site-shell {
  position: relative;
  overflow: clip;
  min-height: 100svh;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 0.85rem 1.25rem 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  isolation: isolate;
}

.hero__backdrop,
.hero__veil,
.hero__embers {
  position: absolute;
  inset: 0;
}

.hero__backdrop {
  background: url("assets/background.png") center center / cover no-repeat;
  transform: none;
  filter: none;
  animation: none;
}

.hero__veil {
  display: none;
}

.hero__embers {
  display: none;
}

.stormfx-on .hero__veil,
.stormfx-on .hero__embers {
  display: block;
  pointer-events: none;
}

.stormfx-on .hero__veil {
  background:
    radial-gradient(circle at 52% 18%, rgba(250, 246, 238, 0) 0%, rgba(250, 246, 238, 0) 12%, rgba(250, 246, 238, 0.1) 18%, rgba(250, 246, 238, 0) 34%),
    radial-gradient(circle at 72% 14%, rgba(240, 246, 255, 0) 0%, rgba(240, 246, 255, 0.16) 10%, rgba(240, 246, 255, 0) 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.02) 45%, rgba(255, 255, 255, 0) 100%);
  mix-blend-mode: screen;
  opacity: 0;
  animation: sky-flash 18s linear infinite;
}

.stormfx-on .hero__embers::before,
.stormfx-on .hero__embers::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 420px;
  top: 6%;
  opacity: 0;
  filter:
    blur(0.4px)
    drop-shadow(0 0 10px rgba(255, 247, 233, 0.55))
    drop-shadow(0 0 24px rgba(214, 235, 255, 0.18));
  background: linear-gradient(180deg, rgba(255, 252, 242, 0.98), rgba(255, 246, 224, 0.7));
  clip-path: polygon(
    48% 0%,
    58% 0%,
    46% 20%,
    58% 20%,
    38% 44%,
    50% 44%,
    34% 66%,
    47% 66%,
    30% 100%,
    18% 100%,
    34% 74%,
    22% 74%,
    39% 50%,
    28% 50%,
    48% 24%,
    38% 24%
  );
  mix-blend-mode: screen;
}

.stormfx-on .hero__embers::before {
  right: 14%;
  transform: rotate(8deg);
  animation: bolt-glint-main 18s linear infinite;
}

.stormfx-on .hero__embers::after {
  width: 84px;
  height: 290px;
  left: 19%;
  top: 8%;
  transform: rotate(-7deg);
  opacity: 0;
  animation: bolt-glint-secondary 27s linear infinite;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 1120px);
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.7rem;
}

.hero__logo {
  width: min(42vw, 560px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0;
  filter:
    drop-shadow(0 18px 28px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 28px rgba(255, 132, 43, 0.17));
  animation: logo-rise 1.1s ease-out both;
}

.hero__video {
  width: min(34vw, 430px);
  aspect-ratio: 16 / 9;
  margin: clamp(-8.6rem, -9.3vw, -5.8rem) 0 0.55rem;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  background: rgba(10, 7, 6, 0.82);
  box-shadow:
    0 18px 32px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(216, 180, 134, 0.18);
}

.hero__video-fallback {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.hero__video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__video-fallback::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.3));
}

.hero__video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 84px;
  height: 58px;
  transform: translate(-50%, -50%);
  border-radius: 18px;
  background: rgba(183, 16, 16, 0.92);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 214, 170, 0.16);
  z-index: 2;
}

.hero__video-play::before {
  content: "";
  position: absolute;
  left: 33px;
  top: 17px;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #fff3df;
}

.hero__video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero__divider {
  display: block;
  max-width: 100%;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.38));
}

.hero__divider--below-cta {
  width: min(38vw, 430px);
  height: 22px;
  object-fit: cover;
  object-position: center;
  margin: 0;
  opacity: 0.98;
  filter:
    brightness(1.16)
    saturate(1.08)
    drop-shadow(0 0 8px rgba(255, 152, 68, 0.24))
    drop-shadow(0 8px 16px rgba(0, 0, 0, 0.32));
}

.hero__tagline {
  margin: 0;
  display: grid;
  gap: 0;
  color: #efdfc2;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(1.18rem, 1.75vw, 1.95rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.02;
  text-transform: uppercase;
  text-shadow: 0 0 26px rgba(0, 0, 0, 0.52);
  animation: fade-up 1.1s 0.16s ease-out both;
}

.hero__tagline span {
  color: #d8b486;
}

.hero__actions {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fade-up 1.1s 0.28s ease-out both;
}

.cta-image {
  display: inline-block;
  width: min(27vw, 360px);
  aspect-ratio: 1180 / 420;
  transition: transform 220ms ease, filter 220ms ease;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.45));
}

.cta-image:hover,
.cta-image:focus-visible {
  transform: translateY(-6px) scale(1.015);
  filter:
    drop-shadow(0 20px 28px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 22px rgba(255, 119, 46, 0.28));
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.launch-countdown {
  width: min(100%, 320px);
  padding: 0.82rem 0.88rem 0.78rem;
  border: 1px solid rgba(213, 168, 118, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(26, 18, 14, 0.9), rgba(11, 8, 7, 0.95));
  box-shadow:
    0 18px 30px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 241, 219, 0.06);
  text-align: center;
}

.launch-countdown__kicker {
  margin: 0;
  color: #cca474;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.launch-countdown__title {
  margin: 0.18rem 0 0;
  color: #f1dfc0;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.42);
}

.launch-countdown__grid {
  margin-top: 0.72rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.4rem;
}

.launch-countdown__cell {
  min-width: 0;
  padding: 0.52rem 0.35rem 0.48rem;
  border: 1px solid rgba(188, 142, 92, 0.2);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(37, 25, 18, 0.78), rgba(14, 10, 9, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 235, 208, 0.04);
}

.launch-countdown__value {
  display: block;
  color: #f4e6cb;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.launch-countdown__label {
  display: block;
  margin-top: 0.18rem;
  color: rgba(221, 191, 150, 0.86);
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.launch-countdown__note {
  margin: 0.62rem 0 0;
  color: rgba(227, 210, 184, 0.78);
  font-size: 0.78rem;
  line-height: 1.2;
}

.launch-status {
  width: min(100%, 320px);
  padding: 0.82rem 0.88rem 0.78rem;
  border: 1px solid rgba(213, 168, 118, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(26, 18, 14, 0.9), rgba(11, 8, 7, 0.95));
  box-shadow:
    0 18px 30px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 241, 219, 0.06);
  text-align: center;
}

.launch-status__kicker {
  margin: 0;
  color: #cca474;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.launch-status__title {
  margin: 0.18rem 0 0;
  color: #f1dfc0;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.42);
}

.launch-status__note {
  margin: 0.62rem 0 0;
  color: rgba(227, 210, 184, 0.78);
  font-size: 0.82rem;
  line-height: 1.28;
}

.quicklinks {
  width: min(100%, 900px);
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.15rem;
  align-items: end;
}

.quicklinks__item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1180 / 460;
  transform: translateY(18px);
  opacity: 0;
  animation: reveal-stagger 0.7s ease-out forwards;
}

.quicklinks__item:nth-child(1) {
  animation-delay: 0.38s;
}

.quicklinks__item:nth-child(2) {
  animation-delay: 0.48s;
}

.quicklinks__item:nth-child(3) {
  animation-delay: 0.58s;
}

.quicklinks__item:nth-child(4) {
  animation-delay: 0.68s;
}

.quicklinks__item:nth-child(5) {
  animation-delay: 0.78s;
}

.quicklinks__item::after {
  content: "";
  position: absolute;
  inset: 30% 18% 8%;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 109, 37, 0.18), transparent 68%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.quicklinks__item:hover,
.quicklinks__item:focus-visible {
  transform: translateY(-7px);
}

.quicklinks__item:hover::after,
.quicklinks__item:focus-visible::after {
  opacity: 1;
}

.quicklinks__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.54));
  transition: transform 220ms ease, filter 220ms ease;
}

.quicklinks__item:hover img,
.quicklinks__item:focus-visible img {
  transform: scale(1.02);
  filter:
    drop-shadow(0 18px 22px rgba(0, 0, 0, 0.58))
    drop-shadow(0 0 18px rgba(255, 121, 35, 0.18));
}

.quicklinks__item--classifica img {
  object-fit: cover;
  object-position: center center;
}

.quicklinks__item--classifica:hover img,
.quicklinks__item--classifica:focus-visible img {
  transform: scale(1.02);
}

.site-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 0.2rem;
  padding: 0 1rem;
  text-align: center;
}

.site-footer__label,
.site-footer__copy {
  margin: 0;
  color: #cfb08b;
  font-family: "Cinzel", "Times New Roman", serif;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.45);
}

.site-footer__label {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.88;
}

.site-footer__brand {
  width: min(150px, 32vw);
  height: auto;
  opacity: 0.95;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

.site-footer__inforge-link {
  display: grid;
  justify-items: center;
  gap: 0.28rem;
  margin-top: 0.18rem;
}

.site-footer__inforge-link:hover .site-footer__inforge-logo,
.site-footer__inforge-link:focus-visible .site-footer__inforge-logo {
  transform: translateY(-1px);
  filter:
    drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 16px rgba(255, 131, 37, 0.18));
}

.site-footer__inforge-label {
  color: #cfb08b;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 0.54rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.45);
  opacity: 0.9;
}

.site-footer__inforge-logo {
  width: min(34px, 9vw);
  height: auto;
  opacity: 0.96;
  transition: transform 180ms ease, filter 180ms ease;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

.site-footer__copy {
  max-width: 72ch;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  line-height: 1.35;
}

.metin2pserver-backlink {
  position: fixed;
  left: clamp(10px, 1.8vw, 22px);
  right: auto;
  bottom: clamp(10px, 1.8vw, 18px);
  z-index: 24;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  max-width: calc(100vw - 20px);
  border: 1px solid rgba(199, 154, 81, 0.34);
  border-radius: 12px;
  background: rgba(9, 8, 6, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 14px 32px rgba(0, 0, 0, 0.34);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, opacity 180ms ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0.96;
}

.metin2pserver-backlink:hover,
.metin2pserver-backlink:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
  border-color: rgba(240, 139, 66, 0.48);
  background: rgba(240, 139, 66, 0.03);
}

.metin2pserver-backlink img {
  display: block;
  width: min(100%, 220px);
  height: auto;
}

.shop-section {
  position: relative;
  padding: 6rem 1.25rem 4.5rem;
  scroll-margin-top: 1rem;
  isolation: isolate;
}

.shop-section__backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at top, rgba(255, 139, 52, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(4, 2, 2, 0.96), rgba(10, 5, 4, 0.98));
}

.shop-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 118, 36, 0.04), transparent 18%),
    radial-gradient(circle at 50% 0%, rgba(255, 168, 79, 0.08), transparent 26%);
  pointer-events: none;
}

.shop-section__inner {
  width: min(100%, 1160px);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 1.35rem;
}

.shop-section__heading {
  display: grid;
  justify-items: center;
  gap: 0.25rem;
  text-align: center;
}

.shop-section__kicker,
.ac-packages__kicker {
  margin: 0;
  color: #cda678;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.shop-section__title,
.ac-packages__title {
  margin: 0;
  color: #f0e0c5;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(0, 0, 0, 0.42);
}

.shop-section__subtitle {
  max-width: 60ch;
  margin: 0;
  color: rgba(231, 212, 184, 0.86);
  font-size: 1.05rem;
  line-height: 1.3;
}

.shop-hero-card {
  width: min(100%, 420px);
  padding: 1rem 1rem 0.9rem;
  border: 1px solid rgba(214, 170, 123, 0.26);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(31, 20, 15, 0.88), rgba(13, 9, 7, 0.94));
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 233, 204, 0.08);
}

.shop-hero-card__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 20px 26px rgba(0, 0, 0, 0.46))
    drop-shadow(0 0 22px rgba(255, 132, 43, 0.12));
}

.shop-panel,
.ac-packages,
.shop-disclaimer {
  width: min(100%, 1160px);
  border: 1px solid rgba(214, 170, 123, 0.24);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(29, 20, 15, 0.86), rgba(11, 8, 6, 0.94));
  box-shadow:
    0 28px 62px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(255, 239, 214, 0.08);
}

.shop-panel {
  padding: 1.2rem;
}

.shop-panel__header {
  display: grid;
  gap: 0.18rem;
  margin-bottom: 0.95rem;
  text-align: center;
}

.shop-panel__title {
  margin: 0;
  color: #efddbf;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-panel__meta {
  margin: 0;
  color: rgba(226, 207, 179, 0.75);
  font-size: 0.98rem;
}

.shop-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.55fr) minmax(200px, 0.72fr);
  gap: 0.9rem;
}

.shop-grid__column {
  min-width: 0;
  border: 1px solid rgba(191, 140, 88, 0.24);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(21, 15, 12, 0.9), rgba(11, 8, 7, 0.96));
  overflow: hidden;
}

.shop-grid__label {
  padding: 0.92rem 1rem 0.8rem;
  border-bottom: 1px solid rgba(191, 140, 88, 0.2);
  color: #efd8af;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(180deg, rgba(59, 34, 20, 0.56), rgba(24, 16, 12, 0.6));
}

.shop-grid__body {
  padding: 1rem;
}

.shop-grid__body--list {
  display: grid;
  gap: 0.7rem;
  max-height: 560px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(188, 130, 70, 0.84) rgba(17, 11, 8, 0.92);
}

.shop-grid__body--list::-webkit-scrollbar {
  width: 10px;
}

.shop-grid__body--list::-webkit-scrollbar-track {
  background: rgba(17, 11, 8, 0.92);
}

.shop-grid__body--list::-webkit-scrollbar-thumb {
  border: 2px solid rgba(17, 11, 8, 0.92);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(225, 184, 125, 0.94), rgba(168, 98, 43, 0.94));
}

.shop-list-group {
  display: grid;
  gap: 0.38rem;
}

.shop-list-group__title {
  margin: 0 0 0.15rem;
  color: #cf9f6b;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shop-list-item {
  width: 100%;
  padding: 0.72rem 0.82rem;
  border: 1px solid rgba(176, 123, 70, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(38, 25, 18, 0.86), rgba(14, 10, 8, 0.92));
  color: #ead8b8;
  text-align: left;
  font: inherit;
  font-size: 0.94rem;
  line-height: 1.18;
  box-shadow:
    inset 0 1px 0 rgba(255, 235, 208, 0.03),
    0 10px 16px rgba(0, 0, 0, 0.12);
  cursor: url("assets/cursor-small.png") 4 4, auto;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.shop-list-item:hover,
.shop-list-item:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(224, 160, 93, 0.34);
  box-shadow:
    0 16px 24px rgba(0, 0, 0, 0.2),
    0 0 14px rgba(255, 115, 31, 0.1);
  outline: none;
}

.shop-list-item.is-active {
  border-color: rgba(255, 126, 54, 0.52);
  background:
    linear-gradient(180deg, rgba(76, 30, 15, 0.92), rgba(26, 12, 9, 0.96));
  box-shadow:
    0 18px 30px rgba(0, 0, 0, 0.28),
    0 0 22px rgba(255, 102, 28, 0.14),
    inset 0 0 0 1px rgba(255, 198, 139, 0.08);
}

.shop-grid__category {
  margin: 0 0 0.3rem;
  color: #c89a6b;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shop-grid__item-title {
  margin: 0;
  color: #f0dfc0;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.shop-grid__item-description {
  margin: 0.6rem 0 0;
  color: rgba(232, 217, 194, 0.86);
  font-size: 1rem;
  line-height: 1.42;
}

.shop-grid__body--cost {
  height: 100%;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.55rem;
  text-align: center;
}

.shop-grid__cost-value {
  margin: 0;
  color: #f4d28a;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow:
    0 0 18px rgba(255, 149, 60, 0.18),
    0 0 28px rgba(0, 0, 0, 0.32);
}

.shop-grid__cost-note {
  margin: 0;
  color: rgba(221, 203, 176, 0.72);
  font-size: 0.9rem;
  line-height: 1.28;
}

.shop-panel__actions {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
}

.shop-panel__cta {
  min-width: 240px;
  padding: 0.9rem 1.35rem;
  border: 1px solid rgba(220, 163, 103, 0.36);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(119, 41, 12, 0.92), rgba(57, 18, 7, 0.96));
  color: #f6e2bf;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 226, 180, 0.16),
    0 18px 28px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.shop-panel__cta:hover,
.shop-panel__cta:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(245, 188, 122, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 226, 180, 0.18),
    0 22px 34px rgba(0, 0, 0, 0.34),
    0 0 18px rgba(255, 113, 38, 0.18);
}

.shop-panel__status,
.ac-packages__note,
.shop-disclaimer {
  color: rgba(226, 208, 179, 0.78);
  font-size: 0.96rem;
  line-height: 1.35;
}

.shop-panel__status {
  margin: 0;
  text-align: center;
}

.ac-packages {
  padding: 1.2rem;
  display: grid;
  gap: 1rem;
}

.ac-packages__heading {
  display: grid;
  gap: 0.14rem;
  justify-items: center;
  text-align: center;
}

.ac-packages__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.ac-packages__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.7rem;
}

.ac-package-card {
  padding: 0.88rem 0.8rem;
  border: 1px solid rgba(188, 142, 92, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(34, 23, 17, 0.88), rgba(13, 9, 8, 0.94));
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 235, 208, 0.04),
    0 14px 22px rgba(0, 0, 0, 0.18);
}

.ac-package-card__coins {
  margin: 0;
  color: #efdfc2;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.ac-package-card__price {
  margin: 0.28rem 0 0;
  color: #d6aa77;
  font-size: 1rem;
  font-weight: 600;
}

.ac-packages__note {
  margin: 0;
  text-align: center;
}

.shop-disclaimer {
  padding: 1rem 1.2rem;
  text-align: center;
}

.register-modal[hidden] {
  display: none;
}

.register-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.register-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(34, 18, 10, 0.22), rgba(3, 2, 1, 0.82)),
    rgba(6, 4, 3, 0.64);
  backdrop-filter: blur(12px) saturate(1.12);
}

.register-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  max-height: min(92svh, 860px);
  padding: 1.15rem 1.15rem 1.05rem;
  border: 1px solid rgba(214, 170, 123, 0.34);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(33, 22, 17, 0.78), rgba(14, 10, 8, 0.92)),
    rgba(18, 12, 10, 0.86);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.54),
    inset 0 1px 0 rgba(255, 237, 211, 0.14),
    0 0 0 1px rgba(123, 79, 40, 0.28);
  overflow: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(188, 130, 70, 0.9) rgba(17, 11, 8, 0.92);
}

.register-modal__panel::-webkit-scrollbar {
  width: 12px;
}

.register-modal__panel::-webkit-scrollbar-track {
  background:
    linear-gradient(180deg, rgba(22, 14, 10, 0.96), rgba(10, 6, 5, 0.96));
  border-left: 1px solid rgba(124, 79, 42, 0.2);
}

.register-modal__panel::-webkit-scrollbar-thumb {
  border: 2px solid rgba(17, 11, 8, 0.92);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(227, 186, 126, 0.96), rgba(174, 104, 47, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 231, 198, 0.34),
    0 0 10px rgba(255, 137, 44, 0.14);
}

.register-modal__panel::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, rgba(242, 204, 144, 0.98), rgba(193, 115, 52, 0.96));
}

.register-modal__panel::-webkit-scrollbar-corner {
  background: rgba(10, 6, 5, 0.96);
}

.register-modal__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(255, 143, 52, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 48%);
  pointer-events: none;
}

.register-modal__close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(216, 180, 134, 0.24);
  border-radius: 999px;
  background: rgba(20, 13, 10, 0.58);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  cursor: url("assets/cursor-small.png") 4 4, auto;
}

.register-modal__close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 1px;
  background: #dcb88b;
}

.register-modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.register-modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.register-modal__close:hover,
.register-modal__close:focus-visible {
  border-color: rgba(255, 169, 84, 0.42);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.34),
    0 0 18px rgba(255, 127, 52, 0.18);
}

.register-modal__kicker,
.register-modal__title,
.register-modal__description,
.register-form__label,
.register-form__hint,
.register-form__captcha-text,
.register-form__terms,
.register-form__status {
  position: relative;
  z-index: 1;
}

.register-modal__kicker {
  margin: 0 0 0.4rem;
  color: #cfa97b;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.register-modal__title {
  margin: 0;
  color: #f2e3c8;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(0, 0, 0, 0.34);
}

.register-modal__description {
  max-width: 56ch;
  margin: 0.38rem 0 0;
  color: rgba(238, 221, 196, 0.88);
  font-size: 0.92rem;
  line-height: 1.22;
}

.register-modal__divider {
  width: min(100%, 360px);
  height: 16px;
  margin: 0.35rem auto 0.55rem;
  object-fit: cover;
  object-position: center;
  opacity: 0.96;
  filter:
    brightness(1.15)
    drop-shadow(0 0 8px rgba(255, 143, 69, 0.18))
    drop-shadow(0 8px 12px rgba(0, 0, 0, 0.2));
}

.register-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.72rem;
}

.register-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem 0.85rem;
}

.register-form__field {
  display: grid;
  gap: 0.28rem;
}

.register-form__field--full {
  grid-column: 1 / -1;
}

.register-form__label {
  color: #e8d1aa;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.register-form__input {
  width: 100%;
  min-height: 46px;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(214, 170, 123, 0.22);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(32, 23, 18, 0.84), rgba(15, 10, 8, 0.92));
  color: #f3e6cf;
  font: inherit;
  font-size: 0.94rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 245, 230, 0.05),
    0 10px 22px rgba(0, 0, 0, 0.14);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.register-form__input::placeholder {
  color: rgba(212, 188, 155, 0.5);
}

.register-form__input:hover,
.register-form__input:focus-visible {
  border-color: rgba(245, 179, 98, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 245, 230, 0.08),
    0 0 0 3px rgba(255, 148, 60, 0.09),
    0 14px 28px rgba(0, 0, 0, 0.2);
  outline: none;
  transform: translateY(-1px);
}

.register-form__hint {
  color: rgba(215, 192, 163, 0.75);
  font-size: 0.82rem;
  line-height: 1.2;
}

.register-form__captcha {
  display: grid;
  gap: 0.32rem;
}

.register-form__captcha-slot {
  display: grid;
  gap: 0.22rem;
  padding: 0.72rem 0.85rem;
  border: 1px dashed rgba(216, 180, 134, 0.26);
  border-radius: 14px;
  background: rgba(22, 16, 13, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 242, 219, 0.04);
}

.register-form__captcha-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.24rem 0.65rem;
  border: 1px solid rgba(224, 192, 145, 0.24);
  border-radius: 999px;
  background: rgba(52, 33, 20, 0.5);
  color: #e8c28a;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.register-form__captcha-text {
  color: rgba(230, 214, 188, 0.78);
  font-size: 0.86rem;
  line-height: 1.2;
}

.register-form__terms {
  display: flex;
  align-items: flex-start;
  gap: 0.62rem;
  color: #e7d2ae;
  font-size: 0.86rem;
  line-height: 1.25;
}

.register-form__terms input {
  margin-top: 0.16rem;
  accent-color: #ce7d39;
}

.register-form__actions {
  display: grid;
  gap: 0.38rem;
}

.register-form__submit {
  min-height: 46px;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(212, 159, 101, 0.38);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(114, 39, 12, 0.9), rgba(61, 20, 7, 0.96));
  color: #f6e5c8;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 224, 174, 0.16),
    0 14px 26px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 116, 37, 0.12);
  cursor: url("assets/cursor-small.png") 4 4, auto;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.register-form__submit:hover,
.register-form__submit:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(246, 184, 113, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 224, 174, 0.18),
    0 18px 32px rgba(0, 0, 0, 0.3),
    0 0 18px rgba(255, 118, 31, 0.2);
}

.register-form__status {
  min-height: 1.2rem;
  margin: 0;
  color: rgba(221, 196, 160, 0.78);
  font-size: 0.84rem;
  line-height: 1.2;
}

.portal-orb {
  position: fixed;
  top: clamp(18px, 4vw, 40px);
  right: clamp(18px, 4vw, 44px);
  z-index: 32;
  min-width: 110px;
  padding: 10px 14px 10px 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(199, 154, 81, 0.28);
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.06), transparent 38%),
    linear-gradient(180deg, rgba(18, 15, 12, 0.84), rgba(9, 8, 6, 0.8));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 36px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 196, 112, 0.03);
  color: var(--text);
  cursor: url("assets/cursor-small.png") 4 4, auto;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.portal-orb:hover,
.portal-orb:focus-visible {
  transform: translateY(-2px) scale(1.01);
  border-color: rgba(240, 139, 66, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 42px rgba(0, 0, 0, 0.3),
    0 0 18px rgba(240, 139, 66, 0.12);
}

.portal-orb-core {
  width: 42px;
  height: 42px;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(199, 154, 81, 0.26);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(199, 154, 81, 0.12), transparent 54%),
    rgba(13, 11, 9, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.portal-orb-head {
  position: absolute;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 221, 167, 0.9), rgba(240, 139, 66, 0.9));
}

.portal-orb-body {
  position: absolute;
  bottom: 10px;
  width: 18px;
  height: 9px;
  border-radius: 999px 999px 4px 4px;
  border: 1px solid rgba(255, 221, 167, 0.42);
  background: rgba(240, 139, 66, 0.18);
}

.portal-orb-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 228, 207, 0.84);
}

.auth-modal__panel {
  width: min(100%, 560px);
}

.auth-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.8rem;
}

.auth-form__grid {
  display: grid;
  gap: 0.75rem;
}

.auth-form__hint {
  margin: 0;
  color: rgba(215, 192, 163, 0.75);
  font-size: 0.84rem;
}

.auth-form__hint a {
  color: #f0c37b;
}

.auth-form__actions {
  margin-top: 0.2rem;
}

[data-classifica-panel] {
  width: min(100%, 960px);
}

.classifica-modal__body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.9rem;
}

.classifica-modal__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.classifica-modal__tabs {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.32rem;
  border: 1px solid rgba(214, 170, 123, 0.18);
  border-radius: 999px;
  background: rgba(15, 11, 9, 0.72);
}

.classifica-modal__tab {
  min-height: 38px;
  padding: 0.5rem 0.95rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: rgba(232, 209, 170, 0.86);
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: url("assets/cursor-small.png") 4 4, auto;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.classifica-modal__tab:hover,
.classifica-modal__tab:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(214, 170, 123, 0.3);
  color: #f3e6cf;
}

.classifica-modal__tab.is-active {
  border-color: rgba(214, 170, 123, 0.34);
  background:
    linear-gradient(180deg, rgba(114, 39, 12, 0.84), rgba(61, 20, 7, 0.92));
  color: #f6e5c8;
  box-shadow:
    inset 0 1px 0 rgba(255, 224, 174, 0.14),
    0 10px 22px rgba(0, 0, 0, 0.2);
}

.classifica-modal__updated,
.classifica-modal__status {
  margin: 0;
}

.classifica-modal__updated {
  color: rgba(228, 193, 136, 0.9);
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.classifica-modal__status {
  min-height: 1.15rem;
  color: rgba(221, 196, 160, 0.82);
  font-size: 0.86rem;
  line-height: 1.25;
}

.classifica-modal__status.is-success {
  color: #d8c48f;
}

.classifica-modal__status.is-error {
  color: #f0aa8d;
}

.classifica-modal__table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(214, 170, 123, 0.16);
  border-radius: 16px;
  background: rgba(15, 11, 9, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 242, 219, 0.04);
}

.classifica-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.classifica-table th,
.classifica-table td {
  padding: 0.78rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid rgba(214, 170, 123, 0.12);
}

.classifica-table th {
  color: #d8bc91;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(25, 18, 14, 0.86);
}

.classifica-table td {
  color: #f0e0c3;
  font-size: 0.92rem;
}

.classifica-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.01);
}

.classifica-table tbody tr:last-child td {
  border-bottom: 0;
}

.classifica-table__row--empty td {
  text-align: center;
  color: rgba(221, 196, 160, 0.78);
}

.classifica-modal__actions {
  justify-items: center;
}

.classifica-modal__actions .register-form__submit {
  width: min(100%, 220px);
}

.download-modal:not([hidden]) .register-modal__backdrop {
  animation: modal-overlay-fade 220ms ease-out both;
}

.download-modal:not([hidden]) .download-modal__panel {
  animation: modal-panel-rise 240ms ease-out both;
}

.download-modal__panel {
  width: min(100%, 720px);
}

.download-modal__body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.9rem;
}

.download-modal__prereq {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid rgba(223, 170, 96, 0.3);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(46, 28, 18, 0.9), rgba(18, 12, 10, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 230, 188, 0.08),
    0 18px 32px rgba(0, 0, 0, 0.24);
}

.download-modal__eyebrow {
  margin: 0;
  color: #f0c37b;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.download-modal__prereq-title {
  margin: 0;
  color: #f5e5c7;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.2;
}

.download-modal__prereq-copy {
  margin: 0;
  color: rgba(239, 225, 201, 0.88);
  font-size: 0.92rem;
  line-height: 1.5;
}

.download-modal__prereq-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.download-modal__redist-link,
.download-modal__secondary {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.download-modal__secondary {
  background:
    linear-gradient(180deg, rgba(54, 39, 27, 0.9), rgba(24, 17, 13, 0.96));
  color: #f0dec1;
  box-shadow:
    inset 0 1px 0 rgba(255, 231, 192, 0.1),
    0 10px 20px rgba(0, 0, 0, 0.22);
}

.download-modal__guide {
  border: 1px solid rgba(214, 170, 123, 0.18);
  border-radius: 14px;
  background: rgba(17, 12, 9, 0.62);
  padding: 0.8rem 0.9rem;
}

.download-modal__guide summary {
  color: #e8c28a;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.download-modal__guide summary:focus-visible {
  outline: 1px solid rgba(246, 184, 113, 0.52);
  outline-offset: 4px;
}

.download-modal__guide-list {
  margin: 0.8rem 0 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.34rem;
  color: rgba(239, 225, 201, 0.84);
  font-size: 0.9rem;
  line-height: 1.45;
}

.download-modal__subtitle,
.download-modal__note,
.download-modal__status {
  margin: 0;
  color: rgba(238, 221, 196, 0.88);
}

.download-modal__subtitle {
  color: #e4c188;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.download-modal__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.download-modal__link {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.download-modal__link.is-locked {
  opacity: 0.46;
  filter: grayscale(0.18);
  pointer-events: none;
  cursor: not-allowed;
  box-shadow:
    inset 0 1px 0 rgba(255, 224, 174, 0.08),
    0 8px 16px rgba(0, 0, 0, 0.22);
}

.download-modal__link.is-locked:hover,
.download-modal__link.is-locked:focus-visible {
  transform: none;
  border-color: rgba(212, 159, 101, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 224, 174, 0.08),
    0 8px 16px rgba(0, 0, 0, 0.22);
}

.download-modal__note {
  font-size: 0.92rem;
  line-height: 1.3;
}

.download-modal__status {
  min-height: 1.15rem;
  color: #e3c78d;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
}

.download-modal__actions {
  justify-items: center;
}

.download-modal__dismiss {
  width: min(100%, 220px);
}

.register-form__status.is-success {
  color: #d8c48f;
}

.register-form__status.is-error {
  color: #f0aa8d;
}

.account-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at top, rgba(255, 128, 48, 0.18), transparent 34%),
    linear-gradient(180deg, #110c0a 0%, #070403 54%, #040202 100%);
}

.account-shell {
  min-height: 100svh;
  padding: clamp(24px, 5vw, 42px);
  display: grid;
  align-content: start;
  gap: 2rem;
}

.account-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.account-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.account-header__brand img {
  width: min(42vw, 240px);
  height: auto;
}

.account-header__home {
  min-height: 46px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(214, 170, 123, 0.28);
  border-radius: 999px;
  background: rgba(16, 10, 8, 0.68);
  color: #f0dec2;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.account-panel {
  width: min(100%, 960px);
  margin: 0 auto;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(214, 170, 123, 0.28);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(33, 22, 17, 0.78), rgba(14, 10, 8, 0.92)),
    rgba(18, 12, 10, 0.86);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.54),
    inset 0 1px 0 rgba(255, 237, 211, 0.12),
    0 0 0 1px rgba(123, 79, 40, 0.2);
}

.account-panel__kicker {
  margin: 0 0 0.4rem;
  color: #cfa97b;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.account-panel__title {
  margin: 0;
  color: #f2e3c8;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.account-panel__description {
  margin: 0.55rem 0 1.35rem;
  max-width: 60ch;
  color: rgba(238, 221, 196, 0.88);
  line-height: 1.35;
}

.account-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.2rem;
}

.account-summary__card,
.account-section {
  padding: 1rem;
  border: 1px solid rgba(214, 170, 123, 0.2);
  border-radius: 16px;
  background: rgba(15, 11, 9, 0.76);
}

.account-summary__label,
.account-section__title {
  color: #d8bc91;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.account-summary__value {
  margin-top: 0.45rem;
  color: #f3e6cf;
  font-size: 1.1rem;
}

.account-sections {
  display: grid;
  gap: 0.85rem;
}

.account-section__description {
  margin: 0.55rem 0 0;
  color: rgba(221, 206, 184, 0.82);
  line-height: 1.35;
}

.account-section--muted {
  opacity: 0.78;
}

.account-form {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.85rem;
}

.account-form__grid {
  display: grid;
  gap: 0.75rem;
}

.account-form__actions {
  display: grid;
  gap: 0.55rem;
  align-items: start;
}

.reset-panel {
  width: min(100%, 720px);
}

.reset-view[hidden] {
  display: none;
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.account-button {
  min-height: 46px;
  padding: 0.78rem 1rem;
  border: 1px solid rgba(214, 170, 123, 0.3);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(114, 39, 12, 0.9), rgba(61, 20, 7, 0.96));
  color: #f6e5c8;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.account-button--ghost {
  background: rgba(16, 10, 8, 0.68);
}

.account-status {
  min-height: 1.25rem;
  margin: 0;
  color: rgba(221, 196, 160, 0.82);
}

.account-status.is-success {
  color: #d8c48f;
}

.account-status.is-error {
  color: #f0aa8d;
}

.account-empty[hidden],
.account-authenticated[hidden] {
  display: none;
}

@media (max-width: 720px) {
  .launch-status {
    width: min(100%, 420px);
  }

  .classifica-modal__toolbar {
    align-items: stretch;
  }

  .classifica-modal__tabs {
    width: 100%;
    justify-content: center;
  }

  .classifica-modal__tab {
    flex: 1 1 0;
  }

  .classifica-modal__updated {
    font-size: 0.72rem;
    text-align: center;
  }

  .classifica-table th,
  .classifica-table td {
    padding: 0.68rem 0.7rem;
  }
}

@media (min-width: 861px) and (max-height: 980px) {
  .register-modal__panel {
    width: min(100%, 640px);
    max-height: min(93svh, 780px);
    padding: 0.92rem 0.95rem 0.9rem;
  }

  .register-modal__title {
    font-size: clamp(1.28rem, 2vw, 1.7rem);
  }

  .register-modal__description {
    font-size: 0.86rem;
  }

  .register-modal__divider {
    height: 14px;
    margin-bottom: 0.48rem;
  }

  .register-form {
    gap: 0.58rem;
  }

  .register-form__grid {
    gap: 0.58rem 0.75rem;
  }

  .register-form__label {
    font-size: 0.68rem;
  }

  .register-form__input {
    min-height: 42px;
    padding: 0.7rem 0.8rem;
    font-size: 0.88rem;
  }

  .register-form__hint,
  .register-form__captcha-text,
  .register-form__terms,
  .register-form__status {
    font-size: 0.78rem;
  }

  .register-form__captcha-slot {
    padding: 0.62rem 0.78rem;
  }

  .register-form__submit {
    min-height: 42px;
    font-size: 0.86rem;
  }
}

.register-form__status.is-success {
  color: #e5c587;
}

.register-form__status.is-error {
  color: #f1b08d;
}

@keyframes sky-flash {
  0%, 11.5%, 12.6%, 12.9%, 13.4%, 54.4%, 55.1%, 55.5%, 82.5%, 83.2%, 100% {
    opacity: 0;
  }
  12.1% {
    opacity: 0.08;
  }
  12.75% {
    opacity: 0.03;
  }
  13.1% {
    opacity: 0.15;
  }
  54.8% {
    opacity: 0.06;
  }
  55.25% {
    opacity: 0.11;
  }
  82.9% {
    opacity: 0.04;
  }
}

@keyframes bolt-glint-main {
  0%, 11.7%, 12.45%, 12.86%, 13.32%, 100% {
    opacity: 0;
  }
  12.08% {
    opacity: 0.16;
  }
  12.7% {
    opacity: 0.06;
  }
  13.08% {
    opacity: 0.26;
  }
}

@keyframes bolt-glint-secondary {
  0%, 62.2%, 62.85%, 63.3%, 100% {
    opacity: 0;
  }
  62.55% {
    opacity: 0.08;
  }
  63.05% {
    opacity: 0.14;
  }
}

@keyframes logo-rise {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reveal-stagger {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modal-overlay-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modal-panel-rise {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes ember-rise {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-38px);
  }
}

@keyframes backdrop-drift {
  from {
    transform: translate3d(calc(var(--hero-shift-x) - 10px), calc(var(--hero-shift-y) - 6px), 0) scale(1.06);
  }
  to {
    transform: translate3d(calc(var(--hero-shift-x) + 10px), calc(var(--hero-shift-y) + 8px), 0) scale(1.11);
  }
}

@media (max-width: 860px) {
  .hero {
    padding-top: 0.8rem;
  }

  .hero__logo {
    width: min(62vw, 520px);
  }

  .hero__video {
    width: min(54vw, 390px);
    margin-top: clamp(-6.8rem, -10vw, -4.8rem);
  }

  .hero__divider--below-cta {
    width: min(50vw, 360px);
    height: 20px;
  }

  .quicklinks {
    width: min(100%, 780px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quicklinks__item {
    width: 100%;
  }

  .register-modal__panel {
    width: min(100%, 620px);
  }

  .download-modal__links {
    grid-template-columns: 1fr;
  }

  .shop-section {
    padding-top: 5rem;
  }

  .shop-hero-card {
    width: min(100%, 360px);
  }

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

  .shop-grid__body--list {
    max-height: 320px;
  }

  .shop-grid__body--cost {
    align-content: start;
  }

  .ac-packages__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 861px) and (max-height: 900px) {
  .hero {
    padding-top: 0.4rem;
    padding-bottom: 8.2rem;
  }

  .hero__content {
    gap: 0.38rem;
  }

  .hero__logo {
    width: min(37vw, 500px);
  }

  .hero__video {
    width: min(28vw, 360px);
    margin-top: clamp(-6.4rem, -9vh, -4.3rem);
    margin-bottom: 0.4rem;
  }

  .hero__tagline {
    font-size: clamp(1rem, 1.35vw, 1.45rem);
    line-height: 1;
  }

  .cta-image {
    width: min(24vw, 320px);
  }

  .launch-countdown {
    width: min(100%, 280px);
    padding: 0.72rem 0.76rem 0.68rem;
  }

  .launch-countdown__title {
    font-size: 0.86rem;
  }

  .launch-countdown__value {
    font-size: 1rem;
  }

  .launch-countdown__note {
    font-size: 0.74rem;
  }

  .hero__divider--below-cta {
    width: min(29vw, 320px);
    height: 16px;
  }

  .quicklinks {
    width: min(100%, 840px);
    gap: 0.1rem;
  }

  .site-footer {
    bottom: 0.65rem;
    gap: 0.1rem;
  }

  .site-footer__label,
  .site-footer__copy {
    font-size: 0.66rem;
  }

  .site-footer__brand {
    width: 132px;
  }

  .site-footer__inforge-logo {
    width: 30px;
  }
}

@media (min-width: 861px) and (max-height: 760px) {
  .hero {
    padding-top: 0.2rem;
    padding-bottom: 7rem;
  }

  .hero__logo {
    width: min(33vw, 430px);
  }

  .hero__video {
    width: min(24vw, 300px);
    margin-top: clamp(-4.8rem, -7.8vh, -3rem);
    margin-bottom: 0.3rem;
  }

  .hero__tagline {
    font-size: 0.92rem;
    line-height: 0.98;
  }

  .cta-image {
    width: min(21vw, 270px);
  }

  .hero__divider--below-cta {
    width: min(25vw, 260px);
    height: 14px;
  }

  .quicklinks {
    width: min(100%, 780px);
  }

  .site-footer__label {
    display: none;
  }

  .site-footer__copy {
    font-size: 0.62rem;
    letter-spacing: 0.04em;
  }

  .site-footer__brand {
    width: 118px;
  }

  .site-footer__inforge-label {
    font-size: 0.5rem;
  }

  .site-footer__inforge-logo {
    width: 26px;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 100svh;
    padding-top: 0.7rem;
    padding-bottom: 8.75rem;
  }

  .hero__tagline {
    font-size: 1.05rem;
    line-height: 1.04;
  }

  .hero__video {
    width: min(82vw, 380px);
    margin-top: clamp(-4.6rem, -9vw, -3.2rem);
  }

  .hero__divider--below-cta {
    width: min(76vw, 320px);
    height: 20px;
  }

  .cta-image {
    width: min(70vw, 320px);
  }

  .hero__actions {
    gap: 0.72rem;
  }

  .launch-countdown {
    width: min(92vw, 360px);
  }

  .quicklinks {
    gap: 0.35rem;
  }

  .site-footer__copy {
    font-size: 0.68rem;
  }

  .metin2pserver-backlink {
    left: 10px;
    right: auto;
    bottom: 10px;
    padding: 8px 10px;
  }

  .metin2pserver-backlink img {
    width: min(100%, 180px);
  }

  .register-modal {
    padding: 0.7rem;
  }

  .register-modal__panel {
    max-height: 92svh;
    padding: 1.02rem 0.92rem 0.92rem;
    border-radius: 20px;
  }

  .download-modal__body {
    gap: 0.82rem;
  }

  .download-modal__prereq {
    padding: 0.92rem;
    border-radius: 16px;
  }

  .download-modal__prereq-title {
    font-size: 1rem;
  }

  .download-modal__prereq-actions {
    grid-template-columns: 1fr;
  }

  .download-modal__subtitle {
    font-size: 0.8rem;
  }

  .download-modal__link {
    min-height: 48px;
  }

  .register-form__grid {
    grid-template-columns: 1fr;
  }

  .register-form__field--full {
    grid-column: auto;
  }

  .shop-section {
    padding: 4.4rem 0.85rem 3.8rem;
  }

  .shop-section__subtitle {
    font-size: 0.96rem;
  }

  .shop-panel,
  .ac-packages,
  .shop-disclaimer {
    border-radius: 22px;
  }

  .shop-panel {
    padding: 0.95rem;
  }

  .shop-panel__title {
    font-size: 1.22rem;
  }

  .shop-panel__meta {
    font-size: 0.88rem;
    line-height: 1.25;
  }

  .shop-grid__label {
    padding: 0.78rem 0.86rem 0.68rem;
    font-size: 0.82rem;
  }

  .shop-grid__body {
    padding: 0.82rem;
  }

  .shop-grid__item-title {
    font-size: 1.12rem;
  }

  .shop-grid__item-description,
  .shop-grid__cost-note,
  .shop-panel__status,
  .ac-packages__note,
  .shop-disclaimer {
    font-size: 0.9rem;
  }

  .shop-panel__cta {
    width: 100%;
    min-width: 0;
  }

  .ac-packages {
    padding: 1rem;
  }

  .ac-packages__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .portal-orb {
    top: 14px;
    right: 14px;
    min-width: 102px;
    padding-right: 12px;
  }

  .portal-orb-label {
    font-size: 0.68rem;
  }

  .hero {
    padding-left: 0.6rem;
    padding-right: 0.6rem;
  }

  .hero__logo {
    width: min(92vw, 460px);
  }

  .hero__video {
    width: min(92vw, 340px);
    margin-top: clamp(-3.1rem, -8vw, -2rem);
  }

  .hero__tagline {
    font-size: 0.96rem;
    padding: 0 0.5rem;
  }

  .quicklinks {
    width: min(100%, 420px);
    grid-template-columns: 1fr;
  }

  .quicklinks__item {
    width: 100%;
  }

  .launch-countdown {
    width: min(100%, 330px);
    padding: 0.74rem 0.72rem 0.68rem;
  }

  .launch-countdown__title {
    font-size: 0.82rem;
  }

  .launch-countdown__grid {
    gap: 0.32rem;
  }

  .launch-countdown__cell {
    padding: 0.46rem 0.22rem 0.42rem;
  }

  .launch-countdown__value {
    font-size: 0.92rem;
  }

  .launch-countdown__label {
    font-size: 0.46rem;
  }

  .launch-countdown__note {
    font-size: 0.72rem;
  }

  .site-footer__brand {
    width: min(132px, 42vw);
  }

  .site-footer__inforge-label {
    font-size: 0.5rem;
  }

  .site-footer__inforge-logo {
    width: min(28px, 10vw);
  }

  .site-footer__copy {
    font-size: 0.64rem;
    letter-spacing: 0.04em;
  }

  .register-modal__title {
    font-size: 1.5rem;
  }

  .register-modal__description {
    font-size: 0.92rem;
  }

  .register-form__input,
  .register-form__submit {
    min-height: 46px;
  }

  .account-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .account-summary {
    grid-template-columns: 1fr;
  }

  .account-actions {
    flex-direction: column;
  }

  .account-button,
  .account-header__home {
    width: 100%;
  }

  .shop-section__kicker,
  .ac-packages__kicker {
    font-size: 0.66rem;
  }

  .shop-section__title,
  .ac-packages__title {
    letter-spacing: 0.05em;
  }

  .shop-hero-card {
    width: min(100%, 320px);
    padding: 0.75rem 0.75rem 0.68rem;
    border-radius: 22px;
  }

  .shop-grid__body--list {
    max-height: none;
  }

  .shop-list-item {
    font-size: 0.88rem;
  }

  .shop-grid__cost-value {
    font-size: 1.48rem;
  }

  .ac-packages__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .quicklinks__item {
    opacity: 1;
    transform: none;
  }
}
