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

:root {
  --pink: #e63a79;
  --dark: #151515;
  --white: #ffffff;
  --btn-gradient: radial-gradient(ellipse 100% 100% at 50% 50%, #ff84b1 0%, #e96394 25%, #d34277 50%, #be215a 75%, #b3114c 87.5%, #a8003e 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Anybody', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 20px 40px;
  border-radius: 20px;
  background: var(--btn-gradient);
  font-family: 'Anybody', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
  transition: filter .2s ease, transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(179, 17, 76, .35);
}

.btn:active {
  transform: translateY(0);
}

.site-header {
  background: var(--pink);
  padding: 14px 0;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand span {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav {
  width: 100%;
  border: 1px solid var(--white);
  display: flex;
  align-items: stretch;
}

.main-nav a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 32px;
  border-right: 1px solid var(--white);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity .2s ease;
}

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

.main-nav a:hover {
  opacity: .75;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 12px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-toggle img {
  width: 40px;
  height: 12px;
}

.hero {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  min-height: 601px;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  width: 950px;
  max-width: 100%;
}

.hero-title {
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(60px, 9.17vw, 110px);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--dark);
}

.hero-title .accent {
  color: var(--pink);
}

.hero-text {
  margin: 0;
  max-width: 512px;
  font-size: 16px;
  line-height: 1.2;
  color: var(--dark);
}

.hero-img {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  width: clamp(440px, 38vw, 600px);
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.passion {
  background: var(--pink);
  padding-top: 60px;
  overflow: hidden;
}

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

.passion-text {
  display: flex;
  gap: 30px;
  width: 100%;
  padding: 0 40px;
}

.passion-title {
  flex: 1;
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 6.67vw, 80px);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--white);
}

.passion-copy {
  flex: 1;
  color: var(--white);
}

.passion-copy p {
  margin: 0 0 19px;
  font-size: 16px;
  line-height: 1.2;
}

.passion-copy p:last-child {
  margin-bottom: 0;
}

.passion-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
}

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

.why-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.why-title {
  width: 100%;
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 6.67vw, 80px);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--dark);
}

.why-title .accent {
  color: var(--pink);
}

.why-grid {
  display: flex;
  gap: 40px;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
}

.why-col {
  flex: 0 1 314px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.why-col-right {
  flex: 0 1 314px;
  min-width: 0;
  height: 579px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card {
  background: var(--pink);
  border-radius: 26px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-card .icon {
  width: 36px;
  height: 36px;
}

.feature-card h3 {
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: normal;
  color: var(--white);
}

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

.why-img-main {
  flex: 0 1 378px;
  min-width: 0;
  height: 579px;
  border-radius: 20px;
  object-fit: cover;
}

.why-img-small {
  width: 100%;
  height: 261px;
  border-radius: 20px;
  object-fit: cover;
}

.stats {
  background: var(--pink);
  padding: 60px 40px;
}

.stats-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.stats-head {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  color: var(--white);
}

.stats-title {
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 6.67vw, 80px);
  line-height: 1.1;
  text-transform: uppercase;
}

.stats-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
}

.stats-list {
  flex: 0 0 245px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  color: var(--white);
}

.stat .num {
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: normal;
}

.stat .label {
  margin: 6px 0 0;
  font-size: 16px;
  line-height: normal;
}

.stats-img {
  flex: 1;
  min-width: 0;
  height: 471px;
  border-radius: 20px;
  object-fit: cover;
}

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

.discover-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.discover-img {
  flex: 0 0 412px;
  width: 412px;
  height: 471px;
  border-radius: 20px;
  object-fit: cover;
}

.discover-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.discover-title {
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 6.67vw, 80px);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--dark);
}

.discover-title .accent {
  color: var(--pink);
}

.discover-text p {
  margin: 0 0 19px;
  font-size: 16px;
  line-height: 1.2;
  color: var(--dark);
}

.discover-text p:last-child {
  margin-bottom: 0;
}

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

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-brand span {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-bottom {
  width: 100%;
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  display: flex;
  align-items: stretch;
}

.footer-cell {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
}

.footer-menu {
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid var(--white);
}

.footer-menu a {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity .2s ease;
}

.footer-menu a:hover {
  opacity: .75;
}

.footer-cta {
  border-right: 1px solid var(--white);
}

.footer-social {
  display: flex;
  gap: 17px;
}

.footer-social img {
  width: 82px;
  height: 82px;
  transition: opacity .2s ease;
}

.footer-social a:hover img {
  opacity: .8;
}

.footer-contact {
  flex-direction: column;
  color: var(--white);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
}

.footer-contact p {
  margin: 0;
}

.footer-copyright {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  color: var(--white);
  text-align: center;
}

.catalog {
  background: var(--pink);
  padding: 60px 40px;
}

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

.catalog-title {
  width: 100%;
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 6.67vw, 80px);
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
}

.catalog-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
}

.catalog-grid {
  flex: 0 0 610px;
  display: grid;
  grid-template-columns: repeat(3, 190px);
  gap: 20px;
}

.game-card {
  display: block;
  width: 190px;
  height: 190px;
  border-radius: 20px;
  overflow: hidden;
  transition: transform .2s ease, filter .2s ease;
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.game-card:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.catalog-copy {
  flex: 1;
  min-width: 0;
  color: var(--white);
}

.catalog-copy p {
  margin: 0 0 19px;
  font-size: 16px;
  line-height: 1.2;
}

.catalog-copy p:last-child {
  margin-bottom: 0;
}

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

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

.game-title {
  margin: 0;
  width: 100%;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 6.67vw, 80px);
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
  color: var(--dark);
}

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

.game-thumb {
  width: 200px;
  height: 200px;
  border-radius: 20px;
  object-fit: cover;
}

.game-desc {
  margin: 0;
  width: 100%;
  font-size: 16px;
  line-height: 1.2;
  color: var(--dark);
}

.game-hero-inner .btn {
  align-self: center;
}

.game-details {
  background: var(--pink);
  padding-top: 60px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.game-details-row {
  width: 100%;
  max-width: 1200px;
  padding: 0 40px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
  color: var(--white);
}

.game-details-title {
  flex: 1;
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.1;
  text-transform: uppercase;
}

.game-details-copy {
  flex: 1;
}

.game-details-copy p {
  margin: 0 0 19px;
  font-size: 16px;
  line-height: 1.2;
}

.game-details-copy p:last-child {
  margin-bottom: 0;
}

.game-details-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

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

.policy-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.policy-title {
  width: 100%;
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 6.67vw, 80px);
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
  color: var(--dark);
}

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

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

.policy-body p,
.policy-body ul {
  margin: 0 0 20px;
}

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

.policy-body ul {
  padding-left: 24px;
  list-style: disc;
}

.policy-body ul li {
  margin: 0;
}

.policy-body a {
  color: inherit;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0 20px;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .main-nav a {
    flex: none;
    border-right: none;
    border-bottom: 1px solid var(--white);
    padding: 10px 32px;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .site-header.open .main-nav {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero-inner {
    padding: 40px 20px;
    min-height: 0;
    display: block;
  }

  .hero-content {
    width: 100%;
    gap: 20px;
  }

  .hero-img {
    position: static;
    width: 100%;
    height: 300px;
    border-radius: 20px;
    max-width: 100%;
  }

  .passion {
    padding-top: 40px;
  }

  .passion-inner {
    gap: 20px;
  }

  .passion-text {
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
  }

  .passion-img {
    height: 220px;
  }

  .why {
    padding: 40px 20px;
  }

  .why-inner {
    gap: 20px;
  }

  .why-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .why-col {
    flex: none;
    width: 100%;
    gap: 20px;
  }

  .why-col-right {
    flex: none;
    width: 100%;
    height: auto;
    gap: 20px;
  }

  .why-img-main {
    flex: none;
    width: 100%;
    height: 300px;
  }

  .why-img-small {
    height: 260px;
  }

  .stats {
    padding: 40px 20px;
  }

  .stats-inner {
    gap: 20px;
  }

  .stats-row {
    flex-direction: column;
    gap: 20px;
  }

  .stats-list {
    flex: none;
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .stats-img {
    flex: none;
    width: 100%;
    height: 300px;
  }

  .discover {
    padding: 40px 20px;
  }

  .discover-inner {
    flex-direction: column;
    gap: 20px;
  }

  .discover-img {
    flex: none;
    width: 100%;
    height: 300px;
  }

  .discover-content {
    width: 100%;
  }

  .policy {
    padding: 40px 20px;
  }

  .policy-inner {
    gap: 20px;
  }

  .game-hero {
    padding: 40px 20px;
  }

  .game-hero-inner {
    gap: 20px;
  }

  .game-details {
    padding-top: 40px;
    gap: 20px;
  }

  .game-details-row {
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
  }

  .game-details-img {
    height: 300px;
  }

  .catalog {
    padding: 40px 20px;
  }

  .catalog-inner {
    gap: 20px;
  }

  .catalog-row {
    flex-direction: column;
    gap: 40px;
  }

  .catalog-grid {
    flex: none;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
  }

  .game-card,
  .game-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 13px;
  }

  .catalog-copy {
    width: 100%;
  }

  .footer-inner {
    padding: 0 20px;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    border: 1px solid var(--white);
  }

  .footer-cell {
    padding: 10px 32px;
  }

  .footer-menu {
    border-right: none;
    border-bottom: 1px solid var(--white);
  }

  .footer-cta {
    border-right: none;
    border-bottom: 1px solid var(--white);
  }
}

/* ===== Extra hover effects ===== */
.feature-card {
  transition: transform .25s ease, box-shadow .25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
}

.feature-card .icon {
  transition: transform .3s ease;
}

.feature-card:hover .icon {
  transform: rotate(-12deg) scale(1.12);
}

.game-thumb {
  transition: transform .3s ease, box-shadow .3s ease;
}

.game-thumb:hover {
  transform: scale(1.04);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .2);
}

.brand img,
.footer-brand img {
  transition: transform .3s ease;
}

.brand:hover img,
.footer-brand:hover img {
  transform: rotate(-8deg) scale(1.1);
}

.stat {
  transition: transform .2s ease;
}

.stat:hover {
  transform: translateX(4px);
}

/* ===== Scroll reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}

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

/* ===== Cookie consent banner ===== */
.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 1000;
  width: 880px;
  max-width: calc(100% - 40px);
  padding: 40px;
  border-radius: 24px;
  background: #d24f7c;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
  transform: translateY(140%);
  opacity: 0;
  transition: transform .5s cubic-bezier(.2, .8, .2, 1), opacity .5s ease;
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-title {
  margin: 0 0 16px;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}

.cookie-text {
  margin: 0 0 28px;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.35;
  color: var(--white);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-btn {
  min-width: 180px;
  padding: 18px 40px;
  border: none;
  border-radius: 18px;
  background: var(--white);
  font-family: 'Anybody', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  letter-spacing: .04em;
  color: var(--pink);
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.cookie-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .2);
  filter: brightness(.98);
}

.cookie-btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    max-width: none;
    padding: 24px;
    border-radius: 18px;
  }

  .cookie-title {
    font-size: 44px;
    margin-bottom: 12px;
  }

  .cookie-text {
    margin-bottom: 20px;
  }

  .cookie-actions {
    gap: 12px;
  }

  .cookie-btn {
    flex: 1;
    min-width: 0;
    padding: 16px 20px;
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .cookie-banner {
    transition: opacity .3s ease;
  }
}

.inline-link{color:#ff8acb;text-decoration:underline;text-underline-offset:3px;font-weight:500}
.inline-link:hover{opacity:.85}
.editorial-meta{display:block;color:rgba(0,0,0,.65);font-size:13px;line-height:1.6;margin:6px 0 14px;letter-spacing:.02em}
.editorial-note{border-left:2px solid #ff8acb;padding:6px 0 6px 16px;margin:18px 0;font-size:14px;line-height:1.6}
.source-line{font-size:14px;line-height:1.7;margin:14px 0 0}
.dev-notice{display:block;margin:14px 0 0;font-size:12px;line-height:1.5;color:rgba(255,255,255,.65);text-align:center}
.byline{margin-bottom:8px;color:rgba(0,0,0,.65);font-size:13px;line-height:1.6}
