:root {
  --bg: #04111e;
  --panel: rgba(8, 28, 44, 0.62);
  --panel-strong: rgba(6, 22, 36, 0.82);
  --line: rgba(64, 214, 255, 0.26);
  --line-strong: rgba(64, 214, 255, 0.42);
  --glow: rgba(64, 214, 255, 0.45);
  --text: rgba(244, 252, 255, 0.92);
  --muted: rgba(244, 252, 255, 0.72);
  --muted2: rgba(244, 252, 255, 0.58);
  --accent: #40d6ff;
  --accent2: #2af5c8;
  --shadow: 0 18px 46px rgba(0, 0, 0, 0.55);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, Noto Sans, "Helvetica Neue", Helvetica,
    "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1000px 620px at 40% 10%, rgba(64, 214, 255, 0.18), transparent 62%),
    radial-gradient(880px 560px at 78% 18%, rgba(42, 245, 200, 0.12), transparent 56%),
    linear-gradient(180deg, rgba(3, 10, 18, 0.7), rgba(3, 10, 18, 0.9)), url("./images/BG.png") center top / cover
      no-repeat fixed,
    var(--bg);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
[hidden] {
  display: none !important;
}

.container {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(2, 10, 18, 0.84), rgba(2, 10, 18, 0.46));
  border-bottom: 1px solid rgba(64, 214, 255, 0.12);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: url(images/logo.png) no-repeat;
  background-size: cover;
  border: 1px solid rgba(64, 214, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(64, 214, 255, 0.15) inset, 0 16px 26px rgba(0, 0, 0, 0.35);
}
.brand-title {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-title strong {
  letter-spacing: 0.12em;
  font-size: 14px;
}
.brand-title span {
  color: var(--muted2);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  justify-content: flex-end;
  padding: 8px 10px;
  border-radius: 16px;
  position: relative;
  border: 1px solid rgba(64, 214, 255, 0.22);
  background: linear-gradient(180deg, rgba(6, 24, 40, 0.86), rgba(6, 24, 40, 0.36));
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35) inset, 0 22px 44px rgba(0, 0, 0, 0.55);
}
.nav::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  background: radial-gradient(180px 90px at 50% 0%, rgba(64, 214, 255, 0.22), transparent 65%);
  pointer-events: none;
  opacity: 0.95;
}
.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 18px;
  min-width: 82px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(244, 252, 255, 0.92);
  border: 1px solid rgba(90, 210, 255, 0.34);
  background: linear-gradient(180deg, rgba(16, 72, 120, 0.8), rgba(5, 24, 44, 0.72));
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 12px 100%, 0 50%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3) inset, 0 12px 26px rgba(0, 0, 0, 0.45),
    0 0 22px rgba(64, 214, 255, 0.12);
  transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease, background 140ms ease;
  user-select: none;
  position: relative;
  z-index: 0;
}
.nav a::before {
  content: "";
  position: absolute;
  inset: 1px;
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 12px 100%, 0 50%);
  background: radial-gradient(180px 60px at 50% 0%, rgba(255, 255, 255, 0.18), transparent 65%);
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
}
.nav a::after {
  content: "";
  position: absolute;
  inset: -6px;
  clip-path: polygon(18px 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 18px 100%, 0 50%);
  background: radial-gradient(220px 70px at 50% 50%, rgba(64, 214, 255, 0.24), transparent 70%);
  filter: blur(10px);
  opacity: 0.35;
  pointer-events: none;
  z-index: -2;
}
.nav a:hover {
  transform: translateY(-1px);
  border-color: rgba(90, 210, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(64, 214, 255, 0.14) inset, 0 18px 30px rgba(0, 0, 0, 0.58),
    0 0 28px rgba(64, 214, 255, 0.18);
}
.nav a.is-active {
  transform: translateY(-1px) scale(1.08);
  border-color: rgba(42, 245, 200, 0.72);
  background: linear-gradient(180deg, rgba(11, 96, 72, 0.9), rgba(4, 30, 26, 0.74));
  box-shadow: 0 0 0 1px rgba(42, 245, 200, 0.22) inset, 0 22px 36px rgba(0, 0, 0, 0.62),
    0 0 34px rgba(42, 245, 200, 0.26);
}
.nav a.is-active::after {
  background: radial-gradient(240px 80px at 50% 50%, rgba(42, 245, 200, 0.34), transparent 70%);
  opacity: 0.7;
}
.nav a:focus-visible {
  outline: 2px solid rgba(64, 214, 255, 0.6);
  outline-offset: 3px;
}

.section {
  padding: 26px 0;
}
.section-title {
  margin: 0 0 14px;
  text-align: center;
  letter-spacing: 0.12em;
  font-size: 18px;
  color: rgba(244, 252, 255, 0.9);
}

.hero {
  padding-top: 18px;
}

.page-banner {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(64, 214, 255, 0.2);
  background: rgba(0, 0, 0, 0.28);
  box-shadow: var(--shadow);
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.18) 55%, rgba(0, 0, 0, 0.06) 100%);
  pointer-events: none;
  z-index: 1;
}
.page-banner img {
  width: 100%;
  height: clamp(160px, 22vw, 240px);
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  padding: 18px 18px 16px;
}
.page-banner-overlay h1 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: rgba(244, 252, 255, 0.92);
}
.page-banner-overlay p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(244, 252, 255, 0.74);
  max-width: 620px;
}

.game-stack {
  display: grid;
  gap: 14px;
}

.game-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(64, 214, 255, 0.2);
  box-shadow: var(--shadow);
  background: rgba(0, 0, 0, 0.28);
}
.game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.18) 55%, rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
}
.game-card img.banner {
  width: 100%;
  height: clamp(120px, 18vw, 170px);
  object-fit: cover;
}

.page-index .game-card img.banner {
  height: 210px;
}

.game-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  padding: 18px 18px 16px;
  gap: 16px;
}
.page-index .game-overlay {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 0 16px 22px;
}
.game-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-index .game-meta {
  gap: 0;
}
.game-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.page-index .game-actions {
  gap: 12px;
}
.page-index .ttd-actions {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    "appstore appstore"
    "start google";
  gap: 10px 12px;
  align-items: center;
  justify-content: start;
}
.page-index .ttd-actions .btn-appstore {
  grid-area: appstore;
  justify-self: start;
}
.page-index .ttd-actions .btn-start {
  grid-area: start;
  justify-self: start;
}
.page-index .ttd-actions .btn-googleplay {
  grid-area: google;
  justify-self: start;
}
.game-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}
.game-actions a:hover {
  transform: translateY(-1px);
  border-color: rgba(64, 214, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(64, 214, 255, 0.12) inset, 0 16px 30px rgba(0, 0, 0, 0.55);
}
.game-actions img {
  height: 36px;
  width: auto;
}

.our-games {
  margin-top: 14px;
  padding: 18px 16px 16px;
  border-radius: 20px;
  border: 1px solid rgba(64, 214, 255, 0.18);
  background: linear-gradient(180deg, rgba(8, 28, 44, 0.55), rgba(6, 22, 36, 0.68));
  box-shadow: var(--shadow);
}
.our-games-title {
  margin: 2px 0 6px;
  text-align: center;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: rgba(244, 252, 255, 0.92);
}
.our-games-subtitle {
  margin: 0 auto 14px;
  max-width: 860px;
  text-align: center;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(244, 252, 255, 0.68);
}
.our-games-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.our-game {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(64, 214, 255, 0.18);
  background: linear-gradient(180deg, rgba(4, 18, 30, 0.86), rgba(4, 18, 30, 0.42));
  padding: 18px 16px 16px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.46);
}
.our-game::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(320px 140px at 50% 0%, rgba(64, 214, 255, 0.16), transparent 62%),
    radial-gradient(260px 120px at 50% 90%, rgba(42, 245, 200, 0.1), transparent 62%);
  pointer-events: none;
}
.our-game-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 12px;
  border-radius: 22px;
  border: 1px solid rgba(64, 214, 255, 0.26);
  background: radial-gradient(circle at 30% 30%, rgba(64, 214, 255, 0.18), rgba(64, 214, 255, 0.04));
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.28) inset, 0 16px 30px rgba(0, 0, 0, 0.44);
  position: relative;
}
.our-game-icon img {
  width: 72px;
  height: 72px;
  border-radius: 18px;
}
.our-game-name {
  position: relative;
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: rgba(244, 252, 255, 0.92);
}
.our-game-tags {
  position: relative;
  margin: 6px 0 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: none;
  color: rgba(244, 252, 255, 0.62);
}
.our-game-desc {
  position: relative;
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(244, 252, 255, 0.74);
}
.our-game-desc + .our-game-desc {
  margin-top: 10px;
  color: rgba(244, 252, 255, 0.66);
}

.games-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.game-detail {
  border-radius: 20px;
  border: 1px solid rgba(64, 214, 255, 0.18);
  background: linear-gradient(180deg, rgba(8, 28, 44, 0.55), rgba(6, 22, 36, 0.68));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.game-detail-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 14px;
  padding: 14px;
  align-items: stretch;
}
.game-detail-media {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(64, 214, 255, 0.18);
  background: rgba(0, 0, 0, 0.2);
}
.game-detail-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.06) 60%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
.game-detail-media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
}
.game-detail-body {
  padding: 2px 2px 2px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.game-detail-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.game-detail-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(64, 214, 255, 0.22);
  background: rgba(0, 0, 0, 0.18);
}
.game-detail-title {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.03em;
  color: rgba(244, 252, 255, 0.92);
}
.game-detail-tags {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(244, 252, 255, 0.62);
}
.game-detail-text p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(244, 252, 255, 0.76);
}
.game-detail-text p + p {
  margin-top: 10px;
  color: rgba(244, 252, 255, 0.7);
}
.game-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.game-detail-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}
.game-detail-actions a:hover {
  transform: translateY(-1px);
  border-color: rgba(64, 214, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(64, 214, 255, 0.12) inset, 0 16px 30px rgba(0, 0, 0, 0.55);
}
.game-detail-actions img {
  height: 36px;
  width: auto;
}

.feature-strip {
  margin-top: 12px;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(64, 214, 255, 0.18);
  background: linear-gradient(180deg, rgba(8, 28, 44, 0.62), rgba(6, 22, 36, 0.66));
  box-shadow: var(--shadow);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.mini {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(64, 214, 255, 0.18);
  background: linear-gradient(180deg, rgba(4, 18, 30, 0.75), rgba(4, 18, 30, 0.36));
}
.mini .thumb {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  border: 1px solid rgba(64, 214, 255, 0.25);
  background: radial-gradient(circle at 30% 30%, rgba(64, 214, 255, 0.35), rgba(64, 214, 255, 0.06));
  display: grid;
  place-items: center;
  overflow: hidden;
}
.mini .thumb img {
  width: 56px;
  height: 56px;
  object-fit: cover;
}
.mini h3 {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(64, 214, 255, 0.95);
}
.mini p {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.35;
}

.panel {
  border-radius: var(--radius);
  border: 1px solid rgba(64, 214, 255, 0.18);
  background: linear-gradient(180deg, rgba(8, 28, 44, 0.55), rgba(6, 22, 36, 0.78));
  box-shadow: var(--shadow);
}
.panel-inner {
  padding: 16px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  align-items: stretch;
}
.about-copy {
  padding: 2px 2px 2px;
}
.about-lead {
  margin: 0;
  color: rgba(244, 252, 255, 0.76);
  line-height: 1.65;
  font-size: 13px;
}
.about-subtitle {
  margin: 12px 0 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(64, 214, 255, 0.92);
}
.about-figure {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(64, 214, 255, 0.18);
  background: linear-gradient(180deg, rgba(4, 18, 30, 0.82), rgba(4, 18, 30, 0.36));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.46);
}
.about-figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(320px 160px at 50% 20%, rgba(64, 214, 255, 0.16), transparent 62%),
    radial-gradient(280px 160px at 50% 85%, rgba(42, 245, 200, 0.1), transparent 62%);
  pointer-events: none;
}
.about-figure img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  opacity: 0.95;
}

.events-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.8fr;
  gap: 12px;
}
.event {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(64, 214, 255, 0.18);
  background: linear-gradient(180deg, rgba(4, 18, 30, 0.78), rgba(4, 18, 30, 0.36));
  min-height: 88px;
  padding: 14px;
}
.event::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 140px at 24% 20%, rgba(64, 214, 255, 0.18), transparent 62%),
    radial-gradient(360px 120px at 72% 70%, rgba(42, 245, 200, 0.12), transparent 62%);
  pointer-events: none;
}
.event h3 {
  position: relative;
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: rgba(64, 214, 255, 0.92);
}
.event p {
  position: relative;
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.35;
  color: var(--muted2);
}
.event .icon {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 40px;
  height: 40px;
  opacity: 0.9;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35));
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.contact-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(64, 214, 255, 0.18);
  background: linear-gradient(180deg, rgba(4, 18, 30, 0.82), rgba(4, 18, 30, 0.36));
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(64, 214, 255, 0.22);
  background: rgba(0, 0, 0, 0.18);
}
.contact-card h3 {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: rgba(64, 214, 255, 0.92);
}
.contact-card p {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(244, 252, 255, 0.74);
  word-break: break-word;
}
.contact-card a {
  color: rgba(244, 252, 255, 0.86);
  border-bottom: 1px solid rgba(64, 214, 255, 0.22);
  padding-bottom: 2px;
}
.contact-card a:hover {
  border-color: rgba(42, 245, 200, 0.5);
}

.shop-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 14px;
  align-items: start;
}
.shop-sidebar .panel-inner {
  padding: 16px;
}
.shop-side-title {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(244, 252, 255, 0.62);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.game-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.game-item {
  width: 100%;
  text-align: left;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(64, 214, 255, 0.18);
  background: linear-gradient(180deg, rgba(4, 18, 30, 0.82), rgba(4, 18, 30, 0.36));
  color: rgba(244, 252, 255, 0.88);
  cursor: pointer;
  transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}
.game-item img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(64, 214, 255, 0.22);
  background: rgba(0, 0, 0, 0.18);
}
.game-item-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.game-item-name {
  font-size: 13px;
  letter-spacing: 0.02em;
}
.game-item:hover {
  transform: translateY(-1px);
  border-color: rgba(64, 214, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(64, 214, 255, 0.12) inset, 0 16px 30px rgba(0, 0, 0, 0.55);
}
.game-item.is-active {
  border-color: rgba(42, 245, 200, 0.55);
  box-shadow: 0 0 0 1px rgba(42, 245, 200, 0.22) inset, 0 0 34px rgba(42, 245, 200, 0.18);
}

.shop-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.shop-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.shop-game-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(64, 214, 255, 0.22);
  background: rgba(0, 0, 0, 0.18);
}
.shop-title {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.03em;
}
.shop-intro {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(244, 252, 255, 0.74);
  max-width: 920px;
}
.shop-section-title {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(64, 214, 255, 0.92);
}
.shop-packs-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin: 0 0 10px;
}
.currency-tabs {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(64, 214, 255, 0.18);
  background: rgba(0, 0, 0, 0.16);
  padding: 4px;
  gap: 6px;
}
.currency-tab {
  appearance: none;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(244, 252, 255, 0.82);
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.04em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: border-color 140ms ease, box-shadow 140ms ease, background 140ms ease, transform 140ms ease;
}
.currency-ico {
  width: 14px;
  height: 14px;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.28));
  opacity: 0.9;
}
.currency-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(64, 214, 255, 0.22);
}
.currency-tab.is-active {
  color: rgba(244, 252, 255, 0.92);
  transform: translateY(-1px);
}
.currency-tab.is-active[data-currency="coin"] {
  border-color: rgba(64, 214, 255, 0.55);
  background: linear-gradient(180deg, rgba(16, 72, 120, 0.78), rgba(5, 24, 44, 0.66));
  box-shadow: 0 0 0 1px rgba(64, 214, 255, 0.16) inset, 0 10px 18px rgba(0, 0, 0, 0.35),
    0 0 22px rgba(64, 214, 255, 0.12);
}
.currency-tab.is-active[data-currency="gem"] {
  border-color: rgba(176, 124, 255, 0.6);
  background: linear-gradient(180deg, rgba(126, 76, 204, 0.78), rgba(34, 18, 58, 0.66));
  box-shadow: 0 0 0 1px rgba(176, 124, 255, 0.16) inset, 0 10px 18px rgba(0, 0, 0, 0.35),
    0 0 22px rgba(176, 124, 255, 0.12);
}
.currency-tab:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.coin-empty {
  grid-column: 1 / -1;
  padding: 12px 10px;
  border: 1px dashed rgba(64, 214, 255, 0.22);
  border-radius: 16px;
  color: rgba(244, 252, 255, 0.72);
  background: rgba(0, 0, 0, 0.16);
  text-align: center;
  font-size: 13px;
}
.coin-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  max-height: 252px;
  overflow-y: auto;
  padding-right: 6px;
}
.coin-card {
  border-radius: 16px;
  border: 1px solid rgba(64, 214, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(4, 18, 30, 0.22));
  padding: 16px 14px 14px;
  text-align: center;
  cursor: pointer;
  color: rgba(244, 252, 255, 0.86);
  transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}
.coin-card:hover {
  transform: translateY(-1px);
  border-color: rgba(64, 214, 255, 0.28);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset, 0 18px 34px rgba(0, 0, 0, 0.55),
    0 0 24px rgba(64, 214, 255, 0.08);
}
.coin-card.is-selected {
  border-color: rgba(42, 245, 200, 0.6);
  box-shadow: 0 0 0 1px rgba(42, 245, 200, 0.22) inset, 0 0 34px rgba(42, 245, 200, 0.18);
  transform: translateY(-1px);
}
.coin-grid::-webkit-scrollbar {
  width: 10px;
}
.coin-grid::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 999px;
}
.coin-grid::-webkit-scrollbar-thumb {
  background: rgba(64, 214, 255, 0.22);
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, 0.12);
}
.coin-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(64, 214, 255, 0.32);
}
.coin-pack-img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  margin: 2px auto 10px;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.35));
}
.coin-pack-coins {
  font-size: 14px;
  letter-spacing: 0.02em;
  color: rgba(244, 252, 255, 0.92);
}
.coin-pack-price {
  margin-top: 6px;
  font-size: 14px;
  letter-spacing: 0.02em;
  font-weight: 800;
  color: rgba(64, 214, 255, 0.95);
}
.coin-card-loading {
  cursor: default;
  opacity: 0.75;
}
.coin-card-loading:hover {
  transform: none;
  border-color: rgba(64, 214, 255, 0.14);
  box-shadow: none;
}
.skeleton {
  width: 62px;
  height: 62px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  background-size: 200% 100%;
  animation: shimmer 1.1s infinite linear;
  margin: 2px auto 10px;
}
.skeleton-line {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  background-size: 200% 100%;
  animation: shimmer 1.1s infinite linear;
  margin: 8px 10px 0;
}
@keyframes shimmer {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: -200% 0%;
  }
}

.order-form-wrap {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(64, 214, 255, 0.12);
  background: radial-gradient(600px 260px at 50% 0%, rgba(64, 214, 255, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.06));
  border-radius: 18px;
  padding: 16px 14px 14px;
}
.order-form-title {
  margin: 0 0 10px;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: rgba(244, 252, 255, 0.92);
}
.order-form {
  width: min(860px, 100%);
  margin: 0 auto;
}
.order-table {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(64, 214, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.4);
}
.order-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 46px;
  border-bottom: 1px solid rgba(64, 214, 255, 0.1);
}
.order-row:last-child {
  border-bottom: 0;
}
.order-label {
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(244, 252, 255, 0.66);
  font-size: 13px;
  font-weight: 700;
}
.order-control {
  padding: 10px 12px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
}
.order-static {
  color: rgba(244, 252, 255, 0.86);
  font-size: 13px;
}
.order-control input[type="email"],
.order-control input[type="text"] {
  width: 100%;
  height: 34px;
  border-radius: 6px;
  border: 1px solid rgba(64, 214, 255, 0.14);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(244, 252, 255, 0.88);
  padding: 0 10px;
  font-size: 13px;
}
.order-control input:focus-visible {
  outline: 2px solid rgba(64, 214, 255, 0.55);
  outline-offset: 2px;
}
.order-control input[readonly] {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(244, 252, 255, 0.74);
}
.order-control input::placeholder {
  color: rgba(244, 252, 255, 0.46);
}
.payment-options {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(244, 252, 255, 0.74);
  font-size: 13px;
}
.payment-options label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.adult-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(244, 252, 255, 0.74);
  font-size: 13px;
}
.order-submit {
  margin: 14px auto 0;
  display: block;
  width: min(320px, 100%);
  height: 42px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 188, 90, 0.95), rgba(224, 142, 28, 0.95));
  color: rgba(255, 255, 255, 0.94);
  font-weight: 800;
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42);
}
.order-submit:hover {
  filter: brightness(1.03);
}
.order-message {
  margin: 10px auto 0;
  width: min(860px, 100%);
  text-align: center;
  font-size: 12px;
  color: rgba(255, 0, 0);
}

.confirm-wrap {
  width: min(860px, 100%);
  margin: 0 auto;
  text-align: center;
}
.confirm-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(42, 245, 200, 0.55);
  background: rgba(42, 245, 200, 0.1);
  color: rgba(244, 252, 255, 0.86);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.confirm-title {
  margin: 10px 0 6px;
  font-size: 22px;
  letter-spacing: 0.04em;
}
.confirm-subtitle {
  margin: 0 0 14px;
  color: rgba(244, 252, 255, 0.7);
  font-size: 13px;
  line-height: 1.6;
}
.confirm-card {
  text-align: left;
  border-radius: 16px;
  border: 1px solid rgba(64, 214, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.confirm-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(64, 214, 255, 0.1);
}
.confirm-row:last-child {
  border-bottom: 0;
}
.confirm-row span {
  color: rgba(244, 252, 255, 0.62);
  font-size: 12px;
}
.confirm-row strong {
  color: rgba(244, 252, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
  text-align: right;
  max-width: 62%;
  word-break: break-word;
}
.confirm-actions {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.confirm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 188, 90, 0.95), rgba(224, 142, 28, 0.95));
  color: rgba(255, 255, 255, 0.94);
  font-weight: 800;
  letter-spacing: 0.06em;
  cursor:pointer;
}
.confirm-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid rgba(64, 214, 255, 0.18);
  background: linear-gradient(180deg, rgba(10, 38, 58, 0.52), rgba(10, 38, 58, 0.18));
  color: rgba(244, 252, 255, 0.84);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.confirm-link:hover {
  border-color: rgba(42, 245, 200, 0.5);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.adv {
  text-align: center;
  padding: 14px 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(64, 214, 255, 0.18);
  background: linear-gradient(180deg, rgba(4, 18, 30, 0.82), rgba(4, 18, 30, 0.36));
}
.adv img {
  width: 44px;
  height: 44px;
  margin: 0 auto 8px;
  filter: drop-shadow(0 16px 24px rgba(64, 214, 255, 0.14));
}
.adv h3 {
  margin: 0;
  font-size: 13px;
  color: rgba(244, 252, 255, 0.9);
}
.adv p {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.35;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.member {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(64, 214, 255, 0.18);
  background: linear-gradient(180deg, rgba(4, 18, 30, 0.82), rgba(4, 18, 30, 0.36));
  align-items: center;
}
.member img {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  border: 1px solid rgba(64, 214, 255, 0.22);
  object-fit: cover;
}
.member strong {
  display: block;
  font-size: 13px;
}
.member span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted2);
}

.plans {
  position: relative;
  overflow: hidden;
}
.plans .timeline {
  width: 100%;
  height: auto;
  opacity: 0.95;
  border-radius: 12px;
  border: 1px solid rgba(64, 214, 255, 0.14);
}
.milestones {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}
.milestone {
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(64, 214, 255, 0.18);
  background: linear-gradient(180deg, rgba(4, 18, 30, 0.82), rgba(4, 18, 30, 0.36));
}
.milestone h3 {
  margin: 0;
  font-size: 13px;
  color: rgba(64, 214, 255, 0.95);
  letter-spacing: 0.06em;
}
.milestone p {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.35;
}

.footer {
  padding: 18px 0 26px;
  border-top: 1px solid rgba(64, 214, 255, 0.12);
  background: linear-gradient(180deg, rgba(2, 10, 18, 0.2), rgba(2, 10, 18, 0.72));
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.foot-left strong {
  display: block;
  letter-spacing: 0.12em;
  font-size: 13px;
}
.foot-left span {
  display: block;
  margin-top: 6px;
  color: var(--muted2);
  font-size: 12px;
  line-height: 1.4;
}
.social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(64, 214, 255, 0.18);
  background: linear-gradient(180deg, rgba(10, 38, 58, 0.52), rgba(10, 38, 58, 0.18));
  color: rgba(244, 252, 255, 0.84);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.footer-legal {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(64, 214, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.copyright {
  color: rgba(244, 252, 255, 0.62);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.legal-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.legal-links a {
  color: rgba(244, 252, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(64, 214, 255, 0.22);
  padding-bottom: 2px;
  transition: color 140ms ease, border-color 140ms ease;
}
.legal-links a:hover {
  color: rgba(244, 252, 255, 0.92);
  border-color: rgba(42, 245, 200, 0.5);
}

@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-figure img {
    min-height: 190px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .coin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 320px;
  }
  .order-row {
    grid-template-columns: 1fr;
  }
  .order-label {
    background: transparent;
    padding-bottom: 6px;
  }
  .order-control {
    padding-top: 0;
  }
  .game-list {
    flex-direction: row;
    overflow: auto;
    padding-bottom: 2px;
  }
  .game-item {
    min-width: 260px;
  }
  .game-detail-inner {
    grid-template-columns: 1fr;
  }
  .game-detail-media img {
    min-height: 190px;
  }
  .our-games-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .events-grid {
    grid-template-columns: 1fr;
  }
  .advantages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .milestones {
    grid-template-columns: 1fr;
  }
}
