:root {
  --bg: #050607;
  --bg-soft: #0c0f12;
  --panel: #101419;
  --panel-2: #171c22;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f5f7fa;
  --muted: #94a0ad;
  --accent: #c7f614;
  --accent-2: #a6d100;
  --danger: #ff5a5f;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.38);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --sidebar-width: 250px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top center, rgba(199, 246, 20, 0.08), transparent 22%),
    linear-gradient(180deg, #050607 0%, #040506 100%);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.layout {
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr;
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  background: linear-gradient(180deg, rgba(12, 15, 18, 0.98), rgba(8, 10, 13, 0.98));
  border-right: 1px solid var(--line);
  overflow-y: auto;
  padding: 28px 0;
}

.sidebar::-webkit-scrollbar {
  width: 8px;
}

.sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.brand-mobile {
  display: none;
}

.menu-block {
  padding: 0 18px;
  margin-bottom: 24px;
}

.menu-title {
  color: #718094;
  font-size: 14px;
  margin: 0 0 10px;
  padding: 0 14px;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  color: #eef2f6;
  transition: 0.22s ease;
  font-size: 17px;
}

.menu-item a:hover,
.menu-item.active a {
  background: rgba(199, 246, 20, 0.12);
  color: var(--accent);
}

.menu-icon {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  font-size: 14px;
  flex-shrink: 0;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 20px 0;
}

.content {
  min-width: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  background: rgba(5, 6, 7, 0.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0.4px;
}

.brand-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #efff9b 0%, var(--accent) 40%, #8aac00 100%);
  box-shadow: 0 0 30px rgba(199, 246, 20, 0.55);
  position: relative;
  flex-shrink: 0;
}

.brand-badge::before {
  content: "▶";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 17px;
  transform: translateX(1px);
}

.brand span {
  background: linear-gradient(180deg, #ffffff 0%, #c4cad1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.actions {
  display: flex;
  gap: 12px;
}

.btn {
  border: 0;
  border-radius: 14px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-dark {
  background: #11161d;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.btn-primary {
  background: var(--accent);
  color: #111;
  box-shadow: 0 12px 24px rgba(199, 246, 20, 0.16);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px;
}

.hero {
  padding-top: 34px;
  text-align: center;
}

.label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid rgba(199, 246, 20, 0.7);
  border-radius: 999px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 34px;
  box-shadow: inset 0 0 0 1px rgba(199, 246, 20, 0.08);
}

.hero p {
  max-width: 760px;
  margin: 24px auto 30px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-cta .btn {
  min-width: 200px;
  font-size: 16px;
  padding: 18px 28px;
  border-radius: 16px;
}

.metrics {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.metric {
  background: linear-gradient(180deg, rgba(16, 20, 25, 0.96), rgba(11, 15, 18, 0.96));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.metric strong {
  display: block;
  font-size: 30px;
  color: var(--accent);
  margin-bottom: 8px;
}

.metric span {
  color: var(--muted);
  font-size: 15px;
}

.section {
  margin-top: 52px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 20px;
  width: fit-content;
  margin: 0 auto 26px;
}

.tab {
  border: 0;
  background: transparent;
  color: #c0c9d3;
  font-size: 18px;
  font-weight: 700;
  padding: 15px 22px;
  border-radius: 14px;
  cursor: pointer;
  transition: 0.2s ease;
}

.tab.active,
.tab:hover {
  background: var(--accent);
  color: #111;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.game-card {
  background: linear-gradient(180deg, rgba(17, 22, 28, 0.98), rgba(11, 15, 18, 0.98));
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 246, 20, 0.35);
}

.game-media {
  height: 220px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(199, 246, 20, 0.18), transparent 45%),
    radial-gradient(circle at top right, rgba(199, 246, 20, 0.12), transparent 30%),
    linear-gradient(160deg, #131922 0%, #0b0e13 100%);
}

.game-media::before {
  content: attr(data-badge);
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(199, 246, 20, 0.15);
  color: var(--accent);
  border: 1px solid rgba(199, 246, 20, 0.3);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.game-logo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.game-body {
  padding: 20px;
}

.game-title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 900;
}

.game-desc {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

.game-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}

.content-section {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 28px;
  align-items: start;
  margin-top: 60px;
}

.article-card,
.info-card,
.bonus-card,
.faq-card,
.footer-card {
  background: linear-gradient(180deg, rgba(16, 20, 25, 0.98), rgba(11, 15, 18, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.article-card {
  padding: 38px;
}

.article-card h2 {
  margin: 0 0 22px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -1px;
}

.article-card p {
  color: #c8d1db;
  line-height: 1.8;
  font-size: 17px;
  margin: 0 0 18px;
}

.article-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.article-list li {
  display: flex;
  gap: 12px;
  color: #edf1f5;
  line-height: 1.5;
  font-size: 17px;
}

.article-list li::before {
  content: "•";
  color: var(--accent);
  font-size: 24px;
  line-height: 1;
  margin-top: -2px;
}

.stack {
  display: grid;
  gap: 24px;
}

.info-card,
.bonus-card,
.faq-card,
.footer-card {
  padding: 28px;
}

.card-title {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 900;
}

.info-card ul,
.faq-list,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.info-card li,
.faq-list li,
.footer-links li {
  color: #c9d1da;
  line-height: 1.65;
  font-size: 15px;
}

.bonus-card {
  position: relative;
  overflow: hidden;
}

.bonus-card::after {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(199, 246, 20, 0.22), transparent 68%);
  pointer-events: none;
}

.bonus-highlight {
  color: var(--accent);
  font-size: 44px;
  line-height: 1;
  font-weight: 900;
  margin: 12px 0;
}

.bonus-text {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.faq-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.faq-item strong {
  display: block;
  color: #fff;
  margin-bottom: 8px;
  font-size: 16px;
}

.cta-band {
  margin-top: 56px;
  background: linear-gradient(135deg, rgba(199, 246, 20, 0.14), rgba(199, 246, 20, 0.04));
  border: 1px solid rgba(199, 246, 20, 0.22);
  border-radius: 26px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.cta-band h3 {
  margin: 0 0 10px;
  font-size: 32px;
  line-height: 1.1;
}

.cta-band p {
  margin: 0;
  color: #b7c1cc;
  line-height: 1.7;
  max-width: 720px;
}

.site-footer {
  margin-top: 56px;
  padding-bottom: 40px;
}

.footer-card {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 420px;
}

.footer-brand p {
  color: var(--muted);
  line-height: 1.8;
  margin: 14px 0 0;
}

.copyright {
  margin-top: 18px;
  color: #768494;
  font-size: 14px;
}

.mobile-toggle {
  display: none;
  border: 0;
  background: #11161d;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 20px;
  cursor: pointer;
}

@media (max-width: 1180px) {
  .metrics,
  .games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(88vw, 320px);
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .topbar {
    padding: 18px 18px;
  }

  .container {
    padding: 22px 18px 36px;
  }

  .mobile-toggle,
  .brand-mobile {
    display: inline-flex;
    align-items: center;
  }

  .brand {
    font-size: 28px;
  }
}

@media (max-width: 720px) {
  .actions {
    display: none;
  }

  .hero {
    text-align: left;
  }

  .label {
    margin-bottom: 22px;
  }

  .hero p {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-cta {
    justify-content: flex-start;
  }

  .metrics,
  .games-grid {
    grid-template-columns: 1fr;
  }

  .tabs {
    width: 100%;
    justify-content: flex-start;
  }

  .tab {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
    min-width: 140px;
  }

  .article-card,
  .info-card,
  .bonus-card,
  .faq-card,
  .footer-card,
  .toc-card {
    padding: 22px;
  }

  .cta-band h3 {
    font-size: 26px;
  }

  .toc-title {
    font-size: 24px;
    text-align: left;
  }

  .toc-list {
    padding-left: 22px;
  }

  .toc-list li {
    margin-bottom: 10px;
  }

  .toc-list a {
    font-size: 16px;
    line-height: 1.45;
  }
}

.toc-section {
  margin-top: 56px;
}

.toc-card {
  background: #060707;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 28px 34px 30px;
  max-width: 980px;
  margin: 0 auto;
}

.toc-title {
  margin: 0 0 26px;
  text-align: center;
  color: #ffffff;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.4px;
}

.toc-list {
  margin: 0;
  padding-left: 34px;
  list-style: disc;
  text-align: left;
}

.toc-list li {
  margin: 0 0 8px;
  color: #ffffff;
}

.toc-list li::marker {
  color: #ffffff;
  font-size: 14px;
}

.toc-list a {
  color: #c7f614;
  font-size: 17px;
  line-height: 1.38;
  font-weight: 500;
  text-decoration: none;
}

.toc-list a:hover {
  color: #d9ff4f;
  text-decoration: none;
  text-underline-offset: 2px;
}

.games-filter {
  margin: 22px auto 28px;
  display: flex;
  justify-content: center;
}

.games-filter-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1b2026;
  padding: 6px;
  border-radius: 16px;
  width: fit-content;
}

.game-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #aab4bf;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.game-filter:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.game-filter.active {
  background: var(--accent);
  color: #111111;
  font-weight: 700;
}

.game-filter .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  font-size: 14px;
}

.games-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto 34px;
  max-width: 1200px;
}

.games-row .game-card {
  position: relative;
  width: 100%;
  aspect-ratio: 176 / 246;
  border-radius: 14px;
  overflow: hidden;
  background: #12171d;
  border: 0;
  box-shadow: none;
}

.games-row .game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.games-row .game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.42);
  border-color: transparent;
}

@media (max-width: 1100px) {
  .games-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  body {
    background: #040707;
  }

  .topbar {
    position: static;
    padding: 10px 14px 0;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 0;
  }

  .mobile-toggle {
    display: none;
  }

  .actions {
    display: flex;
  }

  .actions .btn-dark {
    display: none;
  }

  .actions .btn-primary {
    min-width: 116px;
    height: 40px;
    padding: 0 16px;
    border-radius: 10px;
    font-size: 15px;
    box-shadow: none;
  }

  .brand {
    gap: 10px;
    font-size: 22px;
  }

  .brand-badge {
    width: 34px;
    height: 34px;
    box-shadow: 0 0 22px rgba(199, 246, 20, 0.45);
  }

  .brand-badge::before {
    font-size: 13px;
  }

  .container {
    padding: 10px 14px 28px;
  }

  .hero {
    text-align: left;
    padding-top: 14px;
  }

  .hero-banner {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    padding: 28px 18px 22px;
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(4, 8, 13, 0.2), rgba(4, 8, 13, 0.18)),
      radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0) 60%),
      linear-gradient(180deg, #07090c 0%, #05080b 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.18) 0.8px, transparent 0.8px);
    background-size: 8px 8px;
    opacity: 0.22;
    pointer-events: none;
  }

  .hero-banner::after {
    content: "";
    position: absolute;
    right: -54px;
    bottom: -8px;
    width: 240px;
    height: 220px;
    background: url("images/jet-mobile-banner.png") no-repeat center / contain;
    pointer-events: none;
  }

  .label {
    position: relative;
    z-index: 1;
    min-height: 46px;
    padding: 0 20px;
    margin-bottom: 26px;
    font-size: 16px;
  }

  .hero h1 {
    position: relative;
    z-index: 1;
    max-width: 220px;
    font-size: 64px;
    line-height: 0.95;
    margin-bottom: 24px;
  }

  .hero p,
  .metrics,
  .hero-cta .btn-dark {
    display: none;
  }

  .hero-cta {
    position: relative;
    z-index: 1;
    justify-content: flex-start;
  }

  .hero-cta .btn-primary {
    min-width: 0;
    height: 42px;
    padding: 0 18px;
    border-radius: 10px;
    font-size: 14px;
    box-shadow: none;
  }

  .games-filter {
    margin: 28px auto 20px;
  }

  .games-filter-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0;
    background: #1b2026;
    border-radius: 16px;
    overflow: hidden;
  }

  .game-filter {
    width: 100%;
    min-height: 0;
    justify-content: center;
    padding: 14px 18px;
    border-radius: 0;
    font-size: 15px;
    color: #b9c2cd;
  }

  .game-filter.active {
    border-radius: 12px;
    margin: 0;
  }

  .games-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 24px;
  }

  .games-row .game-card {
    border-radius: 12px;
  }

  .tabs {
    width: 100%;
    justify-content: flex-start;
  }

  .section,
  .toc-section,
  .content-section,
  .site-footer,
  .cta-band {
    margin-top: 28px;
  }
}

@media (max-width: 420px) {
  .brand {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 56px;
    max-width: 200px;
  }

  .hero-banner {
    min-height: 334px;
    padding: 22px 16px 18px;
  }

  .hero-banner::after {
    width: 214px;
    height: 198px;
    right: -52px;
    bottom: 0;
  }

  .label {
    font-size: 14px;
  }
}

.hero-bonus {
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -2px;

  color: #c7f614;

  text-transform: uppercase;

  margin: 0 0 24px;
}
@media (max-width:768px){

.hero-bonus{
font-size:64px;
line-height:0.95;
}

}
.main-title {
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
    background: #0a0a0a;
    padding: 20px 30px;
    border-radius: 8px;
    line-height: 1.2;
}