
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 20px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.header__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 4;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo img {
  max-width: 60px;
}

.header__nav {
  display: none;
}

.burger-menu {
  display: block;
  cursor: pointer;
  padding: 10px;
}

.burger-line {
  display: block;
  width: 30px;
  height: 3px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0s linear 0.5s;
  z-index: 100;
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.menu {
  background-color: #000000;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  position: relative;
  transform: translateY(-100%);
  transition: transform 0.5s ease-in-out;
}

.menu.open {
  transform: translateY(0);
}

.menu__close {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 25px;
  height: 25px;
}

.close-line {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #fff;
  top: 50%;
  transition: all 0.3s ease;
}

.close-line-1 {
  transform: rotate(45deg);
}

.close-line-2 {
  transform: rotate(-45deg);
}

.menu__links {
  list-style: none;
  padding: 0;
  margin-top: 80px;
}

.menu__links li {
  margin-bottom: 20px;
}

.menu__links a {
  text-decoration: none;
  color: #faf9f9;
  font-size: 20px;
  padding: 15px 0;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.5s ease, background-color 0.5s ease;
}

.menu__links a:hover {
  background-color: #714aff;
  color: #faf9f9;
}

@media (min-width: 768px) {
  .header {
    background-color: #010101f9;
  }

  .header__nav {
    display: flex;
    align-items: center;
  }

  .header__nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .header__nav ul li {
    margin-right: 20px;
  }

  .header__nav ul li:last-child {
    margin-right: 0;
  }

  .header__nav a {
    text-decoration: none;
    color: #e6dfdf;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 4px;
    transition: color 0.5s ease, background-color 0.5s ease;
  }

  .header__nav a:hover {
    background-color: #5e5e5eb0;
    color: #ffffff;
  }

  .burger-menu {
    display: none;
  }

  .menu-overlay {
    display: none !important;
  }
}

@media (min-width: 1440px) {
  .header__logo img {
    max-width: 60px;
  }

  .header__nav a {
    font-size: 18px;
  }
}




.footer {
    padding: 3vw 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-container {
    max-width: 900px;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    max-width: 120px;
    height: auto;
}

.footer-text p {
    font-size: 1rem;
    line-height: 1.4;
}

.footer-bottom {
    margin-top: 1.5rem;
}

.footer-copyright {
    font-size: 0.9rem;
}

/* Адаптация */
@media (max-width: 768px) {
    .footer-text p {
        font-size: 0.9rem;
    }

    .footer-logo img {
        max-width: 100px;
    }
}
.launch-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vw;
}

.launch-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.launch-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.launch-text {
  margin-bottom: 2rem;
}

.launch-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: bold;
  margin-bottom: 1rem;
}

.launch-summary {
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.launch-action {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.launch-action:hover {
  transform: scale(1.05);
}

.launch-image {
  max-width: 100%;
  display: flex;
  justify-content: center;
}

.launch-visual {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.launch-visual:hover {
  transform: scale(1.05);
}

/* Mobile */
@media (min-width: 768px) {
  .launch-content {
      flex-direction: row;
      align-items: center;
      text-align: left;
      gap: 3rem;
  }

  .launch-text {
      flex: 1;
  }

  .launch-image {
      flex: 1;
      display: flex;
      justify-content: flex-end;
  }
}


.inquiries-section {
    padding: 5vw 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inquiries-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.inquiries-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bold;
    margin-bottom: 1rem;
}

.inquiries-note {
    font-size: clamp(1rem, 2vw, 1.4rem);
    margin-bottom: 2rem;
}

.inquiries-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.inquiry-card {
    background: rgba(0, 0, 0, 0.05);
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.inquiry-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.inquiry-question {
    font-size: 1.2rem;
    font-weight: bold;
}

.inquiry-symbol {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.inquiry-answer {
    display: none;
    padding-top: 0.5rem;
}

.inquiry-card.active .inquiry-answer {
    display: block;
}

.inquiry-card.active .inquiry-symbol {
    transform: rotate(45deg);
}


.section-about {
  padding: 5vw 2vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1100px;
  width: 100%;
}

/* Картинка */
.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-visual {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.about-visual:hover {
  transform: scale(1.05);
}

/* Текст */
.about-text {
  flex: 1;
}

.about-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: bold;
  margin-bottom: 1rem;
}

.about-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Список */
.about-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  list-style: none;
}

.about-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.about-item:hover {
  transform: translateX(5px);
}

.about-icon {
  font-size: 1.2rem;
}


@media (max-width: 768px) {
  .about-container {
      flex-direction: column;
      text-align: center;
  }

  .about-image {
      order: -1;
  }

  .about-title {
      font-size: 2rem;
  }

  .about-description {
      font-size: 1rem;
  }
}


.games-flip {
  padding: 80px 20px;
  background: var(--background-color);
  text-align: center;
  color: var(--text-color);
}

.games-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.games-heading {
  font-family: var(--font-secondary);
  font-size: 2.8rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.games-subheading {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.8;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.flip-card {
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 320px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
}

.flip-card-front {
  background: var(--games-card-bg, #fff);
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.flip-card-inner:hover .card-image {
  transform: scale(1.05);
}

.flip-card-back {
  background: rgba(0, 0, 0, 0.85);
  color: var(--button-text, #fff);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.game-title {
  font-family: var(--font-secondary, sans-serif);
  font-size: 1.8rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: var(--primary-color);
}

.game-description {
  font-family: var(--font-primary, sans-serif);
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--button-text, #fff);
}

.game-button {
  display: inline-block;
  padding: 10px 20px;
  background: var(--button-bg, #e91e63);
  color: var(--button-text, #fff);
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.game-button:hover {
  background: var(--button-hover-bg, #d81b60);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .games-heading {
    font-size: 2.2rem;
  }
  .games-subheading {
    font-size: 1rem;
  }
  .flip-card-inner {
    height: 280px;
  }
  .game-title {
    font-size: 1.6rem;
  }
  .game-description {
    font-size: 0.9rem;
  }
  .game-button {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}


.innovations-section {
    padding: 5vw 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.innovations-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.innovations-header {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bold;
    margin-bottom: 1rem;
}

.innovations-blurb {
    font-size: clamp(1rem, 2vw, 1.4rem);
    margin-bottom: 2rem;
}

.innovations-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.innovation-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.innovation-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.innovation-unit:hover {
    transform: scale(1.05);
}

.innovation-module {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.innovation-display {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.innovation-visual {
    width: 100%;
    max-width: 250px;
    border-radius: 10px;
}

.innovation-text {
    padding: 1rem;
}

.innovation-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.innovation-desc {
    font-size: 1rem;
    line-height: 1.5;
}

/* Центрирование для среднего ряда */
.center {
    display: flex;
    justify-content: center;
}

/* Центрирование для последнего блока */
.bottom {
    display: flex;
    justify-content: center;
}

/* Адаптация */
@media (max-width: 1024px) {
    .innovation-row {
        flex-direction: column;
        align-items: center;
    }
}


.testimonials-zone {
    padding: 5vw 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonials-frame {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.testimonials-header {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bold;
    margin-bottom: 1rem;
}

.testimonials-blurb {
    font-size: clamp(1rem, 2vw, 1.4rem);
    margin-bottom: 2rem;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.testimonials-showcase {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-panel {
    min-width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-portrait {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.testimonial-text {
    max-width: 600px;
}

.testimonial-identity {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.testimonial-words {
    font-size: 1rem;
    line-height: 1.5;
}

/* Кнопки навигации */
.testimonial-prev, .testimonial-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

.testimonial-prev {
    left: 10px;
}

.testimonial-next {
    right: 10px;
}

/* Адаптация */
@media (max-width: 768px) {
    .testimonial-prev, .testimonial-next {
        font-size: 1.5rem;
    }
}


.explore-section {
    padding: 5vw 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.explore-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.explore-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bold;
    margin-bottom: 1rem;
}

.explore-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    margin-bottom: 2rem;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.explore-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.explore-card:hover {
    transform: scale(1.05);
}

.explore-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.explore-content {
    padding: 1rem;
    text-align: center;
}

.explore-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.explore-description {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.explore-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.explore-button:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .explore-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: 1fr;
    }
}



/* Cookie Section Styles */
.cookie-section {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  /* Дополнительные стили для контейнера, если нужно */
}

.cookie-popup {
  display: none;  /* Управляется через JS */
  background: var(--secondary-color);
  color: var(--text-color);
  border: 1px solid var(--accent-color);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  font-family: var(--font-primary);
  max-width: 90%;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-popup p {
  margin: 0;
  font-size: 16px;
  flex: 1 1 auto;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-close {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-color);
}


.engagement-section {
    padding: 5vw 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.engagement-container {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.engagement-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bold;
    margin-bottom: 1rem;
}

.engagement-description {
    font-size: clamp(1rem, 2vw, 1.4rem);
    margin-bottom: 2rem;
}

.engagement-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.engagement-info {
    text-align: center;
}

.engagement-details {
    list-style: none;
    padding: 0;
}

.engagement-entry {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.2rem;
}

/* Форма */
.engagement-form {
    width: 100%;
    max-width: 500px;
}

.form-input {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.form-input label {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-input input,
.form-input textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 5px;
    font-size: 1rem;
}

.engagement-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.engagement-button:hover {
    transform: scale(1.05);
}

/* Сообщение об успехе */
.success-alert {
    display: none;
    margin-top: 1rem;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .engagement-wrapper {
        flex-direction: row;
        justify-content: space-between;
    }

    .engagement-info {
        flex: 1;
        text-align: left;
    }

    .engagement-form {
        flex: 1;
    }
}

