 .site-header { background: var(--secondary-color); padding: 15px 0; box-shadow: 0 4px 8px var(--button-shadow); }
.header-wrapper { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; }

.header-logo img { height: 50px; width: auto; }

.header-nav .nav-list { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }

.header-nav .nav-list .nav-item a { text-decoration: none; font-size: 1rem; font-weight: 600; color: var(--text-color); padding: 8px 12px; transition: color 0.3s ease, transform 0.2s ease; }

.header-nav .nav-list .nav-item a:hover { color: var(--primary-color); transform: translateY(-2px); }

.header-actions { display: flex; gap: 10px; }

.btn { padding: 10px 20px; border-radius: 8px; font-size: 0.9rem; font-weight: 600; text-transform: uppercase; text-decoration: none; transition: background 0.3s ease, transform 0.2s ease; cursor: pointer; }

.btn-login { background: transparent; color: var(--primary-color); border: 2px solid var(--primary-color); }

.btn-login:hover { background: var(--primary-color); color: var(--text-color); }

.btn-signup { background: var(--button-bg); color: var(--button-text); border: none; }

.btn-signup:hover { background: var(--button-hover-bg); transform: scale(1.05); }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }

.mobile-toggle span { width: 30px; height: 3px; background: var(--text-color); transition: 0.3s ease; }

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }

.mobile-toggle.active span:nth-child(2) { opacity: 0; }

.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) { .header-nav { display: none; } .mobile-toggle { display: flex; } }




/* Unique Footer Styles */
.unique-footer {
  position: relative;
  background-color: #0d0d0d;      /* Dark background */
  color: #e0e0e0;               /* Light text */
  padding: 40px 20px;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.unique-footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);  /* Light overlay for subtle effect */
  z-index: 1;
}

.unique-footer-container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}

.unique-footer-info p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Footer Buttons */
.footer-buttons {
  margin-bottom: 20px;
}

.footer-btn {
  display: inline-block;
  margin: 0 10px;
  padding: 8px 16px;
  background-color: #333;  /* Dark button background */
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.footer-btn:hover {
  background-color: #555;
}

.unique-footer-copy p {
  font-size: 14px;
  border-top: 1px solid rgba(224, 224, 224, 0.2);
  padding-top: 10px;
  margin: 0;
  opacity: 0.85;
} .hero-dynamic { position: relative; width: 100%; min-height: 100vh; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; overflow: hidden; } .hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.75); z-index: 1; } .hero-inner { position: relative; z-index: 2; text-align: center; padding: 20px; } .hero-title { font-family: var(--font-secondary); font-size: 3.5rem; text-transform: uppercase; margin-bottom: 20px; color: var(--primary-color); animation: popIn 1s ease-out; } .hero-description { font-family: var(--font-primary); font-size: 1.2rem; margin-bottom: 30px; line-height: 1.5; color: var(--text-color); animation: fadeIn 1s ease-out; } .hero-btn { padding: 12px 30px; font-size: 1rem; border-radius: 8px; background: var(--button-bg); color: var(--button-text); border: none; cursor: pointer; transition: background 0.3s ease, transform 0.3s ease; } .hero-btn:hover { background: var(--button-hover-bg); transform: translateY(-3px); } .hero-arrow { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 2; opacity: 0.7; animation: bounce 2s infinite; } .hero-arrow svg { width: 30px; height: 30px; fill: var(--text-color); } @keyframes popIn { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); } 40% { transform: translateX(-50%) translateY(-10px); } 60% { transform: translateX(-50%) translateY(-5px); } } @media (max-width: 768px) { .hero-title { font-size: 2.5rem; } .hero-description { font-size: 1rem; } .hero-btn { font-size: 0.9rem; padding: 10px 25px; } } @media (max-width: 480px) { .hero-title { font-size: 2rem; } .hero-description { font-size: 0.9rem; } .hero-btn { font-size: 0.8rem; padding: 8px 20px; } }


/* === Глобальные переменные FAQ === */
:root {
    --faq-bg: var(--background-color); /* Фон секции */
    --faq-text-color: var(--text-color); /* Цвет текста */
    --faq-title-color: var(--primary-color); /* Цвет заголовка */
    --faq-card-bg: var(--card-bg); /* Фон карточек */
    --faq-border-color: var(--shadow-color); /* Цвет рамки */
    --faq-hover-bg: var(--button-hover-bg); /* Цвет при наведении */
    --faq-toggle-color: var(--primary-color); /* Цвет иконки открытия */
}

/* === Основные стили секции FAQ === */
.faq-section {
    background: var(--faq-bg);
    color: var(--faq-text-color);
    padding: 80px 20px;
    text-align: center;
}

/* Контейнер */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Заголовок */
.faq-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--faq-title-color);
    margin-bottom: 10px;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: var(--faq-text-color);
    margin-bottom: 40px;
}

/* === Грид для карточек === */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

/* === Карточки FAQ === */
.faq-card {
    background: var(--faq-card-bg);
    border-radius: 10px;
    border: 2px solid var(--faq-border-color);
    box-shadow: 0 4px 8px var(--faq-border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.faq-card.open {
    background: var(--faq-hover-bg);
}

/* === Заголовки карточек === */
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

/* === Иконка открытия === */
.faq-toggle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--faq-toggle-color);
    position: relative;
    transition: transform 0.3s ease-in-out;
}

.faq-card.open .faq-toggle {
    transform: rotate(45deg);
}

/* === Ответы (анимация раскрытия) === */
.faq-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    padding: 0 20px;
}

.faq-card.open .faq-body {
    max-height: 150px;
    opacity: 1;
    padding-bottom: 15px;
}

/* === Адаптивность === */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 15px;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-subtitle {
        font-size: 1rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}


.features-timeline {
  padding: 80px 20px;
  background: var(--features-bg);
  color: var(--features-text-color);
}

.features-timeline .container {
  max-width: 1200px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 40px;
}

.features-heading {
  font-family: var(--font-secondary);
  font-size: 2.8rem;
  color: var(--features-title-color);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.features-subheading {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  color: var(--features-subtitle-color);
  margin-bottom: 20px;
  line-height: 1.6;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.timeline-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: var(--features-icon-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.timeline-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline-content {
  flex: 1;
  text-align: left;
}

.timeline-title {
  font-family: var(--font-secondary);
  font-size: 1.6rem;
  color: var(--features-title-color);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.timeline-description {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--features-text-color);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .timeline-item {
    flex-direction: column;
    text-align: center;
  }
  .timeline-content {
    text-align: center;
  }
}


.games-unique {
  padding: 80px 20px;
  background: var(--background-color);
  text-align: center;
}

.games-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.games-section-title {
  font-family: var(--font-secondary);
  font-size: 2.8rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: var(--primary-color);
}

.games-section-subtitle {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: var(--text-color);
  opacity: 0.8;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.game-card {
  perspective: 1000px;
}

.card-inner {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.card-inner:hover {
  transform: translateY(-5px);
}

.card-img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card-inner:hover .card-img {
  transform: scale(1.1);
}

.card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.card-inner:hover .card-info {
  transform: translateY(0);
}

.card-title {
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  color: var(--button-text);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.card-desc {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--button-text);
  margin-bottom: 15px;
}

.card-btn {
  display: inline-block;
  padding: 10px 20px;
  background: var(--button-bg);
  color: var(--button-text);
  font-family: var(--font-primary);
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.card-btn:hover {
  background: var(--button-hover-bg);
  transform: scale(1.05);
}


.parallax-variant-5 {
  position: relative;
  overflow: hidden;
  height: 40rem;
  background: var(--background-color);
}

.parallax-variant-5 .parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 1;
}

.parallax-variant-5 .parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.parallax-variant-5 .parallax-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  padding: 0 20px;
  color: var(--primary-color);
}

.parallax-variant-5 .parallax-title {
  font-family: var(--font-secondary);
  font-size: 3rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.parallax-variant-5 .parallax-subtitle {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .parallax-variant-5 .parallax-title {
    font-size: 2.5rem;
  }
  .parallax-variant-5 .parallax-subtitle {
    font-size: 1rem;
  }
}


/* Cookie Bar Variant 3 Styles */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--secondary-color);
  color: var(--text-color);
  padding: 15px 20px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.3);
  display: none; /* Отображается через JS */
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-primary);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.5s ease-out;
}

.cookie-bar.slide-up {
  transform: translateY(0);
}

.cookie-bar-message {
  font-size: 15px;
}

.cookie-bar-buttons {
  display: flex;
  gap: 10px;
}

.cookie-bar-buttons .btn {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  background: var(--button-bg);
  color: var(--button-text);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0 2px 4px var(--button-shadow);
}

.cookie-bar-buttons .btn:hover {
  background: var(--button-hover-bg);
}

.cookie-bar-buttons .btn.secondary {
  background: var(--button-secondary-bg);
  color: var(--button-secondary-text);
}


.stats-showcase-variant {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  overflow: hidden;
}

.stats-showcase-variant .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.stats-showcase-variant .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.stats-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.stats-details {
  flex: 1;
  color: var(--text-color);
}

.stats-title {
  font-family: var(--font-secondary);
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-transform: uppercase;
}

.stats-description {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.stats-card {
  background: var(--card-bg);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.stats-card .number {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: var(--accent-color);
}

.stats-card .label {
  display: block;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--text-color);
  margin-top: 10px;
}

.stats-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stats-visual img {
  width: 100%;
  max-width: 500px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.stats-visual img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .stats-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .stats-details {
    margin-bottom: 30px;
  }
}


.about-us-unique {
  padding: 60px 20px;
  background: var(--background-color);
}

.about-us-unique .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-info {
  flex: 1;
}

.about-heading {
  font-family: var(--font-secondary);
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-transform: uppercase;
}

.about-text {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.6;
  color: var(--text-color);
}

.about-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.about-list li {
  font-family: var(--font-primary);
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--button-bg);
  color: var(--button-text);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-primary);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background: var(--button-hover-bg);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .about-flex {
    flex-direction: column;
    text-align: center;
  }
  .about-image {
    margin-top: 20px;
  }
  .about-heading {
    font-size: 2.2rem;
  }
  .about-text {
    font-size: 1rem;
  }
}

 .card-grid-section { background: var(--secondary-color); padding: 50px var(--container-padding); text-align: center; }
.card-grid-section .container { max-width: 1200px; margin: 0 auto; }

.grid-title { font-family: var(--font-secondary); font-size: 32px; color: var(--text-color); margin-bottom: 10px; }

.grid-subtitle { font-family: var(--font-primary); font-size: 18px; color: var(--text-color); opacity: 0.8; margin-bottom: 30px; }

.grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }

.grid-card { position: relative; border-radius: 15px; overflow: hidden; cursor: pointer; transition: transform 0.3s ease; }

.grid-card-img { width: 100%; height: 380px; }

.grid-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }

.grid-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.75); display: flex; flex-direction: column; justify-content: center; align-items: center; opacity: 0; transition: opacity 0.4s ease; }

.grid-card:hover .grid-overlay { opacity: 1; }

.grid-card:hover .grid-card-img img { transform: scale(1.1); }

.grid-card-title { font-family: var(--font-secondary); font-size: 24px; color: var(--text-color); margin-bottom: 10px; }

.grid-card-text { font-family: var(--font-primary); font-size: 14px; color: var(--text-color); text-align: center; margin-bottom: 15px; padding: 0 15px; }

.btn { display: inline-block; padding: 10px 20px; font-family: var(--font-primary); font-size: 14px; font-weight: bold; text-transform: uppercase; color: var(--button-text); background: var(--button-bg); border: 2px solid var(--button-border); border-radius: 5px; text-decoration: none; transition: background 0.3s, transform 0.2s; }

.btn:hover { background: var(--button-hover-bg); transform: translateY(-2px); }

 .contact-panel { background: var(--secondary-color); padding: 60px var(--container-padding); text-align: center; }
.contact-panel-header h2 { font-family: var(--font-secondary); color: var(--primary-color); font-size: 2.3rem; margin-bottom: 30px; }

.contact-panel-form { max-width: 600px; margin: 0 auto; background: var(--background-color); border: 2px solid var(--accent-color); border-radius: 10px; padding: 30px; }

.contact-panel-form .form-group { margin-bottom: 20px; }

.contact-panel-form input, .contact-panel-form textarea { width: 100%; background: transparent; border: 1px solid var(--accent-color); color: var(--text-color); font-family: var(--font-primary); font-size: 1rem; padding: 12px; border-radius: 6px; outline: none; }

.contact-panel-form input::placeholder, .contact-panel-form textarea::placeholder { color: var(--text-color); opacity: 0.5; }

.contact-panel-submit { background: var(--button-bg); color: var(--text-color); font-family: var(--font-primary); padding: 14px 28px; border: 1px solid var(--button-border); border-radius: 6px; font-weight: 700; text-transform: uppercase; cursor: pointer; transition: background 0.3s, transform 0.2s; }

.contact-panel-submit:hover { background: var(--button-hover-bg); transform: translateY(-2px); }

.success-message { margin-top: 20px; font-size: 1.1rem; color: var(--accent-color); display: none; }

@media (max-width: 768px) { .contact-panel-header h2 { font-size: 1.8rem; }

.contact-panel-form { padding: 20px; } }

