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

:root {
  --primary-purple: #6B46C1;
  --accent-purple: #8B5CF6;
  --dark-bg: #0F0F0F;
  --darker-bg: #1A1A1A;
  --text-white: #FFFFFF;
  --text-gray: #A3A3A3;
  --text-light-gray: #6B7280;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
  font-weight: 700;
}

h2{
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.20) 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}


.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(20px);
  padding: 24px 0;

}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-white);
  text-decoration: none;
  font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
}


.nav-menu {
  display: flex;
  list-style: none;
  gap: 48px;
}

.nav-menu a {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--accent-purple);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at center bottom, rgba(139, 92, 246, 0.4) 0%, rgba(107, 70, 193, 0.2) 40%, rgba(15, 15, 15, 1) 80%);
  padding-top: 100px;
  position: relative;
}

.hero-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;

}

.hero-text {
  width: 100%;
}

.hero-text h1 {
  font-size: 4.2rem;
  line-height: 1.05;
  margin-bottom: 0;
  color: var(--text-white);
  font-weight: 700;
  letter-spacing: -0.02em;


  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.20) 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.hero-bottom {
  display: flex;

  justify-content: center;

  width: 100%;
  position: relative;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

.hero-description {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.6;
  max-width: 350px;
  margin: 0;
}

/* About Section */
.about {
  padding: 140px 0;
  background-color: var(--darker-bg);
  position: relative;
}

.about h2 {
  font-size: 3.5rem;
  margin-bottom: 100px;
  color: var(--text-light-gray);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}

.about-list {
  position: relative;
}

.about-list::before {
  content: '';
  position: absolute;
  height: 172px;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #E731FF;
}
.about-list::after {
  content: '';
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(255, 255, 255, 0.30);
}

.about-items {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.about-item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.about-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-light-gray);
  min-width: 80px;
  font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
}

.about-item-content {
  flex: 1;
}

.about-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  
  border-radius: 12px;
  color: var(--accent-purple);
}

.about-text {
  color: var(--text-white);
  line-height: 1.7;
  font-size: 16px;
}

.about-character {
  display: flex;
  justify-content: center;
  align-items: center;

}

.about-character img {
  max-width: 100%;
  height: auto;
}

/* Trust Section */
.trust {
  padding: 140px 0;
  background-color: var(--dark-bg);
}

.trust-content {
  /* max-width: 800px; */
  margin: 0 auto;
  text-align: left;
}

.trust h2 {
  font-size: 3.5rem;
  margin-bottom: 0;
  color: var(--text-white);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.trust-subtitle {
  font-size: 3.5rem;
  color: var(--text-light-gray);
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.trust-description {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 50px;
  max-width: 600px;
}

.play-btn {
  display: inline-block;
  background-color: var(--text-white);
  color: var(--dark-bg);
  padding: 20px 48px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.play-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
  background-color: #f8f9fa;
}

/* Features Section */
.features {
  padding: 140px 0;
  background-color: var(--darker-bg);
}

.features-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.features-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;

  border-radius: 30px;
border: 1px solid rgba(255, 255, 255, 0.20);
background: rgba(255, 255, 255, 0.02);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  color: var(--accent-purple);
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--text-white);
  font-weight: 600;
  line-height: 1.4;
}

.feature-card p {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 15px;
}

.features-visual {
  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 32px;

}

.features-visual img {
  max-width: 100%;
  height: auto;
}

/* Worlds Section */
.worlds {
  padding: 140px 0;
  background-color: var(--dark-bg);
}

.worlds-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.worlds-text h2 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.worlds-text h2 .gray {
  color: var(--text-light-gray);
}

.worlds-description {
  color: var(--text-white);
  line-height: 1.7;
  margin-bottom: 32px;
  font-size: 16px;
}

.worlds-visual {
  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 32px;

}

.worlds-visual img {
  max-width: 100%;
  height: auto;
}

/* Footer */
.footer {
  background-color: #0F0F0F;
  padding: 100px 0 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 80px;
  align-items: center;
  margin-bottom: 60px;
}

.footer-info {
  color: var(--text-gray);
  font-size: 16px;
}

.footer-contact {
  display: flex;
  gap: 12px;
  text-align: right;
}

.footer-contact span {
  color: var(--text-white);
  font-size: 16px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--text-white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-purple);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  margin-bottom: 80px;
}

.footer-social {
  display: flex;
  gap: 24px;
}

.footer-social a {
  color: var(--text-gray);
  font-size: 20px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--text-white);
}

.footer-copyright {
  color: var(--text-gray);
  font-size: 14px;
}

.footer-logo {
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  text-align: center;
  letter-spacing: 8px;
  font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;

  color: rgba(255, 255, 255, 0.20);
text-align: center;
font-family: Helvetica;
font-size: 176px;
font-style: normal;
font-weight: 400;
line-height: 90%; /* 158.4px */
letter-spacing: 14.08px;
text-transform: uppercase;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-popup.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal {
  background: #1a1a1a;
  border-radius: 24px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.cookie-header {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-title {
  color: white;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
}

.cookie-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 16px;
}

.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-btn {
  padding: 16px 24px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.cookie-btn.accept {
  background-color: white;
  color: #1a1a1a;
}

.cookie-btn.accept:hover {
  background-color: #f0f0f0;
}

.cookie-btn.decline {
  background-color: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.decline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Mobile Responsive */
@media (max-width: 1200px) {
  .container {
      padding: 0 30px;
  }
  
  .hero-content {
      gap: 60px;
  }
  
  .about-content,
  .features-content,
  .worlds-content {
      gap: 60px;
  }
}

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

  .nav-menu {
      gap: 24px;
  }

  .hero-content {
      gap: 40px;
      text-align: center;
  }

  .hero-text h1 {
      font-size: 2.8rem;
      text-align: center;
      text-transform: uppercase;
  }

  .hero-bottom {
      flex-direction: column;
      gap: 40px;
      text-align: center;
  }

  .hero-description {
      max-width: 100%;
      font-size: 16px;
      text-align: center;
  }

  .about-content,
  .features-content,
  .worlds-content {
      grid-template-columns: 1fr;
      gap: 60px;
  }

  .about h2,
  .trust h2,
  .trust-subtitle,
  .worlds-text h2 {
      font-size: 2.5rem;
  }

  .features-cards {
      grid-template-columns: 1fr;
      gap: 20px;
  }

  .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 40px;
  }

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

  .footer-bottom {
      flex-direction: column;
      gap: 24px;
      text-align: center;
  }

  .footer-logo {
      font-size: 3rem;
  }

  .cookie-modal {
      padding: 30px;
      max-width: 400px;
  }

  .cookie-title {
      font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
      font-size: 2.2rem;
  }

  .about h2,
  .trust h2,
  .trust-subtitle,
  .worlds-text h2 {
      font-size: 2rem;
  }

  .nav-menu {
      gap: 16px;
      font-size: 14px;
  }

  .logo {
      font-size: 18px;
  }

  .about-list::before {
      left: -20px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Section padding adjustments */
section {
  scroll-margin-top: 100px;
}


/* Games Grid Section */
.games-grid {
  padding: 100px 0;
  background-color: var(--dark-bg);
}

.games-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;


}

.game-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.game-card a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.game-title {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  z-index: 2;
}

/* .game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
  transition: opacity 0.3s ease;
} */

.game-card:hover::before {
  opacity: 0.7;
}

/* Адаптивные стили */
@media (max-width: 1200px) {
  .games-container {
      max-width: 800px;
      gap: 20px;
  }
}

@media (max-width: 768px) {
  .games-container {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(4, 1fr);
      gap: 16px;
      max-width: 500px;
  }

  .game-title {
      font-size: 14px;
      top: 12px;
      left: 12px;
  }
}

@media (max-width: 480px) {
  .games-container {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(7, 1fr);
      gap: 12px;
      max-width: 300px;
  }

  .game-title {
      font-size: 12px;
      top: 8px;
      left: 8px;
  }
}
.wrap{
  display: flex;
  align-items: center;
  gap: 40px;
}


.features-content-game{
  grid-template-columns: 1fr !important;
}
.features-cards-game{
  display: flex !important;
}

@media (max-width: 768px) {
  .wrap{
   flex-direction: column;
  }
  .features-cards-game{
    flex-direction: column !important;
  }
}

