.stats {
  background: #242833;
  padding: 40px 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  border-top: 1px solid #2a2e3d;
  border-bottom: 1px solid #2a2e3d;
}

.stat-item h3 {
  font-size: 38px;
  font-weight: bold;
  color: #00d9a5;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 14px;
  color: #a8adb7;
}

.games {
  padding: 70px 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 45px;
}

.section-header h2 {
  font-size: 34px;
  margin-bottom: 12px;
  color: #fff;
}

.section-header p {
  color: #a8adb7;
  font-size: 16px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.game-card {
  background: #242833;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #2a2e3d;
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: #00d9a5;
}

.game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.game-info {
  padding: 18px;
}

.game-info h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 17px;
}

.game-info p {
  color: #7d8290;
  font-size: 13px;
}

.about {
  padding: 70px 5%;
  background: #242833;
  border-top: 1px solid #2a2e3d;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 35px;
}

.about-text h3 {
  color: #e1e1e1;
  margin-bottom: 18px;
  font-size: 24px;
}

.about-text p {
  margin-bottom: 18px;
  color: #a8adb7;
  font-size: 15px;
  line-height: 1.7;
}

.advantages {
  display: grid;
  gap: 18px;
}

.advantage-item {
  background: #1a1d29;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #2a2e3d;
}

.advantage-item h4 {
  color: #e1e1e1;
  margin-bottom: 10px;
  font-size: 16px;
}

.advantage-item h4 i {
  margin-right: 8px;
}

.advantage-item p {
  color: #7d8290;
  font-size: 14px;
  line-height: 1.6;
}

.faq {
  padding: 70px 5%;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: #242833;
  padding: 22px;
  margin-bottom: 18px;
  border-radius: 8px;
  border: 1px solid #2a2e3d;
}

.faq-item h3 {
  color: #00d9a5;
  margin-bottom: 10px;
  font-size: 18px;
}

.faq-item p {
  color: #a8adb7;
  line-height: 1.7;
  font-size: 14px;
}

.footer {
  background: #1f2430;
  padding: 50px 5% 25px;
  border-top: 1px solid #2a2e3d;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 35px;
  margin-bottom: 35px;
}

.footer-column h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 16px;
}

.footer-column a {
  display: block;
  color: #7d8290;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #00d9a5;
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid #2a2e3d;
  color: #5a5e6b;
}

.footer-bottom p {
  font-size: 13px;
  margin-bottom: 8px;
}

@media (max-width: 1024px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .stats {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 26px;
  }
}