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

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

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  background-color: #00161c;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #00d9ff;
  color: #00161c;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 22px 40px;
  border-radius: 10px;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.2s;
  max-width: 170px;
}

.btn:hover {
  opacity: 0.85;
}

.section-title {
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
}

.section-title .accent {
  color: #00d9ff;
}

.section-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.7);
}

.stars {
  display: flex;
  align-items: center;
  gap: 3px;
  width: 115px;
  height: 20px;
}

.stars img {
  width: 18px;
  height: 20px;
  object-fit: contain;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  overflow: hidden;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.card-icon {
  width: 29px;
  height: 29px;
  flex-shrink: 0;
}

.card-title {
  font-size: 26px;
  font-weight: 600;
  color: #00d9ff;
  line-height: 1.2;
  text-align: center;
}

.card-body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  overflow: hidden;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.review-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.review-name {
  font-size: 26px;
  font-weight: 600;
  color: #00d9ff;
  line-height: 1.2;
  text-align: center;
}

.review-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

header {
  position: relative;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo img {
  width: 30px;
  height: 30px;
}

.logo-text {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

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

nav a {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  white-space: nowrap;
  transition: color 0.2s;
}

nav a:hover {
  color: #00d9ff;
}

.hero-section {
  position: relative;
  min-height: 933px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
  margin-top: 30px;
}

.hero-center {
  max-width: 996px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 100%;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 34px;
  font-weight: 600;
  color: #00d9ff;
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.2;
}

.hero-text-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.hero-title {
  font-size: 80px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  color: #ffffff;
  width: 100%;
}

.hero-title .accent {
  color: #00d9ff;
}

.hero-description {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  width: 100%;
}

.hero-image {
  width: 100%;
  height: 340px;
  border-radius: 40px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.strengths-section {
  padding: 60px 0;
}

.strengths-inner {
  max-width: 996px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.strengths-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: left;
}

.strengths-cards {
  display: flex;
  gap: 20px;
  width: 100%;
}

.strengths-cards .card {
  flex: 1;
}

.strengths-image {
  width: 100%;
  height: 300px;
  border-radius: 30px;
  overflow: hidden;
}

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

.catalog-section {
  position: relative;
  padding: 60px 0;
}

.catalog-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.catalog-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.catalog-inner {
  position: relative;
  z-index: 1;
  max-width: 996px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.catalog-header {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  text-align: center;
  width: 100%;
}

.catalog-text-block p + p {
  margin-top: 16px;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 220px);
  gap: 20px;
  width: 700px;
}

.game-thumb {
  width: 220px;
  height: 220px;
  border-radius: 34px;
  overflow: hidden;
}

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

.reviews-section {
  padding: 60px 0;
}

.reviews-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-end;
  width: 100%;
}

.reviews-title {
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  width: 100%;
  text-align: left;
}

.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.reviews-row {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.reviews-row .review-card {
  flex: 1;
}

.contact-section {
  position: relative;
  padding: 60px 0;
}

.contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  transform: scaleY(-1);
}

.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.contact-inner .contact-text-block {
  width: 100%;
  max-width: 890px;
  text-align: center;
}

.contact-text-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: left;
}

.contact-heading {
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-details-bold {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.contact-image {
  width: 100%;
  height: 300px;
  border-radius: 30px;
  overflow: hidden;
}

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

footer {
  padding: 40px 0 40px;
}

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

.footer-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  white-space: nowrap;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #00d9ff;
}

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

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

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

.footer-copy {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

.page-header {
  background-color: #00161c;
  position: relative;
  z-index: 10;
}

a.game-thumb {
  display: block;
  position: relative;
  transition: transform 0.2s;
}

.game-thumb-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00d9ff;
  color: #00161c;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 16px;
  border-radius: 34px;
  opacity: 0;
  transition: opacity 0.2s;
}

a.game-thumb:hover .game-thumb-label {
  opacity: 1;
}

a.game-thumb:hover {
  transform: scale(1.04);
}

.policy-section {
  padding: 60px 0;
}

.policy-inner {
  max-width: 1098px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.policy-title {
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  color: #00d9ff;
}

.policy-body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.7);
}

.policy-body p + p {
  margin-top: 16px;
}

.game-hero-section {
  position: relative;
  padding: 60px 0;
}

.hero-bg,
.catalog-bg,
.contact-bg,
.game-hero-bg {
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
}

.game-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.game-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.game-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 996px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.game-title {
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  color: #00d9ff;
}

.game-thumbnail {
  width: 220px;
  height: 220px;
  border-radius: 34px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.game-body-section {
  padding: 60px 0;
}

.game-body-inner {

  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 30px;

}

.game-subtitle {
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  width: 100%;
}

.game-scene {
  width: 100%;
  max-width: 754px;
  height: 340px;
  border-radius: 30px;
  overflow: hidden;
}

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

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

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 0;
  }

  nav {
    gap: 20px;
  }

  nav a {
    font-size: 14px;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-content {
    margin-top: 20px;
  }

  .hero-stats {
    gap: 20px;
    flex-wrap: nowrap;
  }

  .hero-stat-number {
    font-size: 34px;
  }

  .hero-text-block {
    max-width: 100%;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-image {
    max-width: 100%;
    height: 340px;
    border-radius: 40px;
    margin-top: 0;
  }

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

  .strengths-section {
    padding: 40px 0;
  }

  .strengths-inner {
    max-width: 100%;
  }

  .strengths-header {
    text-align: left;
  }

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

  .strengths-cards .card {
    width: 100%;
  }

  .catalog-section {
    padding: 40px 0;
  }

  .catalog-inner {
    max-width: 100%;
  }

  .game-grid {
    grid-template-columns: repeat(2, 157px);
    gap: 15px;
    width: auto;
  }

  .game-thumb {
    width: 157px;
    height: 157px;
  }

  .reviews-section {
    padding: 40px 0;
  }

  .reviews-title {
    font-size: 38px;
  }

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

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

  .contact-bg {
    width: 100%;
  }

  .contact-inner {
    max-width: 100%;
  }

  .contact-heading {
    font-size: 38px;
  }

  .contact-details-bold {
    font-size: 20px;
  }

  footer {
    padding: 30px 0;
  }

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

  .footer-copy {
    white-space: normal;
  }

  .policy-section {
    padding: 40px 0;
  }

  .policy-title {
    font-size: 38px;
  }

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


  .game-title {
    font-size: 38px;
  }

  .game-thumbnail {
    width: 157px;
    height: 157px;
  }

  .game-body-section {
    padding: 40px 0;
  }

  .game-subtitle {
    font-size: 38px;
  }

  .game-scene {
    height: 149px;
  }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: 100%;
  max-width: 480px;
  padding: 0 16px;
}

.cookie-banner-inner {
  background-color: #0d1f27;
  border: 2px solid #00d9ff;
  border-radius: 20px;
  padding: 28px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cookie-banner-img {
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
}

.cookie-banner-title {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.cookie-banner-text {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 20px;
}

.cookie-btn {
  width: 100%;
  padding: 18px 24px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}

.cookie-btn:hover {
  opacity: 0.85;
}

.cookie-btn-allow {
  background-color: #00d9ff;
  color: #00161c;
  margin-bottom: 12px;
}

.cookie-btn-decline {
  background-color: transparent;
  color: #00d9ff;
  border: 2px solid #00d9ff;
}

/* ===================== ANIMATIONS ===================== */

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

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

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

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

/* Scroll-reveal base */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Hero entrance */
.hero-stats {
  animation: fadeInDown 0.7s ease both;
}

.hero-text-block {
  animation: fadeInUp 0.7s ease 0.15s both;
}

.hero-image {
  animation: scaleIn 0.8s ease 0.25s both;
}

/* Button hover */
.btn {
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 217, 255, 0.35);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Card hover */
.card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 217, 255, 0.12);
  border-color: rgba(0, 217, 255, 0.5);
}

/* Review card hover */
.review-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0, 217, 255, 0.1);
  border-color: rgba(0, 217, 255, 0.4);
}

/* Logo hover */
.logo {
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.8;
}

/* Footer nav links */
.footer-nav a {
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

.footer-nav a:hover {
  transform: translateY(-1px);
}

/* Social icons hover */
.footer-socials a {
  transition: transform 0.2s, opacity 0.2s;
  display: inline-block;
}

.footer-socials a:hover {
  transform: scale(1.2);
  opacity: 0.8;
}

/* Game thumb pulse on hover (icon) */
.card-icon {
  transition: transform 0.3s ease;
}

.card:hover .card-icon {
  transform: scale(1.15) rotate(-5deg);
}
