.page-lottery-games-platform-features {
  font-family: 'Arial', sans-serif;
  color: #f5f5f5; /* Light text on dark background */
  background-color: #0A0A0A;
  line-height: 1.6;
  overflow-x: hidden;
}

.page-lottery-games-platform-features .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-lottery-games-platform-features .hero-section {
  background: linear-gradient(135deg, #0A0A0A 0%, #333333 100%);
  padding: 100px 0;
  text-align: center;
  color: #FFD700;
  position: relative;
  overflow: hidden;
}

.page-lottery-games-platform-features .hero-section h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  color: #FFD700;
}

.page-lottery-games-platform-features .hero-section p {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-lottery-games-platform-features .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
}

.page-lottery-games-platform-features .btn-primary {
  background-color: #FFD700;
  color: #0A0A0A;
  border: 2px solid #FFD700;
}

.page-lottery-games-platform-features .btn-primary:hover {
  background-color: #e0b800;
  border-color: #e0b800;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-lottery-games-platform-features .btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-lottery-games-platform-features .btn-secondary:hover {
  background-color: #FFD700;
  color: #0A0A0A;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-lottery-games-platform-features section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

.page-lottery-games-platform-features section:nth-of-type(even) {
  background-color: #1a1a1a;
}

.page-lottery-games-platform-features h2 {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 15px;
}

.page-lottery-games-platform-features h2::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-lottery-games-platform-features h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-lottery-games-platform-features p {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 15px;
}

.page-lottery-games-platform-features .introduction-section .intro-content,
.page-lottery-games-platform-features .security-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-lottery-games-platform-features .introduction-section .intro-content .text-content,
.page-lottery-games-platform-features .security-content .text-content {
  flex: 1;
}

.page-lottery-games-platform-features .introduction-section .intro-content .image-content,
.page-lottery-games-platform-features .security-content .image-content {
  flex: 1;
  text-align: center;
}

.page-lottery-games-platform-features .feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-lottery-games-platform-features .feature-item {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
}

.page-lottery-games-platform-features .feature-item:last-of-type {
  margin-bottom: 0;
}

.page-lottery-games-platform-features .feature-item.reverse {
  flex-direction: row-reverse;
}

.page-lottery-games-platform-features .feature-item .text-content {
  flex: 1;
}

.page-lottery-games-platform-features .feature-item .image-content {
  flex: 1;
  min-width: 400px;
}

.page-lottery-games-platform-features .text-center {
  text-align: center;
  margin-top: 40px;
}

.page-lottery-games-platform-features .advantage-grid,
.page-lottery-games-platform-features .experience-grid,
.page-lottery-games-platform-features .promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-lottery-games-platform-features .advantage-card,
.page-lottery-games-platform-features .experience-card,
.page-lottery-games-platform-features .promo-card {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border-top: 4px solid #FFD700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery-games-platform-features .advantage-card:hover,
.page-lottery-games-platform-features .experience-card:hover,
.page-lottery-games-platform-features .promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.page-lottery-games-platform-features .promo-card img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-lottery-games-platform-features .btn-promo {
  background-color: #FFD700;
  color: #0A0A0A;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  margin-top: 15px;
  width: 100%;
  text-align: center;
}

.page-lottery-games-platform-features .btn-promo:hover {
  background-color: #e0b800;
}

.page-lottery-games-platform-features .cta-section {
  background-color: #0A0A0A;
  text-align: center;
  padding: 100px 0;
}

.page-lottery-games-platform-features .cta-section h2 {
  color: #FFD700;
}

.page-lottery-games-platform-features .cta-section p {
  max-width: 900px;
  margin: 0 auto 40px auto;
  font-size: 1.2em;
}

.page-lottery-games-platform-features .cta-section ul {
  list-style: none;
  padding: 0;
  margin: 40px auto 60px auto;
  max-width: 800px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 15px;
  text-align: left;
}

.page-lottery-games-platform-features .cta-section ul li {
  background-color: #1a1a1a;
  padding: 15px 25px;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  color: #e0e0e0;
  font-size: 1.1em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-lottery-games-platform-features .cta-section ul li strong {
  color: #FFD700;
}

.page-lottery-games-platform-features .btn-large {
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
}

.page-lottery-games-platform-features .conclusion-section {
  text-align: center;
  padding-bottom: 100px;
}

.page-lottery-games-platform-features strong {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-lottery-games-platform-features .hero-section h1 {
    font-size: 2.8em;
  }
  .page-lottery-games-platform-features h2 {
    font-size: 2.2em;
  }
  .page-lottery-games-platform-features h3 {
    font-size: 1.6em;
  }
  .page-lottery-games-platform-features .introduction-section .intro-content,
  .page-lottery-games-platform-features .security-content,
  .page-lottery-games-platform-features .feature-item {
    flex-direction: column;
    text-align: center;
  }
  .page-lottery-games-platform-features .feature-item.reverse {
    flex-direction: column;
  }
  .page-lottery-games-platform-features .feature-item .image-content {
    min-width: unset;
    width: 100%;
  }
  .page-lottery-games-platform-features .cta-section ul {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }
}

@media (max-width: 768px) {
  .page-lottery-games-platform-features .hero-section {
    padding: 80px 0;
  }
  .page-lottery-games-platform-features .hero-section h1 {
    font-size: 2.2em;
  }
  .page-lottery-games-platform-features .hero-section p {
    font-size: 1em;
  }
  .page-lottery-games-platform-features section {
    padding: 60px 0;
  }
  .page-lottery-games-platform-features h2 {
    font-size: 1.8em;
    margin-bottom: 40px;
  }
  .page-lottery-games-platform-features h3 {
    font-size: 1.4em;
  }
  .page-lottery-games-platform-features .btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-lottery-games-platform-features .btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-lottery-games-platform-features .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .page-lottery-games-platform-features .hero-section h1 {
    font-size: 1.8em;
  }
  .page-lottery-games-platform-features h2 {
    font-size: 1.5em;
  }
  .page-lottery-games-platform-features h3 {
    font-size: 1.2em;
  }
  .page-lottery-games-platform-features p {
    font-size: 0.95em;
  }
  .page-lottery-games-platform-features .promo-card img {
    height: 150px;
  }
}