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

@font-face {
  font-family: 'Dubai';
  src: local('Dubai Light');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Dubai';
  src: local('Dubai Regular');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Dubai';
  src: local('Dubai Medium');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Dubai';
  src: local('Dubai Bold');
  font-weight: 700;
  font-style: normal;
}

:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-accent: #00cda4;
  --color-accent-light: #a1ffec;
  --color-accent-transparent: rgba(0, 205, 164, 0.58);
  --font-family: 'Dubai', 'Cairo', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--color-black);
  color: var(--color-white);
  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 {
  display: block;
  max-width: 100%;
}

.page-wrapper {
  width: 100%;
  margin: 0 auto;
  background-color: var(--color-black);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 60px;
  background-color: var(--color-black);
}

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

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

.header__logo-text {
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  text-transform: lowercase;
  color: var(--color-white);
  white-space: nowrap;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 61px;
}

.header__nav-link {
  font-size: 18px;
  font-weight: 400;
  text-transform: lowercase;
  color: var(--color-white);
}

.header__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 10px;
  background-color: var(--color-white);
  border-radius: 100px;
  font-size: 18px;
  font-weight: 400;
  text-transform: lowercase;
  color: var(--color-black);
  white-space: nowrap;
  line-height: normal;
}

.header__cta-arrow {
  width: 22px;
  height: 18px;
  transform: rotate(149deg);
  flex-shrink: 0;
}

.header__burger {
  display: none;
  position: relative;
  width: 30px;
  height: 18px;
  flex-shrink: 0;
  background-image: linear-gradient(var(--color-white), var(--color-white));
  background-size: 100% 2px;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-size 0.2s ease, opacity 0.3s ease;
}

.header__burger img {
  display: none;
}

.header__burger::before,
.header__burger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: var(--color-white);
  transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
}

.header__burger::before {
  top: 0;
}

.header__burger::after {
  bottom: 0;
}

.header__burger--active {
  background-size: 0 2px;
}

.header__burger--active::before {
  top: 8px;
  transform: rotate(45deg);
}

.header__burger--active::after {
  bottom: 8px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 60px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  max-width: 1080px;
}

.hero__title {
  font-size: 60px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--color-white);
  flex: 1;
}

.hero__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 453px;
  flex-shrink: 0;
  padding-top: 12px;
}

.hero__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  border: 1px solid var(--color-white);
  border-radius: 100px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-white);
  text-align: justify;
}

.hero__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-white);
}

.hero__character {
  position: absolute;
  right: max(147px, calc(50% - 393px));
  bottom: -14px;
  width: 120px;
  height: 120px;
  object-fit: cover;
  transform: rotate(-8.29deg);
  z-index: 2;
}

.about {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding-top: 60px;
  background-color: var(--color-black);
  overflow: hidden;
}

.about__glow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 164px;
  width: 638px;
  height: 638px;
  pointer-events: none;
}

.about__glow img {
  position: absolute;
  inset: -31.83%;
  width: calc(100% + 63.66%);
  height: calc(100% + 63.66%);
}

.about__text {
  position: relative;
  z-index: 1;
  width: 1080px;
  max-width: 100%;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-white);
}

.about__text p + p {
  margin-top: 18px;
}

.about__stats {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0;
  width: 1080px;
  max-width: 100%;
  color: var(--color-white);
}

.about__stat {
  flex: 1;
  padding-left: 10px;
  border-left: 1px solid var(--color-accent);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about__stat-number {
  font-size: 80px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.about__showcase {
  width: 100%;
  height: 434px;
  overflow: hidden;
}

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

.why {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 60px;
  background-color: var(--color-black);
  overflow: hidden;
}

.why__title,
.why__content {
  width: 100%;
  max-width: 1080px;
}

.why__title {
  font-size: 60px;
  font-weight: 500;
  line-height: 1;
  text-transform: lowercase;
  color: var(--color-white);
}

.why__title span {
  color: var(--color-accent);
}

.why__content {
  display: flex;
  flex-direction: column;
  gap: 49px;
}

.why__images {
  display: flex;
  gap: 18px;
}

.why__images img {
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
}

.why__img1 { width: 256px; }
.why__img2 { width: 350px; }
.why__img3 { width: 439px; flex: 1; }

.why__features {
  display: flex;
  gap: 80px;
  align-items: flex-end;
}

.why__features-list {
  display: flex;
  gap: 40px;
  flex: 1;
}

.why__feature {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why__feature-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.16;
  text-transform: capitalize;
  color: var(--color-white);
}

.why__feature-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-white);
}

.why__decor {
  width: 83px;
  height: 79px;
  flex-shrink: 0;
}

.quote-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 60px 166px;
  background-color: var(--color-black);
  overflow: hidden;
  position: relative;
}

.quote-section__glow-right {
  position: absolute;
  right: -142px;
  top: 61px;
  width: 283px;
  height: 283px;
  pointer-events: none;
}

.quote-section__glow-right img {
  position: absolute;
  inset: -71.77%;
  width: calc(100% + 143.54%);
  height: calc(100% + 143.54%);
}

.quote-section__glow-left {
  position: absolute;
  left: -142px;
  top: 203px;
  width: 283px;
  height: 283px;
  pointer-events: none;
}

.quote-section__glow-left img {
  position: absolute;
  inset: -71.77%;
  width: calc(100% + 143.54%);
  height: calc(100% + 143.54%);
}

.quote-section__box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1080px;
}

.quote-section__marks {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.quote-section__mark {
  width: 46px;
  height: 46px;
}

.quote-section__mark--top-right {
  transform: scaleY(-1) rotate(180deg);
}

.quote-section__mark--bottom-left {
  transform: scaleY(-1);
}

.quote-section__mark--bottom-right {
  transform: rotate(180deg);
}

.quote-section__text {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
  text-align: justify;
  color: var(--color-white);
  padding-left: 46px;
  margin: 0;
}

.quote-section__btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 40px;
  background-color: var(--color-white);
  border-radius: 100px;
  font-size: 18px;
  font-weight: 400;
  text-transform: lowercase;
  color: var(--color-black);
}

.testimonials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 60px;
  background-color: var(--color-black);
  overflow: hidden;
}

.testimonials__title,
.testimonials__grid {
  width: 100%;
  max-width: 1080px;
}

.testimonials__title {
  font-size: 60px;
  font-weight: 500;
  line-height: 1;
  text-transform: lowercase;
  color: var(--color-white);
}

.testimonials__title span {
  color: var(--color-accent);
}

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

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

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

.testimonial-card {
  width: 346px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: var(--color-accent);
}

.testimonial-card--light {
  background-color: var(--color-accent-light);
  color: var(--color-black);
}

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

.testimonial-card__avatar {
  width: 65px;
  height: 65px;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.16;
  text-transform: capitalize;
  color: var(--color-white);
}

.testimonial-card--light .testimonial-card__name {
  color: var(--color-black);
}

.testimonial-card__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.16;
  text-transform: capitalize;
  color: var(--color-white);
}

.testimonial-card--light .testimonial-card__text {
  color: var(--color-black);
}

.testimonial-card--featured {
  width: 346px;
  flex: 1;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: var(--color-accent);
}

.testimonial-card--featured .testimonial-card__photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.testimonial-card--featured .testimonial-card__name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.16;
  text-transform: capitalize;
  color: var(--color-white);
}

.testimonial-card--featured .testimonial-card__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.16;
  text-transform: capitalize;
  color: var(--color-white);
  max-width: 306px;
}

.footer {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 60px;
  background-color: var(--color-black);
  overflow: hidden;
}

.footer__glow-right {
  position: absolute;
  right: -40px;
  top: 542px;
  width: 614px;
  height: 614px;
  pointer-events: none;
}

.footer__glow-right img {
  position: absolute;
  inset: -17.05%;
  width: calc(100% + 34.1%);
  height: calc(100% + 34.1%);
}

.footer__glow-left {
  position: absolute;
  left: -113px;
  top: 0;
  width: 396px;
  height: 440px;
  pointer-events: none;
}

.footer__glow-left img {
  position: absolute;
  inset: -49.39% -54.87%;
  width: calc(100% + 109.74%);
  height: calc(100% + 98.78%);
}

.footer__watermark {
  position: absolute;
  right: max(60px, calc(50% - 480px));
  bottom: 180px;
  font-size: 120px;
  font-weight: 400;
  line-height: 0.8;
  text-transform: uppercase;
  color: var(--color-accent-transparent);
  width: 443px;
  pointer-events: none;
  opacity: 0.8;
}

.footer__contact-img {
  width: 589px;
  height: 589px;
  object-fit: contain;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 51px;
}

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

.footer__logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.footer__logo-text {
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  text-transform: lowercase;
  color: var(--color-white);
  white-space: nowrap;
}

.footer__links {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  text-transform: lowercase;
  color: var(--color-white);
}

.footer__links a {
  display: block;
}

.footer__info {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  text-transform: lowercase;
  color: var(--color-white);
}

.footer__info p {
  margin: 0;
}

.footer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 10px;
  background-color: var(--color-white);
  border-radius: 100px;
  font-size: 18px;
  font-weight: 400;
  text-transform: lowercase;
  color: var(--color-black);
  white-space: nowrap;
  line-height: normal;
}

.footer__cta-arrow {
  width: 22px;
  height: 18px;
  transform: rotate(149deg);
  flex-shrink: 0;
}

.footer__email {
  font-size: 84px;
  font-weight: 400;
  line-height: 1;
  text-transform: lowercase;
  text-align: center;
  color: var(--color-white);
  width: 100%;
}

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

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

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

.footer__copyright {
  font-size: 16px;
  font-weight: 300;
  text-transform: lowercase;
  color: var(--color-white);
}

@media (max-width: 768px) {
  .page-wrapper {
    max-width: 100%;
  }

  .header {
    padding: 10px 20px;
  }

  .header__nav {
    display: none;
  }

  .header__cta {
    display: none;
  }

  .header__burger {
    display: block;
  }

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

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

  .hero__title {
    font-size: 40px;
    width: 100%;
  }

  .hero__character {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 200px;
    object-fit: cover;
    transform: none;
    border-radius: 0;
  }

  .hero__right {
    width: 100%;
    padding-top: 0;
  }

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

  .about__text {
    width: 100%;
    padding: 0 20px;
  }

  .about__stats {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding: 0 20px;
  }

  .about__stat-number {
    font-size: 40px;
  }

  .about__stat {
    width: 100%;
  }

  .about__showcase img {
    object-fit: contain;
  }

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

  .why__title {
    font-size: 40px;
  }

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

  .why__images img {
    width: 100%;
    height: 320px;
  }

  .why__img1,
  .why__img2,
  .why__img3 {
    width: 100%;
  }

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

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

  .why__decor {
    align-self: flex-start;
  }

  .quote-section {
    padding: 40px 20px;
    gap: 20px;
  }

  .quote-section__box {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .quote-section__marks {
    display: none;
  }

  .quote-section__frame-top,
  .quote-section__frame-bottom {
    display: block;
    width: 100%;
    height: 46px;
  }

  .quote-section__frame-top img,
  .quote-section__frame-bottom img {
    width: 100%;
    height: 100%;
  }

  .quote-section__text {
    font-size: 22px;
    text-align: center;
    padding-left: 0;
  }

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

  .testimonials__title {
    font-size: 40px;
  }

  .testimonials__grid {
    flex-direction: column-reverse;
  }

  .testimonials__row {
    flex-direction: column;
  }

  .testimonial-card {
    width: 100%;
    padding: 20px;
  }

  .testimonial-card--featured {
    width: 100%;
    padding: 20px;
  }

  .testimonial-card__text {
    width: 100%;
  }

  .testimonial-card--featured .testimonial-card__text {
    max-width: 100%;
  }

  .testimonial-card--featured .testimonial-card__photo {
    height: 250px;
  }

  .why__content {
    gap: 20px;
  }

  .footer {
    padding: 20px;
  }

  .footer__contact-img {
    width: 100%;
    height: auto;
    max-width: 390px;
  }

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

  .footer__links {
    text-align: center;
  }

  .footer__info {
    text-align: center;
  }

  .footer__email {
    font-size: 30px;
  }

  .footer__watermark {
    right: auto;
    left: 50%;
    transform: translateX(-30%);
    bottom: 120px;
  }

  .footer__glow-left {
    left: -70px;
    width: 234px;
    height: 261px;
  }

  .footer__glow-right {
    right: auto;
    left: 158px;
    top: 600px;
    width: 305px;
    height: 305px;
  }

  .quote-section__glow-right {
    right: auto;
    left: 327px;
    top: 38px;
    width: 165px;
    height: 165px;
  }

  .quote-section__frame-top,
  .quote-section__frame-bottom {
    display: block;
  }
}

.hero__character-mobile {
  display: none;
}

@media (min-width: 769px) {
  .quote-section__frame-top,
  .quote-section__frame-bottom {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero__character {
    display: none;
  }

  .hero__character-mobile {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
}

.catalog-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 60px;
  background-color: var(--color-black);
  overflow: hidden;
}

.catalog-hero__title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.72;
}

.catalog-hero__title {
  font-size: 100px;
  font-weight: 700;
  text-transform: lowercase;
  text-align: center;
  white-space: nowrap;
}

.catalog-hero__title--solid {
  color: var(--color-white);
}

.catalog-hero__title--outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
}

.catalog-hero__title--green {
  -webkit-text-stroke: 1px var(--color-accent);
}

.catalog-hero__middle {
  display: flex;
  align-items: center;
  gap: 20px;
}

.catalog-hero__text {
  width: 379px;
  font-size: 18px;
  line-height: 1.4;
  text-align: right;
}

.catalog-hero__text--left {
  font-weight: 300;
  color: var(--color-white);
}

.catalog-hero__text--right {
  font-weight: 400;
  color: var(--color-accent);
}

.catalog-hero__thumbs {
  position: relative;
  width: 342px;
  height: 219px;
  flex-shrink: 0;
}

.catalog-hero__thumb {
  position: absolute;
  display: block;
  width: 100px;
  height: 100px;
  transition: transform 0.3s, z-index 0s;
}

.catalog-hero__thumb:hover {
  z-index: 10;
  opacity: 1;
  filter: brightness(1.1);
}

.catalog-hero__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.catalog-hero__bottom-text {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
  text-align: center;
  text-transform: lowercase;
  color: var(--color-white);
  width: 100%;
  max-width: 1080px;
}

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

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

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

  .catalog-hero__text {
    width: 100%;
  }

  .catalog-hero__bottom-text {
    width: 100%;
  }
}

.game-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px;
  background-color: var(--color-black);
  overflow: hidden;
}

.game-detail__title-block {
  display: flex;
  gap: 0;
  flex-shrink: 0;
  line-height: 0;
}

.game-detail__title-col {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  font-size: 100px;
  font-weight: 700;
  text-transform: lowercase;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}

.game-detail__title-col--solid {
  color: var(--color-white);
}

.game-detail__title-col--outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
  margin-left: -44px;
}

.game-detail__title-col--green {
  -webkit-text-stroke: 1px var(--color-accent);
}

.game-detail__right {
  display: flex;
  flex: 1;
  gap: 20px;
  align-items: center;
  min-width: 0;
}

.game-detail__image {
  width: 220px;
  height: 220px;
  object-fit: cover;
  flex-shrink: 0;
}

.game-detail__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
  flex: 1;
  min-width: 0;
}

.game-detail__text {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
  text-align: right;
  color: var(--color-white);
}

.game-detail__text p + p {
  margin-top: 18px;
}

.game-detail__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 40px;
  background-color: var(--color-white);
  border-radius: 100px;
  font-size: 18px;
  font-weight: 400;
  text-transform: lowercase;
  color: var(--color-black);
}

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

  .game-detail__title-block {
    writing-mode: horizontal-tb;
    flex-direction: column;
    align-items: center;
  }

  .game-detail__title-col {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 40px;
  }

  .game-detail__title-col--outline {
    margin-left: 0;
  }

  .game-detail__right {
    flex-direction: column;
    width: 100%;
  }

  .game-detail__image {
    width: 100%;
    height: 220px;
  }

  .game-detail__content {
    align-items: center;
    width: 100%;
  }

  .game-detail__text {
    text-align: center;
  }
}

.policy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 60px;
  background-color: var(--color-black);
  overflow: hidden;
  text-transform: lowercase;
}

.policy__title,
.policy__content {
  width: 100%;
  max-width: 1080px;
}

.policy__title {
  font-size: 60px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-white);
}

.policy__title span {
  color: var(--color-accent);
}

.policy__content {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--color-white);
}

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

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

.policy__content li {
  margin-bottom: 0;
}

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

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

/* ============================= */
/* Cookie consent banner         */
/* ============================= */
.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: calc(100% - 48px);
  max-width: 600px;
  padding: 40px;
  background-color: var(--color-white);
  color: var(--color-black);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

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

.cookie-banner__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  text-transform: lowercase;
  color: var(--color-black);
}

.cookie-banner__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-black);
}

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

.cookie-banner__btn {
  padding: 14px 34px;
  border: none;
  border-radius: 100px;
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 400;
  text-transform: lowercase;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.cookie-banner__btn:hover {
  transform: translateY(-2px);
  background-color: var(--color-accent);
  color: var(--color-black);
}

@media (max-width: 768px) {
  .cookie-banner {
    left: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
    gap: 16px;
    padding: 28px 24px;
  }

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

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

  .cookie-banner__btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 16px;
  }
}

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

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

.testimonial-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.why__feature.reveal:nth-child(2) { transition-delay: 0.08s; }
.why__feature.reveal:nth-child(3) { transition-delay: 0.16s; }

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

/* ============================= */
/* Hover & interaction effects   */
/* ============================= */
.header__cta,
.footer__cta {
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, opacity 0.3s ease;
}

.header__cta:hover,
.footer__cta:hover {
  transform: translateY(-2px);
  background-color: var(--color-accent);
  color: var(--color-black);
  opacity: 1;
}

.header__cta:hover .header__cta-arrow,
.footer__cta:hover .footer__cta-arrow {
  transform: rotate(149deg) translateX(2px);
}

.header__nav-link {
  position: relative;
  transition: color 0.25s ease, opacity 0.3s ease;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width 0.25s ease;
}

.header__nav-link:hover {
  color: var(--color-accent);
  opacity: 1;
}

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

.hero__btn,
.quote-section__btn,
.game-detail__btn {
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.3s ease;
}

.hero__btn:hover {
  background-color: var(--color-white);
  color: var(--color-black);
  transform: translateY(-2px);
  opacity: 1;
}

.quote-section__btn:hover,
.game-detail__btn:hover {
  background-color: var(--color-accent);
  color: var(--color-black);
  transform: translateY(-2px);
  opacity: 1;
}

.why__images img {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why__images img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 205, 164, 0.25);
}

.game-detail__image,
.testimonial-card--featured .testimonial-card__photo {
  transition: transform 0.35s ease;
}

.game-detail__image:hover,
.testimonial-card--featured .testimonial-card__photo:hover {
  transform: scale(1.03);
}

.testimonial-card,
.testimonial-card--featured {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover,
.testimonial-card--featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.footer__social-icon {
  transition: transform 0.25s ease;
}

.footer__social-link:hover .footer__social-icon {
  transform: translateY(-3px) scale(1.1);
}

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

.header__logo:hover,
.footer__logo:hover {
  transform: scale(1.03);
  opacity: 1;
}

/* Mobile nav dropdown */
@media (max-width: 768px) {
  .header {
    position: relative;
    flex-wrap: wrap;
    row-gap: 4px;
  }

  .header__logo {
    order: 1;
  }

  .header__burger {
    order: 2;
  }

  .header__nav {
    order: 3;
  }

  .header__nav--open {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 16px 0 8px;
  }
}
