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

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

html {
  scroll-behavior: smooth;
}

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

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

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

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 16px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.logo span {
  font-weight: 700;
  font-size: 30px;
  line-height: 17px;
  white-space: nowrap;
}

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

.nav-links a {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  padding: 8px 13px;
  border-radius: 83px;
  white-space: nowrap;
  transition: background 0.3s;
}

.nav-links a.active {
  background: #BA080B;
  font-weight: 500;
  border-radius: 7px;
  padding: 8px 20px;
}

.burger-menu {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 9px;
  margin-left: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.burger-menu:hover {
  background: rgba(186, 8, 11, 0.25);
}

.burger-menu:active {
  transform: scale(0.92);
}

.burger-menu img {
  width: 26px;
  height: 11px;
}

.hero {
  position: relative;
  background: #000;
  overflow: hidden;
  padding-top: 131px;
  padding-bottom: 0;
  min-height: 837px;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

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

.hero-title {
  font-weight: 700;
  font-size: 60px;
  line-height: 1.1;
  letter-spacing: -0.6px;
  background: linear-gradient(to left, #fff, #DA4345);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: #929292;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: #BA080B;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 17px;
  padding: 14px 40px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s;
  margin-bottom: 20px;
}

.btn-primary:hover {
  background: #9a0709;
}

.btn-primary img {
  width: 20px;
  height: 20px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #BA080B;
  color: #ddd;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.4px;
  padding: 14px 40px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s;
  max-width: 200px;
}

.btn-secondary:hover {
  background: #9a0709;
}

.hero-image-container {
  position: relative;
  width: 1200px;
  max-width: 100%;
  height: 420px;
  margin: 0 auto;
  margin-top: auto;
}

.hero-image-container .hero-bg-text {
  position: absolute;
  font-family: 'Tomorrow', sans-serif;
  font-weight: 600;
  font-size: 180px;
  color: rgba(217, 217, 217, 0.12);
  letter-spacing: -14.4px;
  white-space: nowrap;
  top: 169px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-ellipse-bottom {
  position: absolute;
  width: 625px;
  height: 32px;
  left: 50%;
  transform: translateX(-50%);
  top: 245px;
  pointer-events: none;
}

.hero-ellipse-bottom img {
  position: absolute;
  inset: -83.33% -4.27%;
  width: 108.54%;
  height: 266.66%;
}

.hero-ellipse-left {
  position: absolute;
  width: 393px;
  height: 393px;
  left: calc(50% - 202px);
  top: 26px;
  pointer-events: none;
}

.hero-ellipse-left img {
  position: absolute;
  inset: -16.97%;
  width: 133.94%;
  height: 133.94%;
}

.hero-ellipse-right {
  position: absolute;
  width: 133px;
  height: 393px;
  left: calc(50% + 228px);
  top: 183px;
  pointer-events: none;
}

.hero-ellipse-right img {
  position: absolute;
  inset: -16.97% -50.01%;
  width: 200.02%;
  height: 133.94%;
}

.hero-main-image {
  position: absolute;
  width: 576px;
  height: 420px;
  left: 50%;
  transform: translateX(calc(-50% - 6px));
  top: 0;
  z-index: 5;
}

.hero-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-ellipse-top {
  position: absolute;
  width: 1201px;
  height: 637px;
  left: 50%;
  transform: translateX(calc(-50% - 6px));
  top: -500px;
  pointer-events: none;
}

.hero-ellipse-top img {
  position: absolute;
  inset: -13.09% -6.94%;
  width: 113.88%;
  height: 126.18%;
}

.section-games {
  position: relative;
  padding: 60px;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(36,3,3,1) 0%, rgba(18,1,2,1) 50%, rgba(0,0,0,1) 100%);
}

.section-games .section-title {
  font-weight: 700;
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
}

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

.game-card {
  background: linear-gradient(to bottom, rgba(70,8,9,0.6), rgba(24,2,2,0.6));
  border: 0.833px solid rgba(186,8,11,0.4);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 3px 17px rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.game-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.game-card-header img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  flex-shrink: 0;
}

.game-card-header span {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.48px;
  color: #fff;
}

.game-card p {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.4px;
  color: #929292;
}

.section-arcade {
  background: #000;
  padding: 60px;
  display: flex;
  align-items: center;
  gap: 50px;
  overflow: hidden;
}

.section-arcade .arcade-image {
  width: 385px;
  flex-shrink: 0;
  align-self: stretch;
}

.section-arcade .arcade-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-arcade .arcade-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-arcade .arcade-content h2 {
  font-weight: 700;
  font-size: 42px;
}

.section-arcade .arcade-content .text-block {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.4px;
  color: #929292;
  white-space: pre-wrap;
}

.section-benefits {
  background: #000;
  padding: 60px;
  overflow: hidden;
}

.section-benefits .section-title {
  font-weight: 700;
  font-size: 42px;
  text-align: center;
  margin-bottom: 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 17px;
  align-items: center;
  justify-items: center;
}

.benefit-card {
  background: linear-gradient(to right, rgba(38,0,1,0.8), rgba(66,0,1,0.8));
  border: 0.833px solid #610002;
  border-radius: 10px;
  padding: 20px;
  width: 458px;
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.benefit-card--upgrade {
  grid-row: 1;
  grid-column: 1;
}

.benefit-divider--1 {
  grid-row: 1;
  grid-column: 2;
}

.benefit-card--maps {
  grid-row: 1;
  grid-column: 3;
}

.benefit-middle {
  grid-row: 2;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 47px;
}

.benefit-card--short {
  grid-row: 3;
  grid-column: 1;
}

.benefit-divider--2 {
  grid-row: 3;
  grid-column: 2;
}

.benefit-card--style {
  grid-row: 3;
  grid-column: 3;
}

.benefit-mobile-image {
  display: none;
}

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

.benefit-card-title span {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.4px;
  color: #fff;
}

.benefit-card-title img {
  width: 38px;
  height: 38px;
}

.benefit-card p {
  font-weight: 400;
  font-size: 18px;
  color: #929292;
  line-height: 1.5;
}

.benefit-divider {
  width: 2px;
  height: 140px;
  flex-shrink: 0;
}

.benefit-divider img {
  width: 100%;
  height: 100%;
}

.benefit-info-svg {
  width: 285px;
  height: 145px;
  flex-shrink: 0;
}

.benefit-info-svg img {
  width: 100%;
  height: 100%;
}

.benefit-center-image {
  width: 83px;
  height: 83px;
  flex-shrink: 0;
}

.benefit-center-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.section-gear {
  background: #000;
  padding: 60px;
  display: flex;
  align-items: center;
  gap: 50px;
  overflow: hidden;
}

.section-gear .gear-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-gear .gear-content h2 {
  font-weight: 700;
  font-size: 42px;
}

.section-gear .gear-content .text-block {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.4px;
  color: #929292;
  white-space: pre-wrap;
}

.section-gear .gear-image {
  flex: 1;
  align-self: stretch;
}

.section-gear .gear-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-contact {
  background: linear-gradient(to bottom, rgb(77,0,1), rgb(0,0,0));
  padding: 60px;
  overflow: hidden;
}

.contact-card {
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  box-shadow: 0 1px 50px rgba(255,255,255,0.25);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}

.contact-card h2 {
  font-weight: 700;
  font-size: 42px;
  text-align: center;
  letter-spacing: -0.84px;
}

.contact-card p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: -0.36px;
  color: #929292;
}

.footer {
  background: linear-gradient(to right, #000, #460203);
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  overflow: hidden;
}

.footer-contacts {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  color: #fff;
}

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

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

.footer-socials a {
  display: flex;
  width: 40px;
  height: 40px;
  overflow: hidden;
}

.footer-socials a img {
  width: 100%;
  height: 100%;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 40px;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
}

.footer-links a {
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom .footer-line {
  width: 100%;
  height: 1px;
  border: none;
  background: #fff;
  opacity: 0.3;
}

.footer-bottom .copyright {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #fff;
}

.page-inner .header {
  position: relative;
  background: #000;
  padding: 16px 60px;
}

.catalog-hero {
  background: #000;
  padding: 60px;
  display: flex;
  align-items: center;
  gap: 50px;
  overflow: hidden;
}

.catalog-hero-text {
  width: 530px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.catalog-hero-text h1 {
  font-weight: 700;
  font-size: 42px;
}

.catalog-hero-text .text-block {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.4px;
  color: #929292;
  white-space: pre-wrap;
}

.catalog-grid {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.catalog-grid-row {
  display: flex;
  gap: 20px;
}

.catalog-grid-row a {
  flex: 1;
  aspect-ratio: 1;
  min-width: 0;
  display: block;
  overflow: hidden;
}

.catalog-grid-row a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.catalog-grid-row a:hover img {
  transform: scale(1.05);
}

.catalog-features {
  background: #000;
  padding: 60px;
  overflow: hidden;
}

.catalog-features-row {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.feature-card {
  width: 520px;
  border: 0.833px solid #411c1d;
  border-radius: 10px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 33px;
  background: linear-gradient(202deg, rgba(111,0,2,0.6) 7%, rgb(0,0,0) 72%);

}

.feature-icon {
  background: linear-gradient(to bottom, #A90003, #3D0001);
  border-radius: 83px;
  padding: 17px;
  display: flex;
  align-items: center;
  filter: drop-shadow(0 1px 4px rgba(255,255,255,0.25));
}

.feature-icon img {
  width: 33px;
  height: 33px;
}

.feature-card p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: -0.36px;
  color: #929292;
}

.game-detail {
  background: radial-gradient(ellipse at center, rgba(36,3,3,1) 0%, rgba(18,1,2,1) 50%, rgba(0,0,0,1) 100%);
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  overflow: hidden;
}

.game-detail .section-title {
  font-weight: 700;
  font-size: 42px;
  text-align: center;
}

.game-main-card {
  background: linear-gradient(to bottom, rgba(70,8,9,0.6), rgba(24,2,2,0.6));
  border: 0.833px solid rgba(186,8,11,0.4);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 3px 17px rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.game-main-card .game-banner {
  width: 600px;
  max-width: 100%;
  height: 240px;
  object-fit: cover;
}

.game-main-card .game-description {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: -0.4px;
  color: #929292;
}

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

.policy-section {
  background: linear-gradient(to bottom, rgb(77,0,1), rgb(0,0,0));
  padding: 60px;
  overflow: hidden;
}

.policy-card {
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  box-shadow: 0 1px 50px rgba(255,255,255,0.25);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1080px;
}

.policy-card h1 {
  font-weight: 700;
  font-size: 42px;
  text-align: center;
  letter-spacing: -0.84px;
}

.policy-card .policy-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.36px;
  color: #929292;
}

.policy-card .policy-text p {
  margin-bottom: 20px;
}

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

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

  .policy-card {
    padding: 20px;
  }

  .policy-card h1 {
    font-size: 32px;
    letter-spacing: -0.64px;
  }
}

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

  .game-detail .section-title {
    font-size: 32px;
  }

  .game-main-card .game-banner {
    width: 100%;
    height: auto;
    aspect-ratio: 600 / 240;
  }
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at top, rgba(36,3,3,0.98) 0%, rgba(0,0,0,0.98) 70%);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 96px 24px 40px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav.active {
  display: flex;
  animation: navFade 0.3s ease forwards;
}

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

.mobile-nav a {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}

.mobile-nav a:hover,
.mobile-nav a:active {
  background: #BA080B;
  transform: translateY(-2px);
}

.mobile-nav .close-menu {
  position: absolute;
  top: 18px;
  right: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 36px;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  transition: background 0.25s, transform 0.25s;
}

.mobile-nav .close-menu:hover {
  background: rgba(186, 8, 11, 0.3);
  transform: rotate(90deg);
}

body.nav-open {
  overflow: hidden;
}

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

  .logo span {
    font-size: 22px;
  }

  .nav-links {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .hero {
    padding-top: 80px;
    padding-bottom: 40px;
    min-height: auto;
  }

  .hero-content {
    padding: 0 20px;
    gap: 20px;
  }

  .hero-title {
    font-size: 40px;
    letter-spacing: -0.4px;
  }

  .hero-image-container {
    width: 390px;
    max-width: 100%;
    height: 301px;
    margin-top: 20px;
  }

  .hero-image-container .hero-bg-text {
    font-size: 60px;
    letter-spacing: -4.8px;
    top: 123px;
  }

  .hero-ellipse-bottom {
    width: 391px;
    top: 174px;
  }

  .hero-ellipse-left {
    width: 281px;
    height: 281px;
    left: 54px;
    top: -58px;
  }

  .hero-ellipse-left img {
    inset: -23.72%;
    width: 147.44%;
    height: 147.44%;
  }

  .hero-ellipse-right {
    width: 95px;
    height: 282px;
    left: 147px;
    top: 54px;
  }

  .hero-ellipse-right img {
    inset: -23.64% -70.18%;
    width: 240.36%;
    height: 147.28%;
  }

  .hero-main-image {
    width: 390px;
    max-width: 100%;
    height: 301px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .hero-ellipse-top {
    width: 430px;
    height: 235px;
    top: -141px;
    left: 50%;
    transform: translateX(calc(-50% - 12px));
  }

  .hero-ellipse-top img {
    inset: -35.46% -19.38%;
    width: 138.76%;
    height: 170.92%;
  }

  .section-games {
    padding: 40px 20px;
  }

  .section-games .section-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .section-arcade {
    padding: 40px 20px;
    flex-direction: column;
    gap: 20px;
  }

  .section-arcade .arcade-image {
    width: 100%;
    height: 368px;
    flex-shrink: 0;
  }

  .section-arcade .arcade-content h2 {
    font-size: 32px;
  }

  .section-benefits {
    padding: 40px 20px;
  }

  .section-benefits .section-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

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

  .benefit-card {
    width: 100%;
    gap: 10px;
  }

  .benefit-card--short {
    order: 1;
  }

  .benefit-card--style {
    order: 2;
  }

  .benefit-mobile-image {
    display: block;
    order: 3;
    width: 100%;
    height: 140px;
  }

  .benefit-mobile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .benefit-card--upgrade {
    order: 4;
  }

  .benefit-card--maps {
    order: 5;
  }

  .benefit-divider {
    display: none;
  }

  .benefit-middle {
    display: none;
  }

  .section-gear {
    padding: 40px 20px;
    flex-direction: column;
    gap: 20px;
  }

  .section-gear .gear-image {
    width: 100%;
    height: 200px;
    order: -1;
    overflow: hidden;
  }

  .section-gear .gear-image img {
    object-position: center 30%;
  }

  .section-gear .gear-content h2 {
    font-size: 32px;
  }

  .section-contact {
    padding: 40px 20px;
  }

  .contact-card {
    padding: 20px;
  }

  .contact-card h2 {
    font-size: 32px;
    letter-spacing: -0.64px;
  }

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

  .footer-contacts {
    text-align: center;
  }

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

  .footer-links {
    width: 100%;
    justify-content: space-between;
  }

  .page-inner .header {
    padding: 10px 20px;
  }

  .catalog-hero {
    padding: 40px 20px;
    flex-direction: column;
    gap: 20px;
  }

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

  .catalog-hero-text h1 {
    font-size: 32px;
  }

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

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

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

.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 28px 24px;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.cookie-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.cookie-banner {
  width: 100%;
  max-width: 1180px;
  background: #BA080B;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  padding: 32px 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  transform: translateY(-24px);
  transition: transform 0.35s ease;
}

.cookie-overlay.is-visible .cookie-banner {
  transform: translateY(0);
}

.cookie-title {
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.5px;
  color: #fff;
}

.cookie-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  color: #fff;
  max-width: 1000px;
}

.cookie-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 4px;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 15px 32px;
  background: #fff;
  color: #1a1a1a;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 18px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.cookie-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

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

@media (max-width: 768px) {
  .cookie-overlay {
    align-items: center;
    justify-content: flex-start;
    padding: 24px;
  }

  .cookie-banner {
    max-width: 360px;
    border-radius: 20px;
    padding: 28px 24px 32px;
    gap: 18px;
  }

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

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

  .cookie-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .cookie-btn {
    width: 100%;
    min-width: 0;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

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

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

.btn-primary {
  transition: background 0.3s, transform 0.25s, box-shadow 0.25s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(186, 8, 11, 0.45);
}

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

.btn-primary img {
  transition: transform 0.25s;
}

.btn-primary:hover img {
  transform: translateX(4px);
}

.btn-secondary {
  transition: background 0.3s, transform 0.25s, box-shadow 0.25s;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(186, 8, 11, 0.45);
}

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

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

.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(186, 8, 11, 0.9);
  box-shadow: 0 14px 34px rgba(186, 8, 11, 0.3);
}

.game-card-header img {
  transition: transform 0.3s ease;
}

.game-card:hover .game-card-header img {
  transform: scale(1.06);
}

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

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: #BA080B;
  box-shadow: 0 14px 34px rgba(186, 8, 11, 0.25);
}

.benefit-card-title img {
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-card-title img {
  transform: translate(3px, -3px);
}

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

.feature-card:hover {
  transform: translateY(-6px);
  border-color: #BA080B;
  box-shadow: 0 14px 34px rgba(186, 8, 11, 0.25);
}

.feature-card:hover .feature-icon {
  transform: scale(1.05);
}

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

.logo img {
  transition: transform 0.4s ease;
}

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

.nav-links a:not(.active):hover {
  background: rgba(186, 8, 11, 0.25);
}

.footer-socials a {
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer-socials a:hover {
  transform: translateY(-3px);
  opacity: 0.85;
}

.game-main-card {
  transition: box-shadow 0.3s ease;
}

.game-main-card:hover {
  box-shadow: 0 10px 40px rgba(186, 8, 11, 0.3);
}

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

.game-main-card:hover .game-banner {
  transform: scale(1.02);
}
