@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --deep: #0c0e1d;
  --base: #131628;
  --raised: #1a1d35;
  --panel: #1f2240;
  --panel-hi: #252855;
  --teal: #00cfb5;
  --teal-dim: #00a896;
  --teal-glow: rgba(0,207,181,0.18);
  --purple: #7c3aed;
  --purple-soft: #9d65ff;
  --gradient: linear-gradient(135deg, #00cfb5 0%, #7c3aed 100%);
  --gradient-r: linear-gradient(135deg, #7c3aed 0%, #00cfb5 100%);
  --text-main: #e2e8f0;
  --text-soft: #94a3b8;
  --text-dim: #4a5568;
  --divider: #252850;
  --divider-hi: #2d3068;
  --white: #ffffff;
  --red-soft: #ff6b6b;
  --green-soft: #34d399;
  --yellow-soft: #fbbf24;
  --blue-soft: #60a5fa;
  --nav-height: 68px;
  --topbar-height: 36px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 50px;
  --ease: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font: 'Nunito', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--deep);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: var(--ease); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1, h2, h3, h4, h5, h6 { font-weight: 800; line-height: 1.25; color: var(--text-main); }
p { color: var(--text-soft); line-height: 1.8; }

.wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}

.wrap--wide { max-width: 1380px; }
.wrap--narrow { max-width: 860px; }

.skip-nav {
  position: absolute;
  top: -60px;
  left: 16px;
  background: var(--teal);
  color: var(--deep);
  padding: 8px 18px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 0.875rem;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-nav:focus { top: 12px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.sec { padding: 76px 0; }
.sec--sm { padding: 44px 0; }
.sec--lg { padding: 110px 0; }

.sec-head {
  margin-bottom: 52px;
  text-align: center;
}

.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.sec-eyebrow::before,
.sec-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--teal);
  opacity: 0.5;
}

.sec-title {
  font-size: clamp(1.6rem, 3.8vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
}

.sec-title .hl {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sec-sub {
  font-size: 1rem;
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 auto;
}

.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 13px;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.pill-tag--teal { background: rgba(0,207,181,0.12); color: var(--teal); border: 1px solid rgba(0,207,181,0.25); }
.pill-tag--purple { background: rgba(124,58,237,0.12); color: var(--purple-soft); border: 1px solid rgba(124,58,237,0.25); }
.pill-tag--red { background: rgba(255,107,107,0.1); color: var(--red-soft); border: 1px solid rgba(255,107,107,0.2); }
.pill-tag--green { background: rgba(52,211,153,0.1); color: var(--green-soft); border: 1px solid rgba(52,211,153,0.2); }
.pill-tag--yellow { background: rgba(251,191,36,0.1); color: var(--yellow-soft); border: 1px solid rgba(251,191,36,0.2); }
.pill-tag--blue { background: rgba(96,165,250,0.1); color: var(--blue-soft); border: 1px solid rgba(96,165,250,0.2); }

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--r-pill);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  white-space: nowrap;
}

.cta-btn--main {
  background: var(--gradient);
  color: var(--white);
}

.cta-btn--main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,207,181,0.3);
  color: var(--white);
}

.cta-btn--line {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}

.cta-btn--line:hover {
  background: var(--teal-glow);
  transform: translateY(-2px);
}

.cta-btn--muted {
  background: var(--raised);
  color: var(--text-soft);
  border-color: var(--divider-hi);
}

.cta-btn--muted:hover {
  background: var(--panel);
  color: var(--text-main);
  border-color: var(--teal);
}

.cta-btn--sm { padding: 8px 18px; font-size: 0.82rem; }
.cta-btn--lg { padding: 15px 34px; font-size: 1rem; }

.g-card {
  background: var(--panel);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  transition: var(--ease);
}

.g-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  padding: 1px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.g-card:hover::before { opacity: 1; }
.g-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.45); }

.plain-card {
  background: var(--panel);
  border: 1px solid var(--divider);
  border-radius: var(--r-lg);
  transition: var(--ease);
}

.plain-card:hover {
  border-color: var(--divider-hi);
  background: var(--panel-hi);
  transform: translateY(-3px);
}

.notice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  border-radius: var(--r-md);
  margin: 20px 0;
}

.notice--info { background: rgba(96,165,250,0.07); border: 1px solid rgba(96,165,250,0.2); }
.notice--tip { background: rgba(52,211,153,0.07); border: 1px solid rgba(52,211,153,0.2); }
.notice--warn { background: rgba(251,191,36,0.07); border: 1px solid rgba(251,191,36,0.2); }

.notice__icon { flex-shrink: 0; margin-top: 2px; font-size: 1.1rem; }
.notice--info .notice__icon { color: var(--blue-soft); }
.notice--tip .notice__icon { color: var(--green-soft); }
.notice--warn .notice__icon { color: var(--yellow-soft); }

.notice__text { font-size: 0.9rem; color: var(--text-soft); line-height: 1.75; margin: 0; }

/* ====== TOPBAR ====== */

#topbar {
  background: var(--base);
  border-bottom: 1px solid var(--divider);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-dim);
  position: relative;
  z-index: 1001;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar__item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.topbar__item i { color: var(--teal); font-size: 0.7rem; }

.topbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar__social-link {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.8rem;
  border-radius: 4px;
  transition: var(--ease);
  cursor: default;
}

.topbar__social-link:hover {
  color: var(--teal);
  background: var(--raised);
}

/* ====== HEADER / NAV ====== */

#site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(13,14,29,0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--divider);
  transition: var(--ease);
}

#site-header.solid {
  background: var(--base);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.nav-wrap {
  display: flex;
  align-items: center;
  height: var(--nav-height);
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo__img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-logo__text {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
}

.nav-logo__text em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 13px;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: var(--ease);
}

.nav-item:hover,
.nav-item.here {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav-item.here { color: var(--teal); }

.nav-end {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 9px;
  border-radius: var(--r-sm);
  transition: var(--ease);
}

.burger:hover { background: var(--raised); }

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--ease);
}

.burger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

#drawer {
  display: none;
  position: fixed;
  top: calc(var(--topbar-height) + var(--nav-height));
  left: 0;
  right: 0;
  background: var(--base);
  border-bottom: 1px solid var(--divider);
  z-index: 999;
  animation: dropIn 0.28s ease;
}

#drawer.open { display: block; }

@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.drawer__list {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
}

.drawer__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px;
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text-soft);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: var(--ease);
}

.drawer__item:hover,
.drawer__item.here {
  color: var(--teal);
  background: rgba(0,207,181,0.05);
  padding-left: 30px;
}

.drawer__item i { width: 18px; text-align: center; opacity: 0.7; }

.drawer__foot {
  padding: 14px 22px 18px;
}

.drawer__foot .cta-btn { width: 100%; justify-content: center; }

/* ====== HERO ====== */

.hero-area {
  position: relative;
  padding: calc(var(--nav-height) + 48px) 0 72px;
  overflow: hidden;
  background: var(--deep);
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-area__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-area__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}

.hero-area__bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 60%, rgba(0,207,181,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 85% 30%, rgba(124,58,237,0.1) 0%, transparent 60%),
    linear-gradient(180deg, rgba(12,14,29,0.6) 0%, rgba(12,14,29,0.9) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  background: rgba(0,207,181,0.1);
  border: 1px solid rgba(0,207,181,0.3);
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.hero-chip__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-h1 {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -0.025em;
}

.hero-h1 .grad {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-chips-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--divider);
}

.hero-chips-row .pill-tag { font-size: 0.78rem; }

/* ====== METRIC STRIP ====== */

.metric-strip {
  background: var(--base);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: 32px 0;
}

.metric-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
  position: relative;
}

.metric-strip__grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,207,181,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.metric-item {
  padding: 12px 16px;
  border-right: 1px solid var(--divider);
}

.metric-item:last-child { border-right: none; }

.metric-item__num {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.metric-item__label {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ====== FEATURE TILES ====== */

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

.feat-tile {
  padding: 28px 24px;
}

.feat-tile__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  position: relative;
}

.feat-tile__icon-wrap--teal { background: rgba(0,207,181,0.1); color: var(--teal); }
.feat-tile__icon-wrap--purple { background: rgba(124,58,237,0.12); color: var(--purple-soft); }
.feat-tile__icon-wrap--red { background: rgba(255,107,107,0.1); color: var(--red-soft); }
.feat-tile__icon-wrap--yellow { background: rgba(251,191,36,0.1); color: var(--yellow-soft); }
.feat-tile__icon-wrap--green { background: rgba(52,211,153,0.1); color: var(--green-soft); }
.feat-tile__icon-wrap--blue { background: rgba(96,165,250,0.1); color: var(--blue-soft); }

.feat-tile__heading {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.feat-tile__body {
  font-size: 0.875rem;
  color: var(--text-soft);
  line-height: 1.72;
}

/* ====== GAME TYPE CARDS ====== */

.game-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 22px;
}

.gcard {
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--panel);
  border: 1px solid var(--divider);
  transition: var(--ease);
}

.gcard:hover {
  border-color: var(--divider-hi);
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(0,0,0,0.45);
}

.gcard__thumb {
  height: 188px;
  overflow: hidden;
  position: relative;
}

.gcard__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gcard:hover .gcard__thumb-img { transform: scale(1.07); }

.gcard__thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19,22,40,0.88) 0%, transparent 55%);
}

.gcard__tags {
  position: absolute;
  top: 11px;
  left: 11px;
  display: flex;
  gap: 5px;
}

.gcard__body { padding: 18px 20px 20px; }

.gcard__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 7px;
}

.gcard__desc {
  font-size: 0.845rem;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 14px;
}

.gcard__foot {
  display: flex;
  gap: 14px;
  font-size: 0.78rem;
  color: var(--text-dim);
  padding-top: 12px;
  border-top: 1px solid var(--divider);
}

.gcard__foot-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.gcard__foot-item i { color: var(--teal); font-size: 0.72rem; }

/* ====== NEWS CARDS ====== */

.news-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 22px;
}

.nc {
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--panel);
  border: 1px solid var(--divider);
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}

.nc:hover {
  border-color: rgba(0,207,181,0.25);
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.4);
}

.nc--featured .nc__thumb { height: 260px; }

.nc__thumb {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.nc__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.nc:hover .nc__thumb-img { transform: scale(1.05); }

.nc__thumb-cat {
  position: absolute;
  top: 10px;
  left: 10px;
}

.nc__body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.nc__date {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nc__date i { color: var(--teal); font-size: 0.7rem; }

.nc__title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.42;
  margin-bottom: 8px;
  transition: var(--ease);
}

.nc:hover .nc__title { color: var(--teal); }

.nc__excerpt {
  font-size: 0.845rem;
  color: var(--text-soft);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 14px;
}

.nc__read {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
}

.nc__read:hover { gap: 9px; }

/* ====== WIKI TABLE ====== */

.wiki-table-wrap {
  overflow-x: auto;
  border-radius: var(--r-md);
  border: 1px solid var(--divider);
  margin: 24px 0;
}

.wiki-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.wiki-table thead tr { background: var(--panel-hi); }

.wiki-table th {
  padding: 13px 16px;
  text-align: left;
  font-size: 0.775rem;
  font-weight: 800;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.wiki-table td {
  padding: 13px 16px;
  font-size: 0.875rem;
  color: var(--text-soft);
  border-top: 1px solid var(--divider);
}

.wiki-table tr:hover td { background: rgba(255,255,255,0.02); }

.check-ok { color: var(--green-soft); }
.check-no { color: var(--red-soft); }

/* ====== STEPS LIST ====== */

.step-rail {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
  margin: 0 auto;
}

.step-row {
  display: flex;
  gap: 18px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--divider);
  border-radius: var(--r-lg);
  transition: var(--ease);
}

.step-row:hover {
  border-color: rgba(0,207,181,0.2);
  background: var(--panel-hi);
}

.step-row__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}

.step-row__h {
  font-size: 0.975rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 5px;
}

.step-row__p {
  font-size: 0.875rem;
  color: var(--text-soft);
  line-height: 1.72;
  margin: 0;
}

/* ====== ARTICLE PAGE ====== */

.art-hero {
  padding: calc(var(--nav-height) + 44px) 0 40px;
  background: linear-gradient(180deg, rgba(0,207,181,0.04) 0%, transparent 100%);
  border-bottom: 1px solid var(--divider);
}

.art-crumb {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 18px;
}

.art-crumb a:hover { color: var(--teal); }
.art-crumb i { font-size: 0.6rem; }

.art-h1 {
  font-size: clamp(1.6rem, 3.8vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 18px;
  max-width: 780px;
}

.art-byline {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.art-byline-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.art-byline-item i { color: var(--teal); }

.art-main { padding: 52px 0 80px; }

.art-toc {
  background: var(--panel);
  border: 1px solid var(--divider);
  border-radius: var(--r-lg);
  padding: 22px 26px;
  margin-bottom: 36px;
}

.art-toc__heading {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.art-toc__heading i { color: var(--teal); }

.art-toc__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.art-toc__link {
  padding: 5px 13px;
  background: var(--raised);
  border: 1px solid var(--divider);
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: var(--ease);
}

.art-toc__link:hover {
  background: rgba(0,207,181,0.1);
  border-color: rgba(0,207,181,0.3);
  color: var(--teal);
}

.art-body .art-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--r-lg);
  margin-bottom: 32px;
  border: 1px solid var(--divider);
}

.art-content h2 {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--white);
  margin: 34px 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.art-content h2::before {
  content: '';
  display: block;
  width: 4px;
  height: 1.3em;
  background: var(--gradient);
  border-radius: 2px;
  flex-shrink: 0;
}

.art-content h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 26px 0 10px;
}

.art-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal);
  margin: 20px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

.art-content p {
  font-size: 0.975rem;
  color: var(--text-soft);
  line-height: 1.88;
  margin-bottom: 18px;
}

.art-content ol {
  list-style: decimal;
  padding-left: 22px;
  margin-bottom: 18px;
  color: var(--text-soft);
}

.art-content ol li {
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 6px;
  padding-left: 4px;
}

.art-content blockquote {
  padding: 18px 22px 18px 26px;
  background: rgba(0,207,181,0.05);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: 22px 0;
  font-style: italic;
  font-size: 1rem;
  color: var(--text-main);
}

.art-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--divider);
}

.art-tag {
  padding: 5px 13px;
  background: var(--raised);
  border: 1px solid var(--divider);
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  color: var(--text-soft);
  transition: var(--ease);
}

.art-tag:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.art-related {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--divider);
}

.art-related__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.art-related__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.art-related-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: var(--panel);
  border: 1px solid var(--divider);
  border-radius: var(--r-md);
  transition: var(--ease);
}

.art-related-item:hover {
  border-color: rgba(0,207,181,0.25);
}

.art-related-item__img {
  width: 62px;
  height: 50px;
  object-fit: cover;
  border-radius: var(--r-sm);
  flex-shrink: 0;
}

.art-related-item__title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.4;
  transition: var(--ease);
}

.art-related-item:hover .art-related-item__title { color: var(--teal); }

.art-related-item__date {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 3px;
}

/* ====== ACCORDION (FAQ) ====== */

.acc-list { max-width: 780px; margin: 0 auto; }

.acc-row {
  border: 1px solid var(--divider);
  border-radius: var(--r-md);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--panel);
  transition: border-color 0.3s;
}

.acc-row.active { border-color: rgba(0,207,181,0.35); }

.acc-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  text-align: left;
  cursor: pointer;
  background: none;
  color: var(--text-main);
  transition: var(--ease);
}

.acc-trigger:hover { background: rgba(255,255,255,0.02); }

.acc-trigger__q {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
}

.acc-trigger__ico {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0,207,181,0.1);
  border: 1px solid rgba(0,207,181,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}

.acc-row.active .acc-trigger__ico {
  transform: rotate(180deg);
  background: rgba(0,207,181,0.2);
}

.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.acc-panel__inner {
  padding: 0 22px 20px;
  border-top: 1px solid var(--divider);
}

.acc-panel__inner p {
  padding-top: 14px;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.82;
  margin: 0;
}

/* ====== CONTACT ====== */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.contact-block {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--divider);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  transition: var(--ease);
}

.contact-block:hover { border-color: rgba(0,207,181,0.25); }

.contact-block__ico {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  background: rgba(0,207,181,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.contact-block__label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 3px;
}

.contact-block__val {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
}

.contact-block__val a:hover { color: var(--teal); }

.map-box {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--divider);
  height: 290px;
  margin-top: 20px;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.35) brightness(0.8);
}

/* ====== PAGE HEADER ====== */

.page-top {
  padding: calc(var(--nav-height) + 52px) 0 52px;
  text-align: center;
  border-bottom: 1px solid var(--divider);
  position: relative;
  overflow: hidden;
}

.page-top__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 0%, rgba(0,207,181,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-top__crumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 18px;
}

.page-top__crumb a:hover { color: var(--teal); }
.page-top__crumb i { font-size: 0.6rem; }

.page-top__h1 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.page-top__sub {
  font-size: 1rem;
  color: var(--text-soft);
  max-width: 580px;
  margin: 0 auto;
}

/* ====== BAND ====== */

.band {
  background: var(--base);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  position: relative;
  overflow: hidden;
}

.band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 80% at 20% 50%, rgba(0,207,181,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 80% 50%, rgba(124,58,237,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.band__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 58px 0;
}

.band__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.band__title {
  font-size: clamp(1.4rem, 3.2vw, 2.1rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
}

.band__desc { font-size: 0.95rem; color: var(--text-soft); }

.band__btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  flex-shrink: 0;
}

/* ====== LEGAL ====== */

.legal-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 0 80px;
}

.legal-meta-bar {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--text-dim);
  padding: 14px 18px;
  background: var(--panel);
  border: 1px solid var(--divider);
  border-radius: var(--r-md);
  margin-bottom: 32px;
}

.legal-meta-bar span { display: flex; align-items: center; gap: 5px; }
.legal-meta-bar i { color: var(--teal); }

.legal-wrap h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--divider);
}

.legal-wrap h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 22px 0 8px;
}

.legal-wrap p {
  font-size: 0.925rem;
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: 14px;
}

.legal-wrap ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal-wrap ul li {
  font-size: 0.925rem;
  color: var(--text-soft);
  line-height: 1.72;
  margin-bottom: 5px;
}

/* ====== 404 ====== */

.e404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 40px 22px;
}

.e404__num {
  font-size: clamp(6rem, 20vw, 14rem);
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 14px;
}

.e404__title {
  font-size: clamp(1.4rem, 4vw, 2.1rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}

.e404__desc {
  font-size: 0.975rem;
  color: var(--text-soft);
  max-width: 420px;
  margin: 0 auto 32px;
}

.e404__nav {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ====== FOOTER ====== */

#site-footer {
  background: var(--base);
  border-top: 1px solid var(--divider);
  padding-top: 56px;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--divider);
}

.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  text-decoration: none;
}

.footer-brand__logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.footer-brand__name {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--white);
}

.footer-brand__name em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand__desc {
  font-size: 0.855rem;
  color: var(--text-dim);
  line-height: 1.78;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-social-ico {
  width: 34px;
  height: 34px;
  background: var(--raised);
  border: 1px solid var(--divider);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: var(--ease);
  cursor: default;
}

.footer-social-ico:hover {
  background: rgba(0,207,181,0.1);
  border-color: rgba(0,207,181,0.3);
  color: var(--teal);
}

.footer-col__h {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link {
  font-size: 0.855rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--ease);
}

.footer-link i { font-size: 0.65rem; color: var(--teal); opacity: 0.6; }

.footer-link:hover {
  color: var(--teal);
  padding-left: 4px;
}

.footer-contact-row {
  display: flex;
  gap: 9px;
  margin-bottom: 12px;
  font-size: 0.855rem;
  color: var(--text-dim);
}

.footer-contact-row i {
  color: var(--teal);
  margin-top: 3px;
  width: 13px;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-copy strong { color: var(--teal); }

.footer-bottom-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-link {
  font-size: 0.775rem;
  color: var(--text-dim);
  transition: var(--ease);
}

.footer-bottom-link:hover { color: var(--teal); }

/* ====== ABOUT / HAKKIMIZDA ====== */

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 76px 0;
}

.about-split__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--r-lg);
  border: 1px solid var(--divider);
}

.about-split__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.about-split__h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.about-split p {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 14px;
  line-height: 1.85;
}

.about-vals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.about-val {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.about-val__ico {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: rgba(0,207,181,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.about-val__h {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 3px;
}

.about-val__p {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.6;
}

/* ====== PAGINATION ====== */

.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 44px;
}

.pg-item {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  font-size: 0.855rem;
  font-weight: 700;
  background: var(--panel);
  border: 1px solid var(--divider);
  color: var(--text-soft);
  cursor: pointer;
  transition: var(--ease);
}

.pg-item:hover,
.pg-item.current {
  background: rgba(0,207,181,0.1);
  border-color: rgba(0,207,181,0.3);
  color: var(--teal);
}

/* ====== TOPLULUK ====== */

.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.comm-card {
  padding: 28px 22px;
  text-align: center;
}

.comm-card__ico {
  font-size: 2.2rem;
  color: var(--teal);
  margin-bottom: 14px;
  display: block;
}

.comm-card__num {
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.comm-card__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.comm-card__desc {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.65;
}

/* ====== MEDIA QUERIES ====== */

@media (max-width: 1080px) {
  .news-grid { grid-template-columns: 1fr 1fr; }
  .nc--featured .nc__thumb { height: 200px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 920px) {
  .nav-menu { display: none; }
  .nav-end .cta-btn { display: none; }
  .burger { display: flex; }
  .about-split { grid-template-columns: 1fr; gap: 30px; }
  .about-split__img { height: 260px; }
  .band__inner { grid-template-columns: 1fr; }
  .band__btns { align-items: flex-start; flex-direction: row; }
  .contact-layout { grid-template-columns: 1fr; }
  .topbar { display: none; }
}

@media (max-width: 768px) {
  .sec { padding: 52px 0; }
  .news-grid { grid-template-columns: 1fr; }
  .nc--featured .nc__thumb { height: 200px; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .about-vals { grid-template-columns: 1fr; }
  .art-related__list { grid-template-columns: 1fr; }
  .metric-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .metric-item { border-right: none; border-bottom: 1px solid var(--divider); }
  .metric-item:nth-child(odd) { border-right: 1px solid var(--divider); }
  .metric-item:nth-last-child(-n+2) { border-bottom: none; }
  #topbar { display: none; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .hero-h1 { font-size: 1.9rem; }
  .cta-btn--lg { padding: 13px 22px; }
  .step-row { flex-direction: column; gap: 12px; }
  .tile-grid { grid-template-columns: 1fr; }
  .game-strip { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr 1fr; }
}
