
    :root {
      --primary: #3b82f6;
      --background: #0f172a;
      --text: #f1f5f9;
      --muted: #94a3b8;
      --border: #1e293b;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      justify-content: center;
      display: block;
      justify-content: center;
      align-items: center;
      font-family: 'Inter', sans-serif;
      background-color: var(--background);
      color: var(--text);
      overflow-x: hidden;
      
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 60px;
      background-color: #020617;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 800;
      color: white;
    }

    nav a {
      margin: 0 16px;
      color: var(--muted);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    nav a:hover {
      color: white;
    }

    .nav-right a {
      background-color: var(--primary);
      color: white;
      padding: 10px 20px;
      border-radius: 10px;
      font-weight: 600;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .nav-right a:hover {
      background-color: #2563eb;
    }

    .hero {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      padding: 100px 60px;
      background: radial-gradient(circle at top left, #0f172a, #0a0a0a);
    }

    .hero-text {
      max-width: 600px;
    }

    .hero-text h1 {
      font-size: 3rem;
      font-weight: 800;
      color: white;
    }

    .hero-text h1 span {
      color: var(--primary);
    }

    .hero-text p {
      font-size: 1.1rem;
      color: var(--muted);
      margin: 20px 0;
    }

    .hero-buttons a {
      display: inline-block;
      margin-right: 16px;
      padding: 12px 24px;
      font-weight: 600;
      border-radius: 8px;
      text-decoration: none;
      transition: 0.3s;
    }

    .hero-buttons .primary {
      background-color: var(--primary);
      color: white;
    }

    .hero-buttons .primary:hover {
      background-color: #2563eb;
    }

    .hero-buttons .secondary {
      border: 2px solid var(--primary);
      color: var(--primary);
    }

    .hero-buttons .secondary:hover {
      background-color: var(--primary);
      color: white;
    }

    .video-preview {
      flex-shrink: 0;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 0 20px rgba(0,0,0,0.6);
    }

    .video-preview video {
      width: 480px;
      border-radius: 16px;
      display: block;
    }

    .why-choose {
  background-color: #0e0e14;
  text-align: center;
  padding: 80px 20px;
  color: white;
}

.why-choose h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.why-choose .highlight {
  color: #297aff;
}

.why-choose .subtitle {
  color: #a0a0a0;
  margin-bottom: 50px;
}

.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.feature-box {
  background-color: #12121a;
  padding: 30px 25px;
  border-radius: 12px;
  width: 300px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 0 10px #00000033;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px #00000055;
}

.feature-box .icon {
  font-size: 32px;
  margin-bottom: 15px;
  color: #297aff;
}

.feature-box h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.feature-box p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
}

 .mod-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .mod-card {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            width: 350px;
            overflow: hidden;
            transition: transform 0.3s ease;
            display: flex;
        }
        
        .mod-card:hover {
            transform: translateY(-5px);
        }
        
        .mod-image {
            width: 100px;
            height: 120px;
            object-fit: cover;
            background-color: #e9ecef;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #adb5bd;
            font-size: 24px;
        }
        
        .mod-content-wrapper {
            flex: 1;
            padding: 15px;
        }
        
        .badge {
            padding: 4px 8px;
            font-weight: bold;
            font-size: 10px;
            text-transform: uppercase;
            color: white;
            display: inline-block;
            border-radius: 4px;
            margin-bottom: 8px;
        }
        
        .badge-not {
            background-color: #6c757d;
        }
        
        .badge-hot {
            background-color: #dc3545;
        }
        
        .badge-best {
            background-color: #ffc107;
            color: #212529;
        }
        
        .mod-title {
            font-size: 16px;
            font-weight: bold;
            margin: 0 0 4px;
        }
        
        .mod-subtitle {
            font-size: 12px;
            color: #6c757d;
            margin-bottom: 10px;
        }
        
        .mod-description {
            font-size: 13px;
            color: #495057;
            margin-bottom: 15px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .mod-stats {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            color: #6c757d;
            margin-bottom: 10px;
        }
        
        .mod-rating {
            display: flex;
            align-items: center;
        }
        
        .mod-button {
            background-color: #0d6efd;
            color: white;
            border: none;
            padding: 6px 12px;
            border-radius: 4px;
            font-weight: bold;
            font-size: 12px;
            cursor: pointer;
            width: 100%;
            transition: background-color 0.3s;
        }
        
        .mod-button:hover {
            background-color: #0b5ed7;
        }

   .testimonials-section {
    display: grid;
    
    margin: 80px auto;
    
    padding: 0 px;
    font-family: 'Segoe UI', sans-serif;
    color: white;
     width: 100%;
    background-color: #0a0a0a;
  }

  .testimonials-section h2 {
    margin-top: 25px;
    font-size: 34px;
    text-align: center;
    margin-bottom: 10px;
  }

  .testimonials-section p.sub {
    text-align: center;
    color: #cccccc;
    margin-bottom: 40px;
  }

  .testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    
  }

  .testimonial-card {
    
    background: #121212;
    border-radius: 12px;
    padding-bottom: 20px;
    margin-left: 20px;
    margin-bottom: 70px;
    box-shadow: 0 0 0 transparent;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    
     transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

   .testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 176, 255, 0.2);
  }

  .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #333;
    background-image: url('https://cdn-icons-png.flaticon.com/512/149/149071.png'); /* Иконка-заглушка */
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
  }

  .testimonial-content {
    flex: 1;
  }

  .testimonial-text {
    font-size: 14px;
    line-height: 1.4;
    color: #dddddd;
    margin-bottom: 15px;
  }

  .testimonial-name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
  }

  .testimonial-game {
    color: #888888;
    font-size: 14px;
  }

  .stars {
    color: #f5c518;
    font-size: 16px;
    margin-top: 8px;
  }

  @media (min-width: 768px) {
    .testimonial-list {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-between;
    }

    .testimonial-card {
      width: 30%;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .testimonial-content {
      text-align: center;
    }

    .avatar {
      margin-bottom: 15px;
    }
  }
  .faq-section {
  background: #000;
  
  padding: 1px 10px 50px;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.faq-title {
  margin-top: 50px;
  font-size: 36px;
  text-align: center;
  margin-bottom: 10px;
}

.faq-subtitle {
  text-align: center;
  color: #aaa;
  font-size: 16px;
  margin-bottom: 40px;
}

.faq-container {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #000000;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #292a30;
}

.faq-question {

  padding: 20px;
  cursor: pointer;
  position: relative;
  font-weight: 600px;
  font-size: 17px;
}

.faq-question::after {
  content: "›";
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease;
  font-size: 20px;
  color: #33219e;
}

.faq-item.active .faq-question::after {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0px;
  overflow: hidden;
  padding: 0 20px 20 20;
  color: #bbb;
  transition: max-height 0.2s ease, padding 0.2s ease;
  font-size: 15px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 10px 20px 20px 40px;
}

/* CTA section */
.cta {
  
  background: linear-gradient(90deg, #0e111e 0%, #13172d 100%);
  padding: 80px 0px;
  text-align: center;
  color: white;
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta p {
  font-size: 18px;
  color: #bbbbbb;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background: #0066ff;
  color: white;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
  box-shadow: 0 0 12px rgba(0, 102, 255, 0.3);
}

.cta-button:hover {
  background: #0050cc;
}

.bg1 {
  margin-top: 3%;
  display: grid;
  background-color: #000000;
}

/* Footer */
.bg {
  max-width: 100%;
  display: grid;
  background-color: #000000;
}
.footer {
  background-color: #0b0c11;
  padding: 60px 20px 30px 20px;
  color: #ccc;
  font-size: 14px;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.footer h3 {
  color: white;
  font-size: 20px;
  margin-bottom: 10px;
}

.footer h4 {
  color: white;
  font-size: 16px;
  margin-bottom: 12px;
}

.footer p {
  color: #999;
  line-height: 1.6;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer a {
  color: #bbb;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #555;
}

body {
  background: linear-gradient(135deg, #0c0c1f, #081024);
  color: #ddd;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

.terms-container {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

.terms-card {
  background: #0e0e1e;
  border-radius: 12px;
  max-width: 900px;
  padding: 40px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.terms-card p {
  margin-top: 20px;
  color: gray;
}

.terms-title {
  font-size: 2rem;
  color: #198fff;
  margin-bottom: 30px;
}

.terms-card h2 {
  color: #fff;
  margin-top: 30px;
  font-size: 1.4rem;
}

.terms-card p,
.terms-card ul {
  font-size: 1rem;
  line-height: 1.6;
  color: #9a9898;
}

.terms-card ul {
  padding-left: 20px;
}

.terms-card ul li {
  margin-bottom: 10px;
}

.highlight {
  color: #198fff;
  font-weight: 500;
}

.terms-card a {
  color: #198fff;
  text-decoration: underline;
}

.contact-section {
  padding: 30px 20px;
  background: radial-gradient(circle at top left, #0d0d1f, #070716);
  color: #ccc;
}

.contact-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h1 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 10px;
}

.contact-header p {
  font-size: 1rem;
  color: #aaa;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-grid h2 {
  margin-top: 5px;
}

.contact-left p {
  color: gray;
  margin-top: 10px;
}

.contact-right p {
  color:gray;
}

.contact-left,
.contact-right {
  display: grid;
  flex: 1 1 480px;
}


.contact-box {
  background-color: #0e0e1e;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.contact-box h3 {
  color: #fff;
  margin-top: 15px;
}

.contact-box a {
  color: #198fff;
  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #198fff15;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #198fff;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: #0e0e1e;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.contact-form h3::after {
  content: "*";
  color: #007bff; /* синий цвет */
  margin-left: 4px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  background: #1a1a2e;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 1rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  padding: 12px;
  background-color: #198fff;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #1478d4;
}

.tutorial-section {
  max-width: 80%;
  margin: 0 auto;
  padding: 40px 20px;
  color: #ccc;
  font-family: 'Inter', sans-serif;
}

.tutorial-section h2 {
  color: white;
  font-size: 26px;
  margin-bottom: 20px;
}

.tutorial-description {
  margin-bottom: 30px;
}

.tutorial-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
}

.tutorial-step p{
  color: gray;
}

.tutorial-step h4{
  margin-bottom: 20px;
}

.circle {
  width: 36px;
  height: 36px;
  background-color: #007bff;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-right: 16px;
  flex-shrink: 0;
}

.step-content h4 {
  color: white;
  
}



.important-note {
  background: #141e30;
  padding: 16px 20px;
  border-left: 4px solid #007bff;
  margin-top: 30px;
  font-size: 15px;
  color: #a49f9f;
  line-height: 1.6;
}

.contact-header1 {
  text-align: center;
  margin-top: 40px;
}

.contact-header1 p {
  margin-top: 20px;
  color: gray;
}

.gamemods {
  margin-top: 3%;
  
}

