@import url('https://fonts.googleapis.com/css2?family=Anton&family=Anybody:wght@400;500;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple: #8620ca;
  --dark: #151515;
  --white: #ffffff;
  --btn-gradient: radial-gradient(ellipse at center, rgba(203,124,255,1) 0%, rgba(168,78,229,1) 50%, rgba(151,55,215,1) 75%, rgba(134,32,202,1) 100%);
}

body { font-family: 'Anybody', sans-serif; color: var(--dark); background: #fff; }

img { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  background: var(--purple);
  padding: 16px 0 0;
  padding-bottom: 20px;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-bottom: 16px;
}

.header-logo img { width: 40px; height: 40px; }

.header-logo span {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.header-nav {
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--white);
  display: flex;
}

.header-nav a {
  flex: 1;
  text-align: center;
  padding: 5px 0;
  font-family: 'Anybody', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  text-transform: uppercase;
  border-right: 1px solid var(--white);
  transition: background 0.2s ease, opacity 0.2s ease;
}

.header-nav a:hover { background: rgba(255,255,255,0.12); }

.header-nav a:last-child { border-right: none; }

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0 16px;
  justify-content: center;
  width: 100%;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--purple);
  border-top: 1px solid var(--white);
}

.mobile-menu a {
  text-align: center;
  padding: 12px 0;
  font-family: 'Anybody', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

.mobile-menu.open { display: flex; }

.btn {
  display: inline-block;
  background: var(--btn-gradient);
  border-radius: 20px;
  padding: 20px 40px;
  font-family: 'Anybody', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  max-width: 266px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(134,32,202,0.4);
}

.hero {
  background: var(--white);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  min-height: 686px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero-content {

  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.hero-headline {
  font-family: 'Anton', sans-serif;
  font-size: 140px;
  line-height: 1.0;
  color: var(--dark);
  text-transform: uppercase;
}

.hero-headline .accent { color: var(--purple); }

.hero-body {
  font-size: 16px;
  line-height: 1.5;
  max-width: 512px;
  color: var(--dark);
}

.hero-mascot {
  position: absolute;
  right: -40px;
  bottom: -280px;
  width: 571px;
  height: 732px;
  object-fit: contain;
  pointer-events: none;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

.about {
  background: var(--purple);
  padding: 60px 40px 0;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about-top {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.about-headline {
  font-family: 'Anton', sans-serif;
  font-size: 80px;
  line-height: 1.1;
  color: var(--white);
  text-transform: uppercase;
  flex: 0 0 530px;
}

.about-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-body p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--white);
}

.about-image {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  height: 580px;
  object-fit: cover;
}

.why {
  background: var(--white);
  padding: 60px 40px;
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.why-headline {
  font-family: 'Anton', sans-serif;
  font-size: 80px;
  line-height: 1.1;
  color: var(--dark);
  text-transform: uppercase;
  margin-bottom: 40px;
}

.why-headline .accent { color: var(--purple); }

.why-columns {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.why-col-left { flex: 0 0 314px; display: flex; flex-direction: column; gap: 20px; }
.why-col-center { flex: 0 0 378px; }
.why-col-right { flex: 0 0 314px; display: flex; flex-direction: column; gap: 15px; }

.why-col-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
}

.feature-card {
  background: var(--purple);
  border-radius: 26px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(134,32,202,0.3);
}

.feature-card img.star { width: 24px; height: 24px; }

.feature-card h3 {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  color: var(--white);
  text-transform: uppercase;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.4;
  color: var(--white);
}

.why-game-img {
  width: 100%;
  border-radius: 26px;
  object-fit: cover;
}

.numbers {
  background: var(--purple);
  padding: 60px 40px;
}

.numbers-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.numbers-header {
  margin-bottom: 40px;
}

.numbers-headline {
  font-family: 'Anton', sans-serif;
  font-size: 80px;
  line-height: 1.1;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.numbers-desc {
  font-size: 16px;
  line-height: 1.5;
  color: var(--white);
  max-width: 700px;
}

.numbers-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.numbers-img {
  flex: 1;
  height: 471px;
  object-fit: cover;
  border-radius: 20px;
}

.numbers-stats {
  flex: 0 0 193px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.stat-item { display: flex; flex-direction: column; }

.stat-number {
  font-family: 'Anton', sans-serif;
  font-size: 40px;
  color: var(--white);
  line-height: 1.1;
}

.stat-label {
  font-size: 16px;
  color: var(--white);
  line-height: 1.3;
}

.promote {
  background: var(--white);
  padding: 60px 40px;
}

.promote-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 412px;
  grid-template-rows: auto auto auto;
  column-gap: 40px;
  row-gap: 24px;
  align-items: start;
}

.promote-headline {
  grid-column: 1;
  grid-row: 1;
  font-family: 'Anton', sans-serif;
  font-size: 80px;
  line-height: 1.1;
  color: var(--dark);
  text-transform: uppercase;
}

.promote-headline .accent { color: var(--purple); }

.promote-body {
  grid-column: 1;
  grid-row: 2;
}

.promote-body p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--dark);
  margin-bottom: 16px;
}

.promote-body p:last-child { margin-bottom: 0; }

.promote-btn {
  grid-column: 1;
  grid-row: 3;
  max-width: 321px;
}

.promote-img {
  grid-column: 2;
  grid-row: 1 / 4;
  width: 100%;
  height: 471px;
  object-fit: contain;
  align-self: center;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 9999;
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner-inner {
  background: #8120ca;
  border-radius: 20px;
  padding: 36px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.cookie-banner-title {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.cookie-banner-text {
  color: var(--white);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 900px;
}

.cookie-banner-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-btn {
  background: var(--white);
  color: var(--dark);
  border: none;
  border-radius: 12px;
  padding: 16px 40px;
  font-family: 'Anybody', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: opacity 0.2s;
}

.cookie-btn:hover {
  opacity: 0.85;
}

.site-footer {
  background: var(--purple);
  padding: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo img { width: 40px; height: 40px; }

.footer-logo span {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  color: var(--white);
  text-transform: uppercase;
}

.footer-bar {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  display: flex;
  padding: 20px 0;
}

.footer-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-col-left { gap: 8px; }
.footer-col-center { flex-direction: row; gap: 17px; align-items: center; }
.footer-col-right { gap: 4px; text-align: center; }

.footer-col-left a {
  font-family: 'Anybody', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  text-transform: uppercase;
}

.footer-social-link img { width: 81px; height: 81px; }

.footer-col-right p {
  font-family: 'Anybody', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  text-align: center;
}

.footer-copyright {
  margin-top: 20px;
  font-size: 14px;
  color: var(--white);
  text-align: center;
}

.catalog-hero {
  background: var(--purple);
  padding: 60px 40px;
  min-height: calc(100vh - 105px - 315px);
}

.catalog-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

.catalog-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: var(--white);
  max-width: 470px;
}

.catalog-headline {
  font-family: 'Anton', sans-serif;
  font-size: 80px;
  line-height: 1.1;
  color: var(--white);
  text-transform: uppercase;
}

.catalog-text p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--white);
}

.catalog-grid {
  flex: 0 0 610px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.catalog-grid-row {
  display: flex;
  gap: 20px;
}

.catalog-card {
  flex: 1;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.catalog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

.catalog-card:hover img {
  transform: scale(1.04);
}

.policy-section {
  background: var(--white);
  padding: 60px 40px;
}

.policy-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.policy-title {
  font-family: 'Anton', sans-serif;
  font-size: 80px;
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
  color: var(--dark);
  margin-bottom: 40px;
}

.policy-title .accent { color: var(--purple); }

.policy-body {
  font-size: 16px;
  line-height: 1.2;
  color: var(--dark);
}

.policy-body p {
  margin-bottom: 20px;
}

.policy-body p:last-child { margin-bottom: 0; }

.policy-body h2 {
  font-family: 'Anybody', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 20px;
}

.policy-body ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 20px;
}

.policy-body ul li { margin-bottom: 4px; }

.game-hero {
  background: var(--white);
  padding: 60px 40px;
}

.game-hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.game-title {
  font-family: 'Anton', sans-serif;
  font-size: 80px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--dark);
  width: 100%;
}

.game-title .accent { color: var(--purple); }

.game-icon {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
  flex-shrink: 0;
}

.game-intro {
  font-size: 16px;
  line-height: 1.5;
  color: var(--dark);
  text-align: left;
  width: 100%;
}

.game-content {
  background: var(--purple);
  padding-top: 60px;
}

.game-content-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.game-section-heading {
  flex: 1;
  font-family: 'Anton', sans-serif;
  font-size: 60px;
  line-height: 1.1;
  color: var(--white);
  text-transform: uppercase;
}

.game-content-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.game-content-text p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--white);
}

.game-screenshot {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.hero-mobile-row { display: none; }

@media (max-width: 768px) {

  .header-nav { display: none; }
  .burger-btn { display: flex; }
  .burger-btn img { width: 36px; height: 36px; }

  .hero { padding: 40px 20px; min-height: auto; overflow: visible; }
  .hero-content { gap: 30px; }
  .hero-headline { font-size: 60px; }
  .hero-body { max-width: 100%; }
  .hero-mascot { display: none; }
  .desktop-only-btn { display: none; }

  .hero-mobile-row {
    display: flex;
    gap: 20px;
    align-items: center;
    width: 100%;
  }

  .hero-mobile-img {
    width: 152px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
  }

  .hero-mobile-btn {
    flex: 1;
    display: flex;
    align-items: center;
  }

  .hero-mobile-btn .btn {
    width: 100%;
    max-width: none;
    font-size: 24px;
    padding: 20px;
    white-space: normal;
    text-align: center;
  }

  .about { padding: 40px 20px 0; }
  .about-top { flex-direction: column; gap: 20px; margin-bottom: 20px; }
  .about-headline { font-size: 30px; flex: none; }
  .about-image { height: 400px; }

  .why { padding: 40px 20px; }
  .why-headline { font-size: 30px; margin-bottom: 20px; }

  .why-columns { flex-direction: column; gap: 20px; align-items: center; }
  .why-col-left,
  .why-col-center,
  .why-col-right { display: contents; }

  .why-col-center img { order: 1; width: 280px; height: auto; object-fit: contain; }
  .why-col-right .feature-card:nth-child(1) { order: 2; width: 100%; }
  .why-col-right .feature-card:nth-child(2) { order: 3; width: 100%; }
  .why-col-left .feature-card { order: 4; width: 100%; }
  .why-col-left .why-game-img { order: 5; width: 280px; height: auto; object-fit: contain; }
  .why-col-right .feature-card:nth-child(3) { order: 6; width: 100%; }

  .numbers { padding: 40px 20px 60px; }
  .numbers-headline { font-size: 30px; }
  .numbers-header { margin-bottom: 20px; }
  .numbers-content { flex-direction: column; gap: 20px; }
  .numbers-img { flex: none; width: 100%; height: 207px; }
  .numbers-stats {
    flex: none;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 13px;
  }
  .stat-item { flex: 0 0 calc(50% - 7px); }

  .promote { padding: 40px 20px; }
  .promote-inner { display: flex; flex-direction: column; gap: 20px; }
  .promote-headline { font-size: 30px; order: 1; }
  .promote-img { order: 2; width: 100%; height: 446px; object-fit: contain; }
  .promote-body { order: 3; }
  .promote-btn { order: 4; margin: 0 auto; max-width: none; width: auto; }

  .policy-section { padding: 40px 20px; }
  .policy-title { font-size: 30px; margin-bottom: 24px; }

  .game-hero { padding: 40px 20px; }
  .game-title { font-size: 30px; }
  .game-content { padding-top: 40px; }
  .game-content-inner { flex-direction: column; gap: 20px; padding: 0 20px; margin-bottom: 20px; }
  .game-section-heading { font-size: 30px; }
  .game-screenshot { height: auto; max-height: 360px; }

  .catalog-hero { padding: 40px 20px; }
  .catalog-inner { flex-direction: column; gap: 20px; }
  .catalog-text { max-width: 100%; gap: 20px; }
  .catalog-headline { font-size: 30px; }
  .catalog-grid { flex: none; width: 100%; }

  .cookie-banner { padding: 16px; }
  .cookie-banner-inner { padding: 24px; border-radius: 16px; }
  .cookie-banner-title { font-size: 28px; margin-bottom: 14px; }
  .cookie-banner-text { font-size: 13px; margin-bottom: 20px; }
  .cookie-banner-btns { gap: 12px; }
  .cookie-btn { padding: 14px 28px; font-size: 14px; }

  .site-footer { display: flex; flex-direction: column; align-items: center; gap: 30px; padding: 30px 0; }
  .footer-logo { margin-bottom: 0; }
  .footer-bar { display: contents; }
  .footer-col { border: none !important; }
  .footer-col-left { order: 1; gap: 10px; }
  .footer-col-right { order: 2; }
  .footer-col-center { order: 3; flex-direction: row; gap: 17px; }
  .footer-copyright { margin-top: 0; }
}
