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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Unbounded', sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

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

ul {
  list-style: none;
}

.container,
.hero__inner,
.about__inner,
.features__inner,
.faq__inner,
.contact__outer {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  padding-left: 60px;
  padding-right: 60px;
}

.header {
  width: 100%;
  position: relative;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 60px;
  height: 66px;
}

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

.header__logo-icon {
  width: 40px;
  height: 40px;
}

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

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

.header__nav-link {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 10px 0;
}

.header__burger span {
  display: block;
  width: 30px;
  height: 0;
  border-top: 2px solid #fff;
}

.header__line {
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  max-width: 1180px;
  margin: 0 auto;
}

.hero {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: 616px;
}

.hero__vector {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1110px;
  height: 445px;
  max-width: none;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__title {
  font-size: 230px;
  font-weight: 500;
  letter-spacing: -25.3px;
  line-height: normal;
  white-space: nowrap;
  padding: 80px 7px 0;
  position: relative;
  animation: heroTitleIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__content {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 60px;
}

.hero__left {
  width: 399px;
  background: #10BFFF;
  border-radius: 20px;
  padding: 20px;
  margin-top: 24px;
}

.hero__tags {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border: 1px solid #fff;
  border-radius: 83px;
  font-size: 10px;
  font-weight: 500;
  text-transform: capitalize;
  white-space: nowrap;
  line-height: 1.2;
}

.hero__description {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: #f7f7f7;
  letter-spacing: -0.28px;
}

.hero__right {
  width: 438px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hero__slogan {
  font-size: 52px;
  font-weight: 600;
  text-align: right;
  text-transform: capitalize;
  letter-spacing: -1.04px;
  line-height: 1;
}

.hero__slogan-accent {
  color: #10BFFF;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  background: #10BFFF;
  border-radius: 83px;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  white-space: nowrap;
  margin-top: 20px;
  line-height: 1.2;
}

.about {
  padding: 60px 0;
}

.about__inner {
  display: flex;
  align-items: center;
  gap: 27px;
}

.about__image {
  width: 495px;
  min-width: 495px;
  height: 378px;
  border-radius: 40px;
  overflow: hidden;
  flex-shrink: 0;
}

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

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

.about__title {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: normal;
}

.about__text {
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
}

.about__text p {
  margin-bottom: 1em;
}

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

.features {
  padding: 60px 0;
  background: #000;
}

.features__inner {
  padding-left: 60px;
  padding-right: 60px;
}

.features__title {
  font-size: 40px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  line-height: 0.8;
  margin-bottom: 40px;
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.features__card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 595px;
  padding: 10px;
}

.features__card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.features__card-content {
  position: relative;
  z-index: 1;
  background: #10BFFF;
  border-radius: 20px;
  padding: 20px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.features__card-title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: normal;
}

.features__card-text {
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
}

.faq {
  padding: 60px 0;
  background: #000;
}

.faq__title {
  font-size: 40px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 0.8;
  margin-bottom: 40px;
}

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

.faq__item {
  cursor: pointer;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.faq__question-text {
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.2px;
  line-height: 1.4;
}

.faq__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.faq__icon svg {
  width: 100%;
  height: 100%;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__answer.active {
  max-height: 200px;
  padding-top: 10px;
}

.faq__answer-text {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.2px;
  line-height: 1.7;
}

.contact {
  padding: 60px 0;
}

.contact__outer {
  display: flex;
  justify-content: center;
}

.contact__inner {
  background: #10BFFF;
  border-radius: 40px;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 1060px;
}

.contact__title {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  line-height: normal;
}

.contact__text {
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  line-height: normal;
}

.contact__info {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 970px;
  margin: 0 auto;
}

.contact__info-item {
  flex: 1;
  border: 1px solid #fff;
  border-radius: 60px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__info-text {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  line-height: normal;
}

.catalog-hero {
  display: flex;
  align-items: center;
  gap: 27px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 0 60px 60px;
}

.catalog-hero__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 618px;
  flex-shrink: 0;
}

.catalog-hero__title {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: normal;
}

.catalog-hero__text {
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
}

.catalog-hero__text p {
  margin-bottom: 1em;
}

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

.catalog-hero__image {
  flex: 1;
  height: 577px;
  overflow: hidden;
  border-radius: 40px 0 40px 40px;
}

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

.games {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px;
  overflow: hidden;
}

.games__ellipse {
  position: absolute;
  width: 430px;
  height: 430px;
  pointer-events: none;
}

.games__ellipse--left {
  top: 81px;
  left: -130px;
}

.games__ellipse--right {
  top: 154px;
  right: -172px;
}

.games__title {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  line-height: normal;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.games__grid {
  display: grid;
  grid-template-columns: 224px 224px 224px 1fr;
  grid-template-rows: 220px 60px 160px;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.games__card {
  border-radius: 20px;
  overflow: hidden;
  display: block;
  transition: transform 0.3s;
}

.games__card:hover {
  transform: scale(1.03);
  opacity: 1;
}

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

.game-hero {
  display: flex;
  align-items: center;
  gap: 87px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 63px 60px;
}

.game-hero__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  flex-shrink: 0;
  width: 275px;
}

.game-hero__image {
  width: 220px;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
}

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

.game-hero__play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 275px;
  height: 65px;
  background: #10BFFF;
  border-radius: 60px;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.game-hero__right {
  flex: 1;
}

.game-hero__title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 27px;
}

.game-hero__title {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: normal;
}

.game-hero__badge {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.game-hero__desc {
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
}

.game-hero__desc p {
  margin-bottom: 1em;
}

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

.game-features {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 60px;
  overflow: hidden;
}

.game-features__ellipse {
  position: absolute;
  top: 81px;
  left: -130px;
  width: 430px;
  height: 430px;
  pointer-events: none;
}

.game-features__title {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  line-height: normal;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.game-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.game-features__card {
  border: 1px solid #fff;
  border-radius: 28px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
  overflow: hidden;
  min-height: 216px;
}

.game-features__card-inner {
  width: 100%;
}

.game-features__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid #fff;
  border-radius: 60px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: normal;
  margin-bottom: 20px;
}

.game-features__card-text {
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
}

.game-features__card-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-features__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.policy__title {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  line-height: normal;
  width: 100%;
}

.policy__body {
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  width: 100%;
}

.policy__body h2 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

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

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

.policy__body ul li {
  margin-bottom: 2px;
}

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

  .policy__title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .game-hero {
    flex-direction: column;
    padding: 40px 20px;
    gap: 20px;
    align-items: flex-start;
  }

  .game-hero__left {
    width: 275px;
  }

  .game-hero__title-row {
    margin-bottom: 20px;
  }

  .game-hero__title {
    font-size: 28px;
  }

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

  .game-features__title {
    font-size: 32px;
    text-align: left;
    margin-bottom: 20px;
  }

  .game-features__grid {
    grid-template-columns: 1fr;
  }
}

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

.games__card--2 {
  grid-column: 2;
  grid-row: 1;
}

.games__card--3 {
  grid-column: 3;
  grid-row: 1;
}

.games__decor {
  grid-column: 1;
  grid-row: 2 / 4;
  width: 160px;
  height: 160px;
  align-self: end;
}

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

.games__card--4 {
  grid-column: 2;
  grid-row: 2 / 4;
  width: 224px;
  height: 220px;
  justify-self: end;
}

.games__card--5 {
  grid-column: 3;
  grid-row: 2 / 4;
  width: 224px;
  height: 220px;
}

.games__card--6 {
  grid-column: 4;
  grid-row: 2 / 4;
  width: 224px;
  height: 220px;
}

@media (max-width: 768px) {
  .catalog-hero {
    flex-direction: column-reverse;
    padding: 40px 20px;
    gap: 20px;
  }

  .catalog-hero__content {
    width: 100%;
    gap: 20px;
  }

  .catalog-hero__title {
    font-size: 32px;
  }

  .catalog-hero__image {
    width: 100%;
    height: 300px;
    border-radius: 20px;
  }

  .games {
    padding: 40px 20px;
  }

  .games__title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
  }

  .games__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 20px;
  }

  .games__decor {
    grid-column: 1 / 3;
    grid-row: auto;
    width: 160px;
    height: 160px;
    justify-self: center;
    order: -1;
  }

  .games__card--1 {
    grid-column: auto;
    grid-row: auto;
    order: 4;
  }

  .games__card--2 {
    grid-column: auto;
    grid-row: auto;
    order: 5;
  }

  .games__card--3 {
    grid-column: auto;
    grid-row: auto;
    order: 6;
  }

  .games__card--4 {
    grid-column: auto;
    grid-row: auto;
    width: auto;
    height: auto;
    justify-self: auto;
    order: 1;
  }

  .games__card--5 {
    grid-column: auto;
    grid-row: auto;
    width: auto;
    height: auto;
    order: 2;
  }

  .games__card--6 {
    grid-column: auto;
    grid-row: auto;
    width: auto;
    height: auto;
    order: 3;
  }

  .games__card {
    aspect-ratio: 224 / 220;
    height: auto;
  }
}

.footer {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
}

.footer__top,
.footer__line,
.footer__bottom {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
}

.footer__ellipse {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 430px;
  height: 430px;
  pointer-events: none;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__logo-icon {
  width: 40px;
  height: 40px;
}

.footer__logo-text {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: normal;
}

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

.footer__link {
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  line-height: normal;
}

.footer__line {
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 20px auto;
  position: relative;
  z-index: 1;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__social {
  width: 59px;
  height: 59px;
  display: block;
}

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

.footer__copyright {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  line-height: normal;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 66px;
  left: 0;
  width: 100%;
  background: #000;
  z-index: 100;
  padding: 20px;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

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

.mobile-menu a {
  font-size: 16px;
  font-weight: 400;
}

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

  .header__nav {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .header__line {
    margin: 0;
    max-width: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__vector {
    display: none;
  }

  .hero__title {
    font-size: 56px;
    letter-spacing: -2px;
    padding: 20px 0 0;
    white-space: normal;
    line-height: 0.95;
  }

  .hero__content {
    flex-direction: column;
    padding: 0 20px;
    gap: 10px;
    margin-top: 10px;
  }

  .hero__left {
    width: 100%;
    margin-top: 0;
  }

  .hero__right {
    width: 100%;
    align-items: flex-end;
  }

  .hero__slogan {
    font-size: 40px;
    text-align: left;
  }

  .hero__btn {
    margin-top: 20px;
  }

  .about {
    padding: 40px 0;
  }

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

  .about__image {
    width: 100%;
    min-width: auto;
    height: 300px;
  }

  .about__content {
    gap: 40px;
  }

  .about__title {
    font-size: 32px;
  }

  .about__text {
    font-size: 14px;
  }

  .features {
    padding: 40px 20px;
  }

  .features__title {
    font-size: 32px;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .features__card {
    min-height: 300px;
  }

  .features__card-content {
    padding: 15px 20px;
    gap: 10px;
  }

  .features__card-title {
    font-size: 16px;
  }

  .features__card-text {
    font-size: 12px;
  }

  .faq {
    padding: 40px 20px;
  }

  .faq__title {
    font-size: 32px;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .faq__question-text {
    font-size: 16px;
  }

  .faq__answer-text {
    font-size: 14px;
  }

  .contact {
    padding: 40px 0;
  }

  .contact__inner {
    width: calc(100% - 40px);
    margin: 0 20px;
    padding: 10px;
  }

  .contact__title {
    font-size: 32px;
  }

  .contact__text {
    font-size: 14px;
  }

  .contact__info {
    flex-direction: column;
    gap: 10px;
  }

  .contact__info-item {
    padding: 18px 50px;
  }

  .footer {
    padding: 40px 20px;
  }

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

  .footer__links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

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

  .footer__copyright {
    white-space: normal;
    text-align: center;
    font-size: 14px;
  }
}

/* ===========================
   Animations & Hover Effects
   =========================== */
@keyframes heroTitleIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

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

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

@keyframes slideUp {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.hero__left,
.hero__right,
.about__inner,
.features__card,
.faq__item,
.contact__inner,
.game-hero__left,
.game-hero__right,
.game-features__card,
.catalog-hero__content,
.catalog-hero__image,
.games__card,
.policy__title,
.policy__body {
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__right { animation-delay: 0.15s; }
.features__card:nth-child(2) { animation-delay: 0.1s; }
.features__card:nth-child(3) { animation-delay: 0.2s; }
.features__card:nth-child(4) { animation-delay: 0.3s; }
.faq__item:nth-child(2) { animation-delay: 0.05s; }
.faq__item:nth-child(3) { animation-delay: 0.1s; }
.faq__item:nth-child(4) { animation-delay: 0.15s; }
.faq__item:nth-child(5) { animation-delay: 0.2s; }
.games__card:nth-child(2) { animation-delay: 0.05s; }
.games__card:nth-child(3) { animation-delay: 0.1s; }
.games__card:nth-child(4) { animation-delay: 0.15s; }
.games__card:nth-child(5) { animation-delay: 0.2s; }
.games__card:nth-child(6) { animation-delay: 0.25s; }
.game-features__card:nth-child(2) { animation-delay: 0.05s; }
.game-features__card:nth-child(3) { animation-delay: 0.1s; }
.game-features__card:nth-child(4) { animation-delay: 0.15s; }
.game-features__card:nth-child(5) { animation-delay: 0.2s; }
.game-features__card:nth-child(6) { animation-delay: 0.25s; }

/* Header nav hover */
.header__nav-link,
.mobile-menu a,
.footer__link {
  position: relative;
  transition: color 0.25s ease;
}

.header__nav-link::after,
.footer__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #10BFFF;
  transition: width 0.3s ease;
}

.header__nav-link:hover,
.mobile-menu a:hover,
.footer__link:hover {
  color: #10BFFF;
  opacity: 1;
}

.header__nav-link:hover::after,
.footer__link:hover::after {
  width: 100%;
}

.header__logo,
.footer__logo {
  transition: transform 0.3s ease;
}

.header__logo:hover,
.footer__logo:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.header__logo-icon,
.footer__logo-icon {
  transition: transform 0.5s ease;
}

.header__logo:hover .header__logo-icon,
.footer__logo:hover .footer__logo-icon {
  transform: rotate(360deg);
}

/* Hero button */
.hero__btn,
.game-hero__play,
.contact__info-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.hero__btn:hover,
.game-hero__play:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(16, 191, 255, 0.45);
  opacity: 1;
}

.contact__info-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

/* Hero tags */
.hero__tag {
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  cursor: default;
}

.hero__tag:hover {
  background: #fff;
  color: #10BFFF;
  transform: translateY(-2px);
}

/* About image */
.about__image {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about__image:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(16, 191, 255, 0.25);
}

.about__image img {
  transition: transform 0.6s ease;
}

.about__image:hover img {
  transform: scale(1.08);
}

/* Features cards */
.features__card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.features__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(16, 191, 255, 0.3);
}

.features__card-bg {
  transition: transform 0.6s ease;
}

.features__card:hover .features__card-bg {
  transform: scale(1.06);
}

/* FAQ items */
.faq__item {
  transition: transform 0.25s ease;
}

.faq__question:hover .faq__question-text {
  color: #10BFFF;
}

.faq__question-text {
  transition: color 0.25s ease;
}

.faq__icon svg {
  transition: transform 0.3s ease;
}

.faq__item.active .faq__icon svg {
  transform: rotate(0deg);
}

/* Games card already has hover, add shadow */
.games__card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
}

.games__card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 15px 40px rgba(16, 191, 255, 0.35);
  opacity: 1;
}

.games__decor img {
  animation: float 4s ease-in-out infinite;
}

/* Game features card */
.game-features__card {
  transition: transform 0.4s ease, border-color 0.3s ease, box-shadow 0.4s ease;
}

.game-features__card:hover {
  transform: translateY(-6px);
  border-color: #10BFFF;
  box-shadow: 0 12px 30px rgba(16, 191, 255, 0.25);
}

.game-features__card-icon img {
  transition: transform 0.4s ease;
}

.game-features__card:hover .game-features__card-icon img {
  transform: rotate(8deg) scale(1.1);
}

/* Footer socials */
.footer__social {
  transition: transform 0.3s ease;
}

.footer__social:hover {
  transform: translateY(-4px) scale(1.08);
  opacity: 1;
}

/* Hero vector subtle float (keeps centering) */
@keyframes heroFloat {
  0%, 100% { transform: translate(-50%, -50%); }
  50%      { transform: translate(-50%, calc(-50% - 8px)); }
}

.hero__vector {
  animation: heroFloat 8s ease-in-out infinite;
}

/* Game hero image */
.game-hero__image {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.game-hero__image:hover {
  transform: scale(1.04);
  box-shadow: 0 16px 40px rgba(16, 191, 255, 0.35);
}

.game-hero__image img {
  transition: transform 0.6s ease;
}

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

/* Catalog hero image */
.catalog-hero__image {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.catalog-hero__image:hover {
  transform: scale(1.01);
  box-shadow: 0 20px 50px rgba(16, 191, 255, 0.25);
}

.catalog-hero__image img {
  transition: transform 0.7s ease;
}

.catalog-hero__image:hover img {
  transform: scale(1.06);
}

/* Burger menu */
.header__burger {
  transition: transform 0.3s ease;
}

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

.header__burger span {
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.header__burger:hover span {
  border-color: #10BFFF;
}

/* ===========================
   Cookie consent banner
   =========================== */
.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 200;
  width: calc(100% - 40px);
  max-width: 460px;
  display: none;
  pointer-events: none;
}

.cookie-banner.is-visible {
  display: block;
  pointer-events: auto;
  animation: slideUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cookie-banner__inner {
  background: #fff;
  color: #0C0C0C;
  border-radius: 32px;
  padding: 30px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.cookie-banner__title {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.cookie-banner__text {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.45;
  margin-bottom: 24px;
}

.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  background: #10BFFF;
  color: #fff;
  border: none;
  border-radius: 60px;
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  width: 100%;
}

.cookie-banner__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(16, 191, 255, 0.45);
  background: #0aa9e6;
}

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

@media (min-width: 769px) {
  .cookie-banner__actions {
    flex-direction: row;
  }
  .cookie-banner__btn {
    width: auto;
    flex: 1;
  }
}

@media (max-width: 768px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }

  .cookie-banner__inner {
    padding: 24px;
    border-radius: 24px;
  }

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

  .container,
  .hero__inner,
  .about__inner,
  .features__inner,
  .faq__inner,
  .contact__outer,
  .footer__top,
  .footer__line,
  .footer__bottom {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
