.page-lottery {
  --primary-color: #FFD700;
  --secondary-color: #1A1A1A;
  --accent-color: #CC0000;
  --text-dark: #1A1A1A;
  --text-light: #FFFFFF;
  --bg-light: #F8F8F8;
  --bg-dark: #222222;
  --border-color: #E0E0E0;
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
}

.page-lottery h1, .page-lottery h2, .page-lottery h3, .page-lottery h4, .page-lottery h5, .page-lottery h6 {
  color: var(--text-dark);
  font-weight: bold;
}

.page-lottery p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.page-lottery a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-lottery a:hover {
  text-decoration: underline;
}

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

.page-lottery .btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-lottery .btn-primary:hover {
  background: #E6C200;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-lottery .btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  background: var(--secondary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 1px solid var(--secondary-color);
  cursor: pointer;
}

.page-lottery .btn-secondary:hover {
  background: #333333;
  border-color: #333333;
  transform: translateY(-2px);
}

/* HERO Section */
.page-lottery .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-lottery .hero-section h1, .page-lottery .hero-section p {
  color: var(--text-light);
}

.page-lottery .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-lottery .hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
}

.page-lottery .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-lottery .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-lottery .hero-content h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-lottery .hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-lottery .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--primary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.3em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-lottery .cta-button:hover {
  background: #E6C200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Intro Section */
.page-lottery .intro-section {
  padding: 80px 0;
  background-color: var(--bg-light);
  text-align: center;
}

.page-lottery .intro-section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.page-lottery .intro-section p {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: var(--text-dark);
}

.page-lottery .intro-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-lottery .feature-item {
  background: var(--text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-lottery .feature-item img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-lottery .feature-item h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-lottery .feature-item p {
  font-size: 1em;
  color: #555;
  margin-bottom: 0;
}

/* Quick Access Section */
.page-lottery .quick-access-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
  text-align: center;
}

.page-lottery .quick-access-section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-lottery .quick-access-section p {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: var(--text-light);
}

.page-lottery .access-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-lottery .access-card {
  background: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: block;
  color: var(--text-light);
}

.page-lottery .access-card:hover {
  transform: translateY(-8px);
  background-color: #333333;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  text-decoration: none;
}

.page-lottery .access-card h3 {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-lottery .access-card p {
  font-size: 1em;
  color: #CCCCCC;
  margin-bottom: 0;
}

/* Games Section */
.page-lottery .games-section {
  padding: 80px 0;
  background-color: var(--bg-light);
  text-align: center;
}

.page-lottery .games-section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.page-lottery .games-section p {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: var(--text-dark);
}

.page-lottery .game-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-lottery .game-card {
  background: var(--text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery .game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-lottery .game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-lottery .game-card h3 {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-lottery .game-card p {
  font-size: 1em;
  color: #555;
  margin-bottom: 25px;
}

/* Promotions Section */
.page-lottery .promotions-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
  text-align: center;
}

.page-lottery .promotions-section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-lottery .promotions-section p {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: var(--text-light);
}

.page-lottery .promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-lottery .promo-card {
  background: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery .promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-lottery .promo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-lottery .promo-card h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-lottery .promo-card p {
  font-size: 1em;
  color: #CCCCCC;
  margin-bottom: 25px;
}

/* Security & Support Section */
.page-lottery .security-support-section {
  padding: 80px 0;
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-lottery .security-support-section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  text-align: center;
  color: var(--text-dark);
}

.page-lottery .security-support-section p {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 50px auto;
  text-align: center;
  color: var(--text-dark);
}

.page-lottery .security-support-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 50px;
  margin-top: 40px;
}

.page-lottery .security-details, .page-lottery .support-details {
  background: var(--text-light);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-lottery .security-details h3, .page-lottery .support-details h3 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-lottery .security-details p, .page-lottery .support-details p {
  font-size: 1em;
  color: #555;
  margin-bottom: 15px;
  text-align: left;
}

.page-lottery .support-details .btn-primary {
  margin-top: 20px;
}

/* FAQ Section */
.page-lottery .faq-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
  text-align: center;
}

.page-lottery .faq-section h2 {
  font-size: 2.5em;
  margin-bottom: 50px;
  color: var(--primary-color);
}

.page-lottery .faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-lottery .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-lottery .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--secondary-color);
  color: var(--text-light);
  border: 1px solid #333;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-radius 0.3s ease;
}

.page-lottery .faq-item.active .faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.page-lottery .faq-question:hover {
  background: #333333;
}

.page-lottery .faq-question h3 {
  font-size: 1.25em;
  margin: 0;
  color: var(--primary-color);
}

.page-lottery .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.page-lottery .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.page-lottery .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 25px;
  background: #2A2A2A;
  color: #CCCCCC;
  border-radius: 0 0 8px 8px;
}

.page-lottery .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 25px;
}

.page-lottery .faq-answer p {
  margin: 0;
  font-size: 1em;
  color: #CCCCCC;
}

/* Blog Section */
.page-lottery .blog-section {
  padding: 80px 0;
  background-color: var(--bg-light);
  color: var(--text-dark);
  text-align: center;
}

.page-lottery .blog-section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.page-lottery .blog-section p {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: var(--text-dark);
}

.page-lottery .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-lottery .blog-card {
  background: var(--text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery .blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-lottery .blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-lottery .blog-card h3 {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-lottery .blog-card p {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
}

.page-lottery .blog-date {
  display: block;
  font-size: 0.9em;
  color: #999;
  margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-lottery .hero-content h1 {
    font-size: 2.8em;
  }
  .page-lottery .hero-content p {
    font-size: 1em;
  }
  .page-lottery .cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }
  .page-lottery .intro-section h2, .page-lottery .quick-access-section h2, .page-lottery .games-section h2, .page-lottery .promotions-section h2, .page-lottery .security-support-section h2, .page-lottery .faq-section h2, .page-lottery .blog-section h2 {
    font-size: 2em;
  }
  .page-lottery .security-support-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-lottery .hero-section {
    padding: 40px 15px;
  }
  .page-lottery .hero-image {
    margin-bottom: 20px;
  }
  .page-lottery .hero-content h1 {
    font-size: 2.2em;
  }
  .page-lottery .hero-content p {
    font-size: 0.95em;
  }
  .page-lottery .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-lottery .intro-section, .page-lottery .quick-access-section, .page-lottery .games-section, .page-lottery .promotions-section, .page-lottery .security-support-section, .page-lottery .faq-section, .page-lottery .blog-section {
    padding: 60px 0;
  }
  .page-lottery .intro-section h2, .page-lottery .quick-access-section h2, .page-lottery .games-section h2, .page-lottery .promotions-section h2, .page-lottery .security-support-section h2, .page-lottery .faq-section h2, .page-lottery .blog-section h2 {
    font-size: 1.8em;
  }
  .page-lottery .feature-item, .page-lottery .access-card, .page-lottery .game-card, .page-lottery .promo-card, .page-lottery .blog-card {
    padding: 25px;
  }
  .page-lottery .feature-item h3, .page-lottery .access-card h3, .page-lottery .game-card h3, .page-lottery .promo-card h3, .page-lottery .blog-card h3 {
    font-size: 1.3em;
  }
  .page-lottery .game-card img, .page-lottery .promo-card img, .page-lottery .blog-card img {
    height: 160px;
  }
  .page-lottery .faq-question {
    padding: 15px 20px;
  }
  .page-lottery .faq-question h3 {
    font-size: 1.1em;
  }
  .page-lottery .faq-toggle {
    font-size: 20px;
  }
  .page-lottery .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-lottery .hero-content h1 {
    font-size: 1.8em;
  }
  .page-lottery .hero-content p {
    font-size: 0.9em;
  }
  .page-lottery .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-lottery .intro-section h2, .page-lottery .quick-access-section h2, .page-lottery .games-section h2, .page-lottery .promotions-section h2, .page-lottery .security-support-section h2, .page-lottery .faq-section h2, .page-lottery .blog-section h2 {
    font-size: 1.5em;
  }
  .page-lottery .feature-item img {
    width: 80px;
    height: 80px;
  }
  .page-lottery .security-details, .page-lottery .support-details {
    padding: 30px;
  }
  .page-lottery .security-details h3, .page-lottery .support-details h3 {
    font-size: 1.5em;
  }
  .page-lottery .faq-question h3 {
    font-size: 1em;
  }
}