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

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #080a09;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.font-blinker {
  font-family: 'Blinker', sans-serif;
}

.site-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-inner {
  width: 100%;
  padding: 0 42px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 32px;
  border-radius: 12px;
  background: linear-gradient(to bottom, #c634e9, #ff00e1);
  filter: drop-shadow(0px 4px 4px rgba(255, 0, 225, 0.8));
  box-shadow: inset 0px 6px 8px 0px rgba(255, 255, 255, 0.8);
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  text-transform: capitalize;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover {
  filter: drop-shadow(0px 6px 10px rgba(255, 0, 225, 1)) brightness(1.1);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 32px;
  border-radius: 12px;
  background: #080a09;
  border: 2px solid #442f5d;
  box-shadow: 0 0 12px rgba(255, 0, 225, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.1);
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  text-transform: capitalize;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.btn-secondary:hover {
  box-shadow: 0 0 20px rgba(255, 0, 225, 0.55), inset 0 2px 4px rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.site-header {
  background-color: #000012;
  width: 100%;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.logo-text {
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
  position: relative;
  transition: opacity 0.2s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, #c634e9, #ff00e1);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.menu-toggle img {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background-color: #000012;
  z-index: 1000;
  flex-direction: column;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  flex-shrink: 0;
}

.mobile-menu-close {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-menu-close:hover {
  opacity: 0.7;
  transform: rotate(90deg);
}

.mobile-menu-close img {
  width: 24px;
  height: 24px;
}

.mobile-menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 96px;
}

.mobile-menu-nav a {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.mobile-menu-nav a:hover {
  opacity: 0.75;
}

.mobile-menu-footer {
  padding: 12px;
  padding-bottom: 32px;
  display: flex;
  justify-content: center;
}

.mobile-menu-footer .btn-primary {
  width: 100%;
  max-width: 406px;
}

.hero-section {
  background-color: #1d0d34;
  width: 100%;
}

.hero-section .section-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  justify-content: center;
  padding-top: 96px;
  padding-bottom: 96px;
}

.hero-content {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  animation: fadeInUp 0.6s ease both;
}

.hero-image {
  animation: fadeInUp 0.6s 0.15s ease both;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  text-transform: capitalize;
  color: #ffffff;
  line-height: 1;
  width: 100%;
}

.hero-desc {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  width: 100%;
}

.hero-image {
  flex: 1 0 0;
  min-width: 0;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.review-desk-section {
  background-color: #0a0126;
  width: 100%;
}

.review-desk-section .section-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 96px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  text-align: center;
}

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

.section-title {
  font-size: 48px;
  font-weight: 700;
  text-transform: capitalize;
  color: #ffffff;
  line-height: 1.1;
  width: 100%;
}

.section-desc {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  width: 100%;
}

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

.cards-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
  width: 100%;
}

.card {
  flex: 1 0 0;
  min-width: 0;
  background-color: #1d0d34;
  border: 1px solid #442f5d;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(198, 52, 233, 0.2);
}

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

.card-icon-wrap {
  width: 60px;
  height: 60px;
  position: relative;
  flex-shrink: 0;
  overflow: visible;
}

.card-icon-wrap img {
  position: absolute;
  top: -6.67%;
  right: -13.33%;
  bottom: -20%;
  left: -13.33%;
  width: calc(100% + 26.66%);
  height: calc(100% + 26.67%);
  max-width: none;
  display: block;
}

.card-icon-btn {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(to bottom, #c634e9, #ff00e1);
  filter: drop-shadow(0px 4px 4px rgba(255, 0, 225, 0.8));
  box-shadow: inset 0px 6px 8px 0px rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon-btn img {
  width: 40px;
  height: 40px;
}

.card-title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
  text-align: center;
  width: 100%;
}

.card-desc {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  text-align: center;
  width: 100%;
}

.who-section {
  background-color: #1d0d34;
  width: 100%;
}

.who-section .section-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  justify-content: center;
  padding-top: 96px;
  padding-bottom: 96px;
}

.who-image {
  flex: 1 0 0;
  min-width: 0;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.who-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.who-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  width: 546px;
  flex-shrink: 0;
  color: #ffffff;
}

.who-content .section-title {
  text-align: left;
}

.who-content .section-desc {
  text-align: left;
}

.why-section {
  background-color: #0a0126;
  width: 100%;
}

.why-section .section-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 96px;
}

.why-closing {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  text-align: center;
  width: 100%;
}

.testimonials-section {
  background-color: #1d0d34;
  width: 100%;
}

.testimonials-section .section-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 96px;
}

.testimonial-card {
  flex: 1 0 0;
  min-width: 0;
  background-color: #0a0126;
  border: 1px solid #442f5d;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(198, 52, 233, 0.2);
}

.testimonial-author {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.testimonial-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.testimonial-stars {
  width: 100px;
  height: 20px;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  white-space: nowrap;
}

.testimonial-quote {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  width: 100%;
}

.site-footer {
  background-color: #000012;
  width: 100%;
}

.site-footer .section-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 42px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-links a {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

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

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.footer-contact-item {
  display: flex;
  gap: 6px;
  align-items: center;
}

.footer-contact-item img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  white-space: nowrap;
}

.footer-contact-item.has-multiline {
  align-items: flex-start;
}

.footer-contact-item.has-multiline span {
  white-space: normal;
  max-width: 320px;
}

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

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social a:hover {
  transform: scale(1.2);
  opacity: 0.85;
}

.footer-social img {
  width: 24px;
  height: 24px;
}

.footer-copy {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}

.catalog-section {
  background-color: #0a0126;
  width: 100%;
}

.catalog-section .section-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 96px;
  padding-bottom: 96px;
}

.catalog-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.game-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: flex-start;
}

.game-cards-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.game-card {
  background-color: #1d0d34;
  border: 1px solid #442f5d;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 356px;
  flex-shrink: 0;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(198, 52, 233, 0.25);
}

.game-card-image {
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.game-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.game-card-title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  width: 100%;
  line-height: 1;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-info-section {
  background-color: #0a0126;
  width: 100%;
}

.catalog-info-section .section-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 96px;
  padding-bottom: 96px;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.info-block-title {
  font-size: 48px;
  font-weight: 700;
  text-transform: capitalize;
  color: #ffffff;
  line-height: 1.1;
}

.info-block-desc {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
}

.policy-section {
  background-color: #0a0126;
  width: 100%;
}

.policy-section .section-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 96px;
  padding-bottom: 96px;
}

.policy-title {
  font-size: 48px;
  font-weight: 700;
  text-transform: capitalize;
  color: #ffffff;
  line-height: 1.1;
  width: 100%;
}

.policy-body {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  width: 100%;
}

.policy-body p {
  margin-bottom: 12px;
}

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

.policy-body ul {
  list-style: disc;
  padding-left: 27px;
  margin-bottom: 12px;
}

.policy-body li {
  line-height: 1.4;
  margin-bottom: 4px;
}

.policy-body li:last-child {
  margin-bottom: 0;
}

.policy-body a {
  color: #ffffff;
  text-decoration: underline;
}

.game-detail-section {
  background-color: #0a0126;
  width: 100%;
}

.game-detail-section .section-inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-top: 96px;
  padding-bottom: 96px;
}

.game-detail-card {
  width: 546px;
  flex-shrink: 0;
  background-color: #1d0d34;
  border: 1px solid #442f5d;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.game-detail-image {
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.game-detail-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.game-detail-card .btn-primary {
  width: 100%;
}

.game-detail-content {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.game-detail-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  color: #ffffff;
}

.game-detail-title {
  font-size: 48px;
  font-weight: 700;
  text-transform: capitalize;
  color: #ffffff;
  line-height: 1.1;
  width: 100%;
}

.game-detail-desc {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  width: 100%;
}

/* === Animations === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Cookie Banner === */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 48px));
  width: calc(100% - 48px);
  max-width: 1200px;
  z-index: 800;
  background: #000012;
  border-radius: 16px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.cookie-banner.is-visible {
  transform: translateX(-50%) translateY(0);
}

.cookie-banner-text-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}

.cookie-banner-desc {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
}

.cookie-banner-actions {
  display: flex;
  gap: 24px;
  align-items: center;
}

@media (max-width: 768px) {
  .site-header .section-inner {
    padding: 12px;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .section-inner {
    padding: 0 12px;
  }

  .hero-section .section-inner {
    flex-direction: column;
    gap: 32px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .hero-content {
    width: 100%;
    flex: none;
  }

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

  .hero-image {
    flex: none;
    width: 100%;
  }

  .review-desk-section .section-inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .cards-row {
    flex-direction: column;
    gap: 12px;
  }

  .card {
    flex: none;
    width: 100%;
  }

  .cards-grid {
    gap: 12px;
  }

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

  .card-title {
    font-size: 28px;
  }

  .who-section .section-inner {
    flex-direction: column;
    gap: 32px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .who-image {
    flex: none;
    width: 100%;
    order: 2;
  }

  .who-content {
    width: 100%;
    flex-shrink: 1;
    order: 1;
  }

  .why-section .section-inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .testimonials-section .section-inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .testimonial-card {
    flex: none;
    width: 100%;
  }

  .site-footer .section-inner {
    padding: 48px 12px;
    gap: 24px;
  }

  .footer-links {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }

  .footer-links a {
    padding: 0;
  }

  .footer-contact-item span {
    white-space: normal;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .footer-copy {
    white-space: normal;
    text-align: center;
  }

  .catalog-section .section-inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .game-cards-grid {
    gap: 12px;
  }

  .game-cards-row {
    flex-direction: column;
    gap: 12px;
  }

  .game-card {
    width: 100%;
    flex-shrink: 1;
  }

  .game-card-title {
    font-size: 28px;
  }

  .catalog-info-section .section-inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .info-block-title {
    font-size: 36px;
  }

  .policy-section .section-inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }

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

  .game-detail-section .section-inner {
    flex-direction: column;
    gap: 32px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .game-detail-card {
    width: 100%;
  }

  .game-detail-content {
    flex: none;
    width: 100%;
  }

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

  .cookie-banner {
    width: calc(100% - 24px);
    padding: 24px 16px;
    bottom: 12px;
  }

  .cookie-banner-title {
    font-size: 32px;
  }

  .cookie-banner-actions {
    flex-direction: column;
    gap: 12px;
  }

  .cookie-banner-actions .btn-primary,
  .cookie-banner-actions .btn-secondary {
    width: 100%;
  }
}
