:root {
  --primary: #ff7a00;
  --primary-dark: #d65f00;
  --accent: #ff9a1f;
  --dark: #0b0b0b;
  --dark-2: #171717;
  --dark-3: #232323;
  --muted: #a3a3a3;
  --light: #f8f8f8;
  --white: #ffffff;
  --border: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: var(--light);
  line-height: 1.6;
}

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

.nav-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-bar,
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: transparent;
  padding: 0;
  box-shadow: none;
  transform: translateY(-1px);
}

.brand-text {
  font-weight: 900;
  letter-spacing: 0.01em;
  font-size: 1.5rem;
}

.gold-text {
  color: #ff8a00;
  text-shadow: none;
}

.white-text {
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.nav-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--white);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 72px;
  text-align: center;
  background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 42%, #312e81 72%, #4f46e5 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.14), transparent 25%),
              radial-gradient(circle at left center, rgba(99, 102, 241, 0.18), transparent 32%);
}

.hero-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.scene-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 120px;
  height: 120px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(3px);
  opacity: 0.48;
}

.scene-icon {
  font-size: 2rem;
}

.scene-title {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 0.92rem;
}

.scene-card-1 {
  top: 18%;
  left: 8%;
  transform: rotate(-8deg);
}

.scene-card-2 {
  top: 20%;
  right: 9%;
  transform: rotate(8deg);
}

.scene-card-3 {
  bottom: 14%;
  left: 12%;
  transform: rotate(-6deg);
}

.scene-card-4 {
  bottom: 13%;
  right: 12%;
  transform: rotate(7deg);
}

.hero-content {
  position: relative;
  max-width: 820px;
  z-index: 2;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 4px;
}

.hero-logo {
  width: 148px;
  height: 148px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
}

.hero-label,
.section-tag {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  font-weight: 700;
  color: #ff9a1f;
}

.hero-section h1 {
  margin: 8px 0 12px;
  font-size: clamp(3.4rem, 8vw, 5.4rem);
  line-height: 1.02;
  color: var(--white);
  font-weight: 900;
}

.hero-subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
  color: #e7e5e4;
}

.hero-search {
  margin: 22px auto 0;
  max-width: 640px;
  display: flex;
  gap: 10px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
}

.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: #ffffff;
  font-size: 1rem;
  padding: 10px 14px;
}

.hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.hero-search button {
  border: none;
  border-radius: 999px;
  background: #ff9a1f;
  color: #111111;
  padding: 10px 18px;
  font-weight: 700;
  cursor: pointer;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
}

.btn-primary {
  background: var(--accent);
  color: #111111;
}

.btn-secondary {
  border: 1px solid rgba(255, 154, 31, 0.4);
  color: var(--white);
}

.section {
  padding: 72px 0;
}

.section-dark {
  background: linear-gradient(180deg, #0f172a 0%, #172554 100%);
  color: var(--white);
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}

.grid {
  display: grid;
  gap: 20px;
}

.cards-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.catalog-section {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

.filter-panel {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding: 14px 16px;
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
}

.filter-label {
  font-weight: 800;
  color: #111827;
}

.filter-chip {
  border: 1px solid #d1d5db;
  background: #ffffff;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.filter-chip.active {
  background: #ff9a1f;
  color: #111111;
  border-color: #ff9a1f;
}

.category-stack {
  display: grid;
  gap: 20px;
}

.category-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
  align-items: stretch;
}

.category-intro,
.game-visual-card,
.highlight-box,
.cta-box {
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.category-intro {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  color: var(--white);
  border-left: 4px solid #ff8a00;
}

.category-icon {
  font-size: 72px;
  margin-bottom: 16px;
  display: inline-block;
  padding: 16px;
  background: rgba(255, 138, 0, 0.15);
  border-radius: 16px;
  line-height: 1;
}

.category-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x proximity;
}

.game-visual-card {
  min-width: 190px;
  background: var(--white);
  border: 1px solid #e5e7eb;
  scroll-snap-align: start;
  padding: 14px;
}

.game-thumb {
  height: 120px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: #ffffff;
}

.image-thumb {
  background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%);
  overflow: hidden;
}

.product-thumb-image {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.game-visual-card h4 {
  margin: 0;
  font-size: 1rem;
}

.card-meta {
  margin: 8px 0 10px;
  color: #64748b;
  font-size: 0.92rem;
}

.mini-download-btn {
  display: inline-block;
  text-decoration: none;
  background: #ff9a1f;
  color: #111111;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
}

.icon {
  font-size: 30px;
  margin-bottom: 8px;
}

.pill {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  background: #fbbf24;
  color: #111827;
  margin-bottom: 12px;
}

.split-box {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  align-items: start;
}

.benefit-list {
  padding-left: 18px;
}

.benefit-list li {
  margin-bottom: 10px;
}

.highlight-box {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: var(--white);
  border-left: 4px solid #ff8a00;
}

.cta-section {
  background: #eef2ff;
}

.cta-box {
  background: linear-gradient(135deg, #312e81 0%, #4f46e5 100%);
  color: var(--white);
  border-top: 4px solid #ff8a00;
}

.site-footer {
  background: var(--dark);
  color: #d4d4d4;
}

@media (max-width: 800px) {
  .nav-bar,
  .footer-row,
  .split-box,
  .category-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nav-shell {
    position: static;
  }

  .hero-section {
    min-height: auto;
    padding-top: 72px;
  }

  .scene-card {
    width: 86px;
    height: 86px;
  }

  .scene-title {
    font-size: 0.75rem;
  }

  .hero-search {
    flex-direction: column;
    border-radius: 18px;
  }

  .hero-search button {
    width: 100%;
  }

  .category-strip {
    padding-bottom: 2px;
  }

  .scroll-card {
    min-width: 220px;
  }
}
