:root {
  --bg: #040816;
  --bg-soft: #0b1227;
  --panel: rgba(10, 15, 33, 0.75);
  --panel-strong: rgba(9, 13, 28, 0.94);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f4f7ff;
  --muted: #aeb8cf;
  --accent: #35d0ff;
  --accent-2: #7a5cff;
  --accent-3: #00ffa8;
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.48);
  --container: 1240px;
  --transition: 0.35s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(53, 208, 255, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(122, 92, 255, 0.14), transparent 28%),
    radial-gradient(circle at bottom center, rgba(0, 255, 168, 0.07), transparent 24%),
    linear-gradient(180deg, #060a18 0%, #030611 100%);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}

.center {
  text-align: center;
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.bg-blur {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}

.blur-1 {
  width: 260px;
  height: 260px;
  left: -40px;
  top: 120px;
  background: rgba(53, 208, 255, 0.15);
}

.blur-2 {
  width: 320px;
  height: 320px;
  right: -60px;
  top: 220px;
  background: rgba(122, 92, 255, 0.14);
}

.blur-3 {
  width: 280px;
  height: 280px;
  left: 30%;
  bottom: -100px;
  background: rgba(0, 255, 168, 0.08);
}

.grid-overlay {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5), 0 0 30px rgba(122, 92, 255, 0.12);
}

#loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #0d1531 0%, #030611 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-box {
  width: min(430px, 90%);
  text-align: center;
}

.loader-logo {
  width: 115px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 18px rgba(53, 208, 255, 0.26));
}

.loader-box h1 {
  margin: 0 0 10px;
  font-size: 30px;
  letter-spacing: 0.12em;
}

.loader-box p {
  margin: 0 0 18px;
  color: #c4d2ef;
}

.loader-line {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
}

.loader-line span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  animation: loaderGrow 1.7s ease forwards;
}

@keyframes loaderGrow {
  from { width: 0; }
  to { width: 100%; }
}

.topbar {
  position: relative;
  z-index: 1001;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
}

.topbar-inner {
  min-height: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d6e6ff;
  font-size: 13px;
}

.top-divider {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.lang-btn {
  border: none;
  background: transparent;
  color: #a9b9d6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 4px 11px;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.lang-btn:hover {
  color: #f4f7ff;
}

.lang-btn.active {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #061018;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 10, 22, 0.55);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header.scrolled {
  background: rgba(6, 10, 22, 0.82);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  width: 126px;
  height: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  position: relative;
  color: #dce7ff;
  font-weight: 500;
  transition: color var(--transition);
}

.nav a:hover {
  color: white;
  text-shadow: 0 0 10px rgba(53, 208, 255, 0.6);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width var(--transition);
}

.nav a:hover::after {
  width: 100%;
}

.menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: white;
}

.hero {
  min-height: calc(100vh - 128px);
  display: flex;
  align-items: center;
  padding-top: 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: center;
}

.hero-badge,
.section-kicker,
.modal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  color: #dbeeff;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-3);
  box-shadow: 0 0 14px rgba(0,255,168,0.7);
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; box-shadow: 0 0 25px rgba(0,255,168,1); }
}

.text-gradient {
  background: linear-gradient(to right, #35d0ff, #00ffa8, #7a5cff, #35d0ff);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 6s infinite linear;
}

@keyframes gradientText {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.hero-title {
  margin: 24px 0 18px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 1.03;
  letter-spacing: -0.05em;
  text-shadow: 0 0 25px rgba(53,208,255,0.14);
}

.hero-text {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 14px 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-25deg);
  transition: left 0.6s ease;
}

.btn:hover::after {
  left: 150%;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 18px 40px rgba(53, 208, 255, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 20px 45px rgba(53, 208, 255, 0.35), 0 0 20px rgba(53, 208, 255, 0.2);
}

.btn-secondary {
  background: rgba(255,255,255,0.04);
  color: white;
  border-color: rgba(255,255,255,0.08);
}

.btn-card {
  min-width: auto;
  padding: 12px 18px;
  background: linear-gradient(135deg, rgba(53,208,255,0.22), rgba(122,92,255,0.24));
  color: white;
  border-color: rgba(255,255,255,0.08);
}

.hero-mini-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.mini-stat {
  min-width: 155px;
  padding: 20px 18px;
  border-radius: 20px;
}

.mini-stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: 32px;
}

.mini-stat span {
  color: var(--muted);
}

.hero-showcase {
  border-radius: var(--radius-xl);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53,208,255,0.22), transparent 65%);
}

.showcase-top,
.showcase-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.showcase-top {
  color: #dce7ff;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.pulse-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,255,168,0.1);
  border: 1px solid rgba(0,255,168,0.22);
  color: #bafce4;
}

.showcase-main {
  margin-top: 24px;
}

.showcase-main-text h2 {
  margin: 0 0 12px;
  font-size: 34px;
}

.showcase-main-text p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.showcase-stack {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.stack-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.stack-card img {
  width: 74px;
  height: 56px;
  object-fit: cover;
  border-radius: 12px;
}

.stack-card strong {
  display: block;
  margin-bottom: 4px;
}

.stack-card small {
  color: var(--muted);
}

.showcase-bottom {
  margin-top: 20px;
}

.show-badge {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: #eaf3ff;
}

.section-head {
  max-width: 780px;
  margin: 0 auto 54px;
}

.section-head h2 {
  margin: 18px 0 14px;
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: 17px;
}

.highlights-grid,
.vision-grid,
.stores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stores-grid {
  grid-template-columns: repeat(2, 1fr);
}

.store-games-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.store-game-chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(53,208,255,0.1);
  border: 1px solid rgba(53,208,255,0.2);
  font-size: 12px;
  color: #b8eeff;
  font-weight: 500;
}

.highlight-card,
.vision-card,
.store-card {
  border-radius: 24px;
  padding: 28px;
}

.highlight-card h3,
.vision-card h3,
.store-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.highlight-card p,
.vision-card p,
.store-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.highlight-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.vision-num {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
  line-height: 1;
}

.store-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 30px;
  background: linear-gradient(135deg, rgba(53,208,255,0.18), rgba(122,92,255,0.18));
  border: 1px solid rgba(255,255,255,0.08);
}

.stats-band {
  margin-top: 28px;
  border-radius: 28px;
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.counter-box {
  text-align: center;
  padding: 18px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.counter-box h3 {
  margin: 0 0 8px;
  font-size: 38px;
}

.counter-box p {
  margin: 0;
  color: var(--muted);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.game-card {
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.game-card:hover {
  transform: translateY(-10px);
  border-color: rgba(53,208,255,0.6);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 40px rgba(53, 208, 255, 0.18);
}

.game-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.game-card:hover .game-image {
  transform: scale(1.08);
}

.game-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.18) 55%, rgba(0,0,0,0.62) 100%);
}

.game-genre-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(53,208,255,0.85), rgba(122,92,255,0.85));
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  backdrop-filter: blur(6px);
}

.featured-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,200,0,0.9), rgba(255,130,0,0.9));
  border: 1px solid rgba(255,220,50,0.3);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  backdrop-filter: blur(6px);
}

.game-card-featured {
  border-color: rgba(255,180,0,0.3);
  box-shadow: var(--shadow), 0 0 40px rgba(255,160,0,0.08);
}

.store-pill {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(8, 13, 27, 0.8);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  color: #eef6ff;
}

.game-body {
  padding: 24px;
}

.chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.chip {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #d4e4ff;
  font-size: 12px;
}

.chip-platform {
  background: rgba(53,208,255,0.1);
  border-color: rgba(53,208,255,0.22);
  color: #b8eeff;
  font-weight: 600;
}

.chip-platform.android {
  background: rgba(0,200,80,0.1);
  border-color: rgba(0,200,80,0.22);
  color: #a8ffcc;
}

.game-body h3 {
  margin: 0 0 12px;
  font-size: 30px;
}

.game-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  min-height: 112px;
  font-size: 15px;
}

.game-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 18px;
  color: #dfeaff;
  font-size: 14px;
}

.game-bottom {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.platform-box strong {
  display: block;
  margin-bottom: 4px;
}

.platform-box small {
  color: var(--muted);
}

.studio-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: start;
}

.studio-left h2 {
  margin: 18px 0 18px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.studio-left p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.9;
  font-size: 17px;
}

.studio-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.info-card {
  border-radius: 22px;
  padding: 24px;
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border-radius: 22px;
  padding: 0 22px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-weight: 700;
  font-size: 18px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--muted);
  line-height: 1.8;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  border-radius: 28px;
  padding: 34px;
}

.contact-left h2 {
  margin: 18px 0 16px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.contact-left p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.contact-right {
  display: grid;
  gap: 16px;
}

.contact-item {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-item span {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.contact-item strong {
  font-size: 18px;
  line-height: 1.5;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.social-icon:hover {
  transform: translateY(-2px);
  border-color: rgba(53,208,255,0.4);
  background: rgba(53,208,255,0.08);
}

.social-icon.large {
  width: 46px;
  height: 46px;
  border-radius: 14px;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: #f4f7ff;
}

.contact-socials {
  margin-top: 22px;
}

.footer {
  padding: 34px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(4, 7, 16, 0.65);
  backdrop-filter: blur(12px);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 20px;
}

.footer-logo {
  width: 120px;
  height: auto;
  object-fit: contain;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 10px rgba(53,208,255,0.2));
}

.footer-brand h3 {
  margin: 0 0 8px;
}

.footer-brand p {
  margin: 0 0 14px;
  color: var(--muted);
  max-width: 420px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  color: #dbe6ff;
}

.footer-copy {
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 14px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(3, 7, 18, 0.82);
  backdrop-filter: blur(14px);
}

.modal.open {
  display: flex;
}

.modal-panel {
  width: min(860px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 28px;
  padding: 32px 28px 28px;
  background: linear-gradient(180deg, rgba(10, 16, 34, 0.98), rgba(5, 9, 19, 0.98));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 34px 90px rgba(0,0,0,0.55);
  position: relative;
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 4px;
}

.modal-game-img {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  color: white;
  font-size: 28px;
  cursor: pointer;
}

.modal-panel h2 {
  margin: 14px 0 10px;
  font-size: clamp(30px, 5vw, 48px);
}

.modal-platform {
  margin: 0;
  color: #98dfff;
  font-weight: 600;
}

.modal-description {
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 16px;
}

.modal-section {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.modal-section h3 {
  margin: 0 0 14px;
  font-size: 24px;
}

.modal-section ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
}

.modal-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .studio-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .games-grid {
    grid-template-columns: 1fr 1fr;
  }

  .highlights-grid,
  .vision-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stores-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-band {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(8, 12, 25, 0.95);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .games-grid,
  .highlights-grid,
  .vision-grid,
  .stores-grid,
  .studio-cards,
  .stats-band {
    grid-template-columns: 1fr;
  }

  .chip-platform.android {
    background: rgba(0,200,80,0.12);
    border-color: rgba(0,200,80,0.25);
    color: #a8ffcc;
  }

  .hero {
    padding-top: 80px;
  }

  .hero-title {
    font-size: clamp(38px, 11vw, 62px);
  }

  .hero-mini-stats {
    flex-direction: column;
  }

  .game-body p {
    min-height: auto;
  }

  .game-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-inner {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 84px 0;
  }

  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .header-inner {
    min-height: 78px;
  }

  .logo {
    width: 108px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-showcase,
  .highlight-card,
  .vision-card,
  .store-card,
  .info-card,
  .game-card,
  .contact-card,
  .faq-item,
  .modal-panel {
    border-radius: 22px;
  }

  .hero-showcase,
  .contact-card,
  .highlight-card,
  .vision-card,
  .store-card,
  .info-card,
  .modal-panel {
    padding: 22px;
  }

  .game-body {
    padding: 20px;
  }

  .topbar-inner {
    gap: 8px;
  }

  .topbar-left span:first-child,
  .top-divider,
  .topbar-left span:last-child {
    display: none;
  }

  .topbar-left::before {
    content: "GARGAMIX GAMES";
    font-size: 12px;
    letter-spacing: 0.04em;
    color: #d6e6ff;
  }

  .lang-btn {
    padding: 4px 9px;
    font-size: 11px;
  }

  .social-icon {
    width: 34px;
    height: 34px;
  }
}