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

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

body {
  font-family: 'Sansation', sans-serif;
  color: #000;
  background: #fff;
}

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

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

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

.header {
  padding: 10px 50px 0;
}

.header__grid {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.header__logo-text {
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.header__nav a {
  white-space: nowrap;
}

.header__burger {
  display: none;
  width: 20px;
  height: 8px;
}

.header__burger img {
  width: 100%;
  height: 100%;
}

.header__line {
  width: 100%;
  height: 1px;
  background: #000;
}

.hero {
  padding: 40px 50px 0;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

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

.hero__title {
  font-size: 142px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  line-height: 0.7;
}

.newsticker {
  display: flex;
  gap: 40px;
  align-items: center;
  background: #000;
  color: #fff;
  padding: 14px;
  font-size: 20px;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0 0 0 100vmax #000;
  clip-path: inset(0 -100vmax);
}

.newsticker span:first-child {
  font-weight: 700;
  text-transform: uppercase;
}

.hero__grid {
  display: flex;
  gap: 34px;
  align-items: flex-start;
  width: 100%;
}

.hero__subtitle {
  flex: 1;
  font-size: 74px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  min-width: 0;
}

.hero__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  justify-content: flex-end;
  min-width: 0;
}

.hero__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 12px 40px;
  border: 1px solid #000;
  border-radius: 71px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  background: transparent;
  color: #000;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  max-width: 220px;
}

.btn-outline:hover {
  background: #000;
  color: #fff;
}

.hero__image {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.grwm {
  background: #000;
  color: #fff;
  padding: 80px 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  box-shadow: 0 0 0 100vmax #000;
  clip-path: inset(0 -100vmax);
}

.grwm__top {
  display: flex;
  gap: 34px;
  align-items: flex-start;
}

.grwm__title {
  font-size: 74px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  width: 473px;
  flex-shrink: 0;
}

.grwm__quote {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
}

.grwm__quote-mark {
  font-family: 'General Sans', sans-serif;
  font-weight: 600;
  font-size: 69px;
  line-height: 1;
  flex-shrink: 0;
}

.grwm__quote-text {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.grwm__line {
  width: 100%;
  height: 1px;
  background: #fff;
}

.grwm__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
}

.grwm__text p + p {
  margin-top: 20.8px;
}

.soft-games {
  background: #fff;
  padding: 80px 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.soft-games__title {
  font-size: 74px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  text-align: center;
}

.soft-games__line {
  width: 100%;
  height: 1px;
  background: #000;
}

.podcasts {
  display: flex;
  width: 100%;
}

.podcast-card {
  width: 33.333%;
  border: 1px solid #000;
  margin-right: -1px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  background: #fff;
}

.podcast-card:last-child {
  margin-right: 0;
}

.podcast-cover {
  width: 291px;
  height: 291px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

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

.podcast-cover__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px 24px;
}

.podcast-cover__top-text {
  font-size: 36px;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  line-height: normal;
}

.podcast-cover__sub-text {
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  line-height: normal;
}

.podcast-cover__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.podcast-cover__number {
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  line-height: normal;
}

.podcast-cover__arrow {
  width: 36px;
  height: 36px;
  position: relative;
}

.podcast-cover__arrow::before,
.podcast-cover__arrow::after {
  content: '';
  position: absolute;
  background: #fff;
}

.podcast-cover__arrow::before {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

.podcast-cover__arrow::after {
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
}

.podcast-cover__arrow-diag {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 33px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.podcast-cover__arrow-diag::after {
  content: '';
  width: 2px;
  height: 45px;
  background: #fff;
  transform: rotate(-45deg);
}

.podcast-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  width: 100%;
}

.podcast-card__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  width: 100%;
}

.selected {
  background: #fff;
  padding: 80px 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.selected__line {
  width: 100%;
  height: 1px;
  background: #000;
}

.selected__title {
  font-size: 74px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  text-align: center;
}

.selected__grid {
  display: flex;
  flex-direction: column;
}

.selected__row {
  display: flex;
  margin-bottom: -1px;
}

.selected__row:last-child {
  margin-bottom: 0;
}

.game-card {
  flex: 1;
  display: flex;
  gap: 34px;
  align-items: center;
  padding: 23px;
  border: 1px solid #000;
  min-width: 0;
}

.game-card:first-child {
  margin-right: -1px;
}

.game-card__image {
  width: 107px;
  height: 107px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.game-card__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.game-card__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.game-card__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.direction {
  background: #fff;
  padding: 80px 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.direction__top {
  display: flex;
  gap: 34px;
  align-items: flex-start;
}

.direction__title {
  font-size: 74px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  width: 393px;
  flex-shrink: 0;
}

.direction__text {
  flex: 1;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  min-width: 0;
}

.direction__text p + p {
  margin-top: 20.8px;
}

.direction__image {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.footer {
  background: #000;
  color: #fff;
  padding: 40px 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 0 100vmax #000;
  clip-path: inset(0 -100vmax);
}

.footer .newsticker {
  width: 100%;
  justify-content: center;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  padding: 50px 50px 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.footer__brand {
  font-size: 57px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.1;
  color: #f9f9f9;
}

.footer__form {
  display: flex;
  gap: 9px;
  height: 36px;
  align-items: center;
}

.footer__input {
  width: 221px;
  height: 100%;
  padding: 0 11px;
  background: #fff;
  border: none;
  font-family: 'Sansation', sans-serif;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.8;
  outline: none;
}

.footer__submit {
  height: 36px;
  padding: 3px 17px;
  background: #fff;
  border: none;
  font-family: 'Sansation', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  color: #000;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 69px;
  width: 100%;
}

.footer__columns {
  display: flex;
  gap: 214px;
  width: 100%;
}

.footer__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.footer__col-line {
  width: 100%;
  height: 1px;
  background: #fff;
  opacity: 0.15;
}

.footer__col-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.footer__copy {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: 9px;
}

.footer__social a {
  display: block;
  width: 47px;
  height: 47px;
}

.footer__social img {
  width: 100%;
  height: 100%;
}

.catalog {
  background: #fff;
  padding: 80px 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.catalog__line {
  width: 100%;
  height: 1px;
  background: #000;
}

.catalog__title {
  font-size: 74px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  text-align: center;
}

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

.catalog__item {
  display: flex;
  gap: 40px;
  align-items: center;
  height: 171px;
  color: #000;
  transition: opacity 0.3s;
}

.catalog__item:hover {
  opacity: 0.7;
}

.catalog__number {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
  width: 26px;
  flex-shrink: 0;
}

.catalog__image {
  width: 170px;
  height: 170px;
  flex-shrink: 0;
  background: #d9d9d9;
}

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

.catalog__desc {
  flex: 1;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  min-width: 0;
}

.policy {
  padding: 80px 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.policy__title {
  font-size: 74px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  text-align: center;
}

.policy__line {
  width: 100%;
  height: 1px;
  background: #000;
}

.policy__body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

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

.gamepage {
  padding: 80px 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.gamepage__line {
  width: 100%;
  height: 1px;
  background: #000;
}

.gamepage__hero {
  display: flex;
  gap: 34px;
  align-items: center;
}

.gamepage__hero-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.gamepage__title {
  font-size: 74px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
}

.gamepage__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.gamepage__text p + p {
  margin-top: 20.8px;
}

.gamepage__features {
  display: flex;
  width: 100%;
}

.gamepage__feature {
  flex: 1;
  border: 1px solid #000;
  margin-right: -1px;
  padding: 23px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gamepage__feature:last-child {
  margin-right: 0;
}

.gamepage__feature-img {
  width: 107px;
  height: 107px;
  border-radius: 50%;
  object-fit: cover;
}

.gamepage__feature-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.gamepage__feature-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%) translateY(40px);
  width: calc(100% - 60px);
  max-width: 900px;
  background: #000;
  color: #fff;
  border-radius: 20px;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

.cookie-banner__title {
  font-size: 72px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: 1px;
}

.cookie-banner__text {
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
}

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

.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  border: 1px solid #fff;
  border-radius: 71px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.cookie-banner__btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

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

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero__title {
  animation: fadeInUp 0.8s ease-out both;
}

.hero__subtitle {
  animation: slideInLeft 0.8s ease-out 0.15s both;
}

.hero__desc {
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero__image {
  animation: scaleIn 0.9s ease-out 0.2s both;
}

.newsticker {
  animation: fadeIn 0.8s ease-out 0.1s both;
}

.grwm__title,
.soft-games__title,
.selected__title,
.direction__title,
.gamepage__title {
  animation: fadeInUp 0.7s ease-out both;
}

.header__logo {
  transition: transform 0.3s ease;
}

.header__logo:hover {
  transform: scale(1.05);
}

.header__nav a {
  position: relative;
  transition: color 0.3s ease;
}

.header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #000;
  transition: width 0.3s ease;
}

.header__nav a:hover::after {
  width: 100%;
}

.podcast-card {
  transition: transform 0.4s ease;
}

.podcast-card:hover {
  transform: translateY(-6px);
}

.podcast-cover img {
  transition: transform 0.6s ease;
}

.podcast-card:hover .podcast-cover img {
  transform: scale(1.06);
}

.podcast-cover {
  overflow: hidden;
}

.podcast-cover__arrow {
  transition: transform 0.3s ease, background 0.3s ease;
}

.podcast-card:hover .podcast-cover__arrow {
  transform: rotate(-45deg) scale(1.1);
}

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

.game-card:hover {
  transform: translateY(-4px);
}

.game-card__image {
  transition: transform 0.6s ease, filter 0.4s ease;
}

.game-card {
  overflow: hidden;
}

.game-card:hover .game-card__image {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.gamepage__feature {
  transition: background 0.3s ease, color 0.3s ease;
}

.gamepage__feature:hover {
  background: #000;
  color: #fff;
}

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

.gamepage__feature:hover .gamepage__feature-img {
  transform: scale(1.07) rotate(3deg);
}

.footer__social a {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer__social a:hover {
  transform: translateY(-3px);
  opacity: 0.7;
}

.footer__col-nav a {
  position: relative;
  transition: padding-left 0.3s ease, color 0.3s ease;
}

.footer__col-nav a:hover {
  padding-left: 6px;
}

.footer__submit {
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

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

.header__burger {
  transition: transform 0.3s ease;
}

.header__burger:hover {
  transform: scale(1.1);
}

.btn-outline {
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

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

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

  .header__nav {
    display: none;
  }

  .header__burger {
    display: block;
  }

  .header__nav--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    gap: 15px;
    z-index: 100;
    border-bottom: 1px solid #000;
  }

  .hero {
    padding: 10px 20px 0;
    gap: 40px;
  }

  .hero__content {
    gap: 20px;
  }

  .hero__title {
    font-size: 50px;
  }

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

  .hero__subtitle {
    font-size: 28px;
    text-align: center;
    width: 100%;
  }

  .hero__right {
    gap: 20px;
  }

  .hero__image {
    height: 300px;
  }

  .grwm {
    padding: 40px 20px;
    gap: 20px;
  }

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

  .grwm__title {
    font-size: 32px;
    width: 100%;
  }

  .soft-games {
    padding: 40px 20px;
    gap: 20px;
  }

  .soft-games__title {
    font-size: 32px;
  }

  .soft-games__line {
    height: 0;
  }

  .podcasts {
    flex-direction: column;
  }

  .podcast-card {
    width: 100%;
    margin-right: 0;
    padding: 20px;
  }

  .selected {
    padding: 40px 20px;
    gap: 20px;
  }

  .selected__line {
    height: 1px;
  }

  .selected__title {
    font-size: 32px;
  }

  .selected__grid {
    gap: 0;
  }

  .selected__row {
    flex-direction: column;
    margin-bottom: 0;
  }

  .game-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
  }

  .game-card:first-child {
    margin-right: 0;
  }

  .direction {
    padding: 40px 20px;
    gap: 20px;
  }

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

  .direction__title {
    font-size: 32px;
    width: 100%;
  }

  .direction__image {
    height: 300px;
  }

  .footer {
    padding: 20px 0 40px;
    gap: 10px;
  }

  .footer__inner {
    padding: 0 20px;
    gap: 20px;
  }

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

  .footer__brand {
    font-size: 40px;
    text-align: center;
  }

  .footer__bottom {
    gap: 20px;
    align-items: center;
  }

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

  .footer__col {
    text-align: center;
  }

  .footer__col-nav {
    align-items: center;
  }

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

  .footer__social {
    order: -1;
  }

  .catalog {
    padding: 40px 20px;
    gap: 20px;
  }

  .catalog__title {
    font-size: 32px;
  }

  .catalog__item {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    gap: 20px;
  }

  .policy {
    padding: 40px 20px;
    gap: 20px;
  }

  .policy__title {
    font-size: 32px;
  }

  .gamepage {
    padding: 40px 20px;
    gap: 20px;
  }

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

  .gamepage__title {
    font-size: 32px;
    text-align: center;
  }

  .gamepage__features {
    flex-direction: column;
  }

  .gamepage__feature {
    margin-right: 0;
  }

  .cookie-banner {
    width: calc(100% - 30px);
    bottom: 15px;
    padding: 24px 20px;
    border-radius: 16px;
    gap: 18px;
  }

  .cookie-banner__title {
    font-size: 36px;
  }

  .cookie-banner__text {
    font-size: 14px;
  }

  .cookie-banner__btn {
    padding: 12px 22px;
    font-size: 14px;
  }
}
