@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,600;0,700;0,900;1,300&display=swap');

:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-green: #00583c;
  --color-gray: #bbbbbb;
  --color-border: #333333;
  --font: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--color-black);
  color: var(--color-white);
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  color: var(--color-green);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 20px 50px;
  border-radius: 60px;
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
  max-width: 260px;
}

.btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.section-title {
  font-size: 60px;
  font-weight: 400;
  letter-spacing: -2.5px;
  line-height: 0.95;
  color: var(--color-white);
}

.section-title em {
  font-style: italic;
  font-weight: 300;
}

.header {
  background: var(--color-black);
  padding: 14px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
}

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

.logo__text {
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__link {
  font-size: 16px;
  color: var(--color-white);
  transition: opacity 0.2s ease;
}

.nav__link:hover {
  opacity: 0.7;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-white);
}

.hero {
  background: var(--color-black);
  padding: 80px 0;
}

.hero__card {
  background: var(--color-green);
  border-radius: 52px;
  position: relative;
  overflow: hidden;
  padding: 80px 35px;
  min-height: 505px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__title {
  font-size: 106px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 0.95;
  margin-bottom: 20px;
  letter-spacing: -2px;
  position: relative;
  z-index: 1;
}

.hero__body {
  max-width: 504px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 3;
}

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

.hero__media {
  position: absolute;
  right: 0;
  top: 0;
  width: 575px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}

.passion {
  background: var(--color-black);
  padding: 80px 0;
}

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

.passion__text-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.passion__copy p {
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-white);
  margin-bottom: 16px;
}

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

.passion__image {
  width: 385px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
}

.passion__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.games {
  background: var(--color-black);
  padding: 80px 0;
}

.games__title {
  text-align: center;
  margin-bottom: 40px;
}

.games__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.games__row {
  display: flex;
  gap: 20px;
}

.game-card {
  flex: 1;
  border: 3px solid var(--color-green);
  border-radius: 20px;
  padding: 14px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.game-card__icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.game-card__title {
  font-size: 20px;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: -0.2px;
  line-height: 1.35;
}

.game-card__desc {
  font-size: 16px;
  color: var(--color-gray);
  line-height: 1.3;
}

.entertainment {
  background: var(--color-green);
  padding: 80px 0;
}

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

.entertainment__image {
  width: 385px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
}

.entertainment__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entertainment__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
}

.entertainment__copy p {
  font-size: 16px;
  color: var(--color-white);
  line-height: 1.4;
  margin-bottom: 16px;
}

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

.faq {
  background: var(--color-black);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.faq__glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  max-width: none;
  height: auto;
  pointer-events: none;
  opacity: 0.9;
}

.faq__title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

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

.faq__item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}

.faq__icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}

.faq__q {
  width: 350px;
  font-size: 20px;
  color: var(--color-white);
  letter-spacing: -0.2px;
  line-height: 1.35;
  flex-shrink: 0;
}

.faq__a {
  flex: 1;
  font-size: 16px;
  color: var(--color-gray);
  line-height: 1.3;
}

.catalog {
  background: var(--color-black);
  padding: 80px 0;
}

.catalog__inner {
  display: grid;
  grid-template-columns: 500px 1fr;
  column-gap: 40px;
  row-gap: 40px;
  align-items: start;
}

.catalog__title {
  grid-column: 1;
  grid-row: 1;
}

.catalog__copy {
  grid-column: 2;
  grid-row: 1;
  color: var(--color-gray);
  font-size: 16px;
  line-height: 1.3;
}

.catalog__copy p {
  margin-bottom: 14px;
}

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

.catalog__grid {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.catalog__row {
  display: flex;
  gap: 18px;
  align-items: center;
}

.catalog__row--bottom {
  justify-content: space-between;
}

.catalog__cards {
  display: flex;
  gap: 18px;
  align-items: center;
}

.catalog__arrow {
  width: 158px;
  height: 158px;
  transform: rotate(180deg) scaleX(-1);
  flex-shrink: 0;
  pointer-events: none;
}

.game-tile {
  display: block;
  width: 197px;
  height: 193px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.game-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 88, 60, 0.4);
}

.game-hero {
  background: var(--color-green);
  padding: 80px 0;
}

.game-hero__inner,
.game-detail__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.game-hero__title,
.game-detail__title {
  width: 100%;
}

.game-hero__row,
.game-detail__row {
  display: flex;
  gap: 40px;
  align-items: center;
}

.game-hero__image,
.game-detail__image {
  width: 300px;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

.game-hero__image img,
.game-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-hero__content,
.game-detail__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 0;
}

.game-hero__text,
.game-detail__text {
  font-size: 16px;
  color: var(--color-white);
  line-height: 1.4;
}

.btn--solid {
  background: var(--color-green);
  color: var(--color-white);
}

.btn--solid:hover {
  background: #006a48;
}

.game-detail {
  background: var(--color-black);
  padding: 80px 0;
}

.policy {
  background: var(--color-black);
  padding: 80px 0;
}

.policy__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.policy__title {
  width: 100%;
}

.policy__body {
  color: var(--color-white);
  font-size: 16px;
  line-height: 1.2;
}

.policy__body p {
  margin-bottom: 10px;
}

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

.policy__body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 10px;
}

.policy__body ul li {
  margin-bottom: 0;
}

.policy__body a {
  color: var(--color-white);
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.policy__body a:hover {
  opacity: 0.75;
}

.footer {
  background: var(--color-green);
  padding: 60px 0;
}

.footer__top {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}

.footer__star {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.footer__heading {
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 0.9;
}

.footer__contact {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 30px;
  color: var(--color-white);
  font-size: 16px;
  line-height: 1.6;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer__links a {
  font-size: 16px;
  color: var(--color-white);
  transition: opacity 0.2s ease;
}

.footer__links a:hover {
  opacity: 0.7;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 61px;
  height: 61px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer__socials a:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.footer__socials img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__copy {
  font-size: 16px;
  color: var(--color-white);
}

/* ===== Scroll reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

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

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

@media (prefers-reduced-motion: no-preference) {
  .hero__image {
    animation: floaty 6s ease-in-out infinite;
  }
}

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

/* ===== Extra hover effects ===== */
.logo {
  transition: opacity 0.2s ease;
}

.logo:hover {
  opacity: 0.85;
}

.logo__icon {
  transition: transform 0.4s ease;
}

.logo:hover .logo__icon {
  transform: rotate(-8deg) scale(1.08);
}

.game-card {
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: #007a52;
  box-shadow: 0 16px 32px rgba(0, 88, 60, 0.35);
  background: rgba(0, 88, 60, 0.08);
}

.game-card__icon {
  transition: transform 0.4s ease;
}

.game-card:hover .game-card__icon {
  transform: scale(1.12) rotate(-5deg);
}

.passion__image img,
.entertainment__image img,
.game-hero__image img,
.game-detail__image img {
  transition: transform 0.6s ease;
}

.passion__image:hover img,
.entertainment__image:hover img,
.game-hero__image:hover img,
.game-detail__image:hover img {
  transform: scale(1.06);
}

.game-tile img {
  transition: transform 0.5s ease;
}

.game-tile:hover img {
  transform: scale(1.08);
}

.faq__item {
  transition: border-color 0.3s ease;
}

.faq__item:hover {
  border-bottom-color: var(--color-green);
}

.faq__icon {
  transition: transform 0.4s ease;
}

.faq__item:hover .faq__icon {
  transform: scale(1.1) rotate(6deg);
}

.footer__star {
  transition: transform 0.6s ease;
}

.footer__top:hover .footer__star {
  transform: rotate(20deg) scale(1.05);
}

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 640px;
  transform: translateY(calc(100% + 48px));
  opacity: 0;
  pointer-events: none;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner__card {
  background: var(--color-white);
  border-radius: 32px;
  padding: 40px 44px 44px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.cookie-banner__title {
  font-size: 60px;
  font-weight: 400;
  letter-spacing: -2px;
  line-height: 1;
  color: #0a0a0a;
  margin-bottom: 18px;
}

.cookie-banner__text {
  font-size: 16px;
  line-height: 1.45;
  color: #1c1c1c;
  margin-bottom: 28px;
}

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

.cookie-banner__btn {
  flex: 1;
  min-width: 150px;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--color-white);
  padding: 20px 36px;
  border-radius: 60px;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.cookie-banner__btn:hover {
  transform: translateY(-2px);
}

.cookie-banner__btn--accept {
  background: #2e6b4b;
}

.cookie-banner__btn--accept:hover {
  background: #347a56;
}

.cookie-banner__btn--decline {
  background: #8fb0a0;
}

.cookie-banner__btn--decline:hover {
  background: #9dbcad;
}

@media (max-width: 1024px) {
  .hero__title {
    font-size: 80px;
  }

  .hero__media {
    width: 450px;
  }

  .section-title {
    font-size: 48px;
  }

  .footer__heading {
    font-size: 40px;
  }
}

@media (max-width: 860px) {
  .container {
    padding: 0 20px;
  }

  .logo__text {
    font-size: 24px;
  }

  .nav {
    display: none;
  }

  .nav.is-open {
    display: flex;
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    right: 0;
    background: var(--color-black);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 20px;
    border-top: 1px solid var(--color-border);
    z-index: 50;
  }

  .nav.is-open .nav__link {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--color-border);
  }

  .nav.is-open .nav__link:last-child {
    border-bottom: none;
  }

  .burger {
    display: flex;
  }

  .hero {
    padding: 40px 0;
  }

  .hero__card {
    border-radius: 40px;
    padding: 20px;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .hero__title {
    font-size: 50px;
    line-height: 0.9;
    letter-spacing: -1px;
    word-break: break-word;
    margin-bottom: 0;
    order: 1;
  }

  .hero__body {
    max-width: none;
    order: 3;
  }

  .hero__media {
    position: static;
    width: 100%;
    height: 400px;
    order: 2;
  }

  .hero__image {
    object-position: center;
  }

  .passion,
  .games,
  .entertainment,
  .faq {
    padding: 40px 0;
  }

  .footer {
    padding: 40px 0;
  }

  .section-title {
    font-size: 32px;
    letter-spacing: -1px;
  }

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

  .passion__image {
    width: 100%;
    height: 288px;
    order: 2;
  }

  .passion__text-block {
    order: 1;
    gap: 20px;
  }

  .passion__order-title {
    order: 1;
  }

  .passion__order-image {
    order: 2;
  }

  .passion__order-copy {
    order: 3;
  }

  .games__title {
    margin-bottom: 0;
  }

  .games__row {
    flex-direction: column;
  }

  .catalog {
    padding: 40px 0;
  }

  .catalog__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .catalog__title {
    width: 100%;
  }

  .catalog__copy {
    order: 3;
  }

  .catalog__grid {
    order: 2;
    gap: 12px;
  }

  .catalog__row {
    gap: 12px;
    justify-content: center;
  }

  .catalog__row--bottom {
    justify-content: center;
  }

  .catalog__cards {
    gap: 12px;
    flex: 1;
    justify-content: center;
  }

  .catalog__arrow {
    display: none;
  }

  .game-tile {
    width: calc((100% - 24px) / 3);
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .game-hero,
  .game-detail {
    padding: 40px 0;
  }

  .game-hero__inner,
  .game-detail__inner {
    gap: 20px;
  }

  .game-hero__row,
  .game-detail__row {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }

  .game-hero__image,
  .game-detail__image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    max-height: 360px;
  }

  .game-hero__content,
  .game-detail__content {
    gap: 20px;
  }

  .game-detail__row {
    flex-direction: column-reverse;
  }

  .policy {
    padding: 40px 0;
  }

  .policy__inner {
    gap: 20px;
  }

  .games__grid {
    gap: 20px;
  }

  .game-card {
    width: 100%;
  }

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

  .entertainment__image {
    width: 100%;
    height: 300px;
    order: 1;
  }

  .entertainment__content {
    gap: 20px;
    order: 2;
  }

  .faq__glow {
    width: 668px;
    top: -57px;
  }

  .faq__list {
    gap: 20px;
  }

  .faq__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .faq__q,
  .faq__a {
    width: 100%;
  }

  .footer__top {
    gap: 20px;
  }

  .footer__star {
    width: 80px;
    height: 80px;
  }

  .footer__heading {
    font-size: 40px;
  }

  .footer__contact {
    margin-bottom: 20px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }

  .footer__copy {
    text-align: center;
  }

  .cookie-banner {
    left: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
  }

  .cookie-banner__card {
    border-radius: 24px;
    padding: 28px 24px 30px;
  }

  .cookie-banner__title {
    font-size: 32px;
    letter-spacing: -1px;
    margin-bottom: 14px;
  }

  .cookie-banner__text {
    margin-bottom: 22px;
  }

  .cookie-banner__btn {
    padding: 16px 28px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 40px;
  }

  .btn {
    padding: 16px 40px;
    font-size: 14px;
  }

  .footer__heading {
    font-size: 32px;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

.inline-link{color:#5cdfff;text-decoration:underline;text-underline-offset:3px;font-weight:500}
.inline-link:hover{opacity:.85}
.editorial-meta{display:block;color:rgba(255,255,255,.78);font-size:13px;line-height:1.6;margin:6px 0 14px;letter-spacing:.02em}
.editorial-note{border-left:2px solid #5cdfff;padding:6px 0 6px 16px;margin:18px 0;font-size:14px;line-height:1.6;color:rgba(255,255,255,.85)}
.source-line{font-size:14px;line-height:1.7;color:rgba(255,255,255,.85);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(255,255,255,.78);font-size:13px;line-height:1.6}
