/* style/index-about-66-lottery.css */

:root {
  --primary-color: #CC0000;
  --secondary-color: #FFD700;
  --dark-background: #1a1a1a;
  --light-text: #ffffff;
  --dark-text: #333333;
  --grey-text: #cccccc;
  --light-grey-bg: #f5f5f5;
  --border-color: #e0e0e0;
}

.page-index-about-66-lottery {
  font-family: 'Arial', sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-index-about-66-lottery__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-about-66-lottery__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-about-66-lottery__section:nth-of-type(odd) {
  background-color: var(--light-grey-bg);
}

.page-index-about-66-lottery__section-title {
  font-size: 38px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.page-index-about-66-lottery__section-description {
  font-size: 18px;
  color: var(--dark-text);
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* HERO Section */
.page-index-about-66-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(--dark-background);
  color: var(--light-text);
}

.page-index-about-66-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-index-about-66-lottery__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-index-about-66-lottery__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-about-66-lottery__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-index-about-66-lottery__hero-title {
  font-size: 52px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-about-66-lottery__hero-description {
  font-size: 20px;
  color: var(--light-text);
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-index-about-66-lottery__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-index-about-66-lottery__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--light-text);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.page-index-about-66-lottery__cta-button:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-index-about-66-lottery__cta-button--secondary {
  background: transparent;
  border-color: var(--light-text);
  color: var(--light-text);
}

.page-index-about-66-lottery__cta-button--secondary:hover {
  background: var(--light-text);
  color: var(--primary-color);
  border-color: var(--light-text);
}

/* Intro Section */
.page-index-about-66-lottery__intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-about-66-lottery__intro-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-about-66-lottery__intro-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-index-about-66-lottery__intro-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index-about-66-lottery__intro-heading {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-about-66-lottery__intro-text {
  font-size: 16px;
  color: var(--dark-text);
}

/* Quick Links Section */
.page-index-about-66-lottery__quick-links {
  background-color: var(--dark-background);
  color: var(--light-text);
}

.page-index-about-66-lottery__quick-links .page-index-about-66-lottery__section-title {
  color: var(--secondary-color);
}

.page-index-about-66-lottery__quick-links .page-index-about-66-lottery__section-description {
  color: var(--grey-text);
}

.page-index-about-66-lottery__links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-about-66-lottery__link-card {
  display: block;
  background: #333333;
  padding: 30px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--light-text);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-index-about-66-lottery__link-card:hover {
  transform: translateY(-8px);
  background-color: var(--primary-color);
}

.page-index-about-66-lottery__link-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  object-fit: contain;
}

.page-index-about-66-lottery__link-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.page-index-about-66-lottery__link-text {
  font-size: 15px;
  color: var(--grey-text);
}

/* Core Games Section */
.page-index-about-66-lottery__core-games {
  background-color: var(--light-grey-bg);
}

.page-index-about-66-lottery__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-about-66-lottery__game-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-about-66-lottery__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-index-about-66-lottery__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-index-about-66-lottery__game-title {
  font-size: 24px;
  color: var(--primary-color);
  padding: 20px 20px 10px;
  font-weight: bold;
}

.page-index-about-66-lottery__game-text {
  font-size: 16px;
  color: var(--dark-text);
  padding: 0 20px 20px;
}

.page-index-about-66-lottery__game-button {
  display: inline-block;
  background: var(--primary-color);
  color: var(--light-text);
  padding: 12px 25px;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  width: 100%;
  text-align: center;
}

.page-index-about-66-lottery__game-button:hover {
  background-color: var(--secondary-color);
}

/* Promotions Section */
.page-index-about-66-lottery__promotions {
  background-color: #ffffff;
}

.page-index-about-66-lottery__promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-about-66-lottery__promo-card {
  background: var(--light-grey-bg);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-about-66-lottery__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-index-about-66-lottery__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.page-index-about-66-lottery__promo-title {
  font-size: 22px;
  color: var(--primary-color);
  padding: 20px 20px 10px;
  font-weight: bold;
}

.page-index-about-66-lottery__promo-text {
  font-size: 15px;
  color: var(--dark-text);
  padding: 0 20px 20px;
}

.page-index-about-66-lottery__promo-button {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--dark-text);
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  width: 100%;
  text-align: center;
}

.page-index-about-66-lottery__promo-button:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
}

/* Safety & Support Section */
.page-index-about-66-lottery__safety-support {
  background-color: var(--dark-background);
  color: var(--light-text);
}

.page-index-about-66-lottery__safety-support .page-index-about-66-lottery__section-title {
  color: var(--secondary-color);
}

.page-index-about-66-lottery__safety-support .page-index-about-66-lottery__section-description {
  color: var(--grey-text);
}

.page-index-about-66-lottery__safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-about-66-lottery__safety-item {
  background: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-index-about-66-lottery__safety-item:hover {
  transform: translateY(-8px);
  background-color: #444444;
}

.page-index-about-66-lottery__safety-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index-about-66-lottery__safety-heading {
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-about-66-lottery__safety-text {
  font-size: 16px;
  color: var(--grey-text);
}

.page-index-about-66-lottery__contact-cta {
  margin-top: 50px;
}

.page-index-about-66-lottery__contact-cta .page-index-about-66-lottery__cta-button {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--dark-text);
}

.page-index-about-66-lottery__contact-cta .page-index-about-66-lottery__cta-button:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--light-text);
}

/* FAQ Section */
.page-index-about-66-lottery__faq {
  background-color: #ffffff;
}

.page-index-about-66-lottery__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--light-grey-bg);
}

.faq-question h3 {
  margin: 0;
  font-size: 18px;
  color: var(--dark-text);
  font-weight: bold;
  text-align: left;
}

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

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--secondary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  background: #f9f9f9;
  text-align: left;
}

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

.faq-answer p {
  margin-bottom: 15px;
  color: var(--dark-text);
  font-size: 16px;
}

.page-index-about-66-lottery__faq-action-button {
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary-color);
  color: var(--light-text);
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.page-index-about-66-lottery__faq-action-button:hover {
  background: var(--secondary-color);
  color: var(--dark-text);
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Blog Section */
.page-index-about-66-lottery__blog {
  background-color: var(--light-grey-bg);
}

.page-index-about-66-lottery__blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-about-66-lottery__blog-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-about-66-lottery__blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-index-about-66-lottery__blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-index-about-66-lottery__blog-content {
  padding: 20px;
}

.page-index-about-66-lottery__blog-title {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index-about-66-lottery__blog-title a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-index-about-66-lottery__blog-title a:hover {
  color: var(--secondary-color);
}

.page-index-about-66-lottery__blog-excerpt {
  font-size: 15px;
  color: var(--dark-text);
  margin-bottom: 15px;
}

.page-index-about-66-lottery__read-more {
  display: inline-block;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  transition: color 0.3s ease;
}

.page-index-about-66-lottery__read-more:hover {
  color: var(--primary-color);
}

.page-index-about-66-lottery__blog-cta {
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-about-66-lottery__section-title {
    font-size: 32px;
  }
  .page-index-about-66-lottery__hero-title {
    font-size: 44px;
  }
  .page-index-about-66-lottery__hero-description {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .page-index-about-66-lottery__section {
    padding: 40px 0;
  }
  .page-index-about-66-lottery__section-title {
    font-size: 28px;
  }
  .page-index-about-66-lottery__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-index-about-66-lottery__hero-section {
    padding: 40px 15px;
  }
  .page-index-about-66-lottery__hero-title {
    font-size: 36px;
  }
  .page-index-about-66-lottery__hero-description {
    font-size: 16px;
  }
  .page-index-about-66-lottery__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-index-about-66-lottery__intro-grid,
  .page-index-about-66-lottery__links-grid,
  .page-index-about-66-lottery__games-grid,
  .page-index-about-66-lottery__promos-grid,
  .page-index-about-66-lottery__safety-grid,
  .page-index-about-66-lottery__blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-index-about-66-lottery__intro-icon,
  .page-index-about-66-lottery__link-icon,
  .page-index-about-66-lottery__safety-icon {
    width: 80px;
    height: 80px;
  }
  .page-index-about-66-lottery__intro-heading,
  .page-index-about-66-lottery__link-title,
  .page-index-about-66-lottery__game-title,
  .page-index-about-66-lottery__promo-title,
  .page-index-about-66-lottery__safety-heading,
  .page-index-about-66-lottery__blog-title {
    font-size: 20px;
  }
  .faq-question h3 {
    font-size: 16px;
  }
  .faq-question {
    padding: 12px 15px;
  }
  .faq-answer {
    padding: 0 15px;
  }
  .faq-item.active .faq-answer {
    padding: 12px 15px;
  }
}

@media (max-width: 480px) {
  .page-index-about-66-lottery__hero-title {
    font-size: 28px;
  }
  .page-index-about-66-lottery__hero-description {
    font-size: 15px;
  }
  .page-index-about-66-lottery__hero-actions {
    flex-direction: column;
  }
  .page-index-about-66-lottery__cta-button {
    width: 100%;
  }
  .page-index-about-66-lottery__section-title {
    font-size: 24px;
  }
  .page-index-about-66-lottery__intro-item,
  .page-index-about-66-lottery__link-card,
  .page-index-about-66-lottery__game-card,
  .page-index-about-66-lottery__promo-card,
  .page-index-about-66-lottery__safety-item,
  .page-index-about-66-lottery__blog-card {
    padding: 20px;
  }
  .page-index-about-66-lottery__intro-icon,
  .page-index-about-66-lottery__link-icon,
  .page-index-about-66-lottery__safety-icon {
    width: 60px;
    height: 60px;
  }
  .page-index-about-66-lottery__intro-heading,
  .page-index-about-66-lottery__link-title,
  .page-index-about-66-lottery__game-title,
  .page-index-about-66-lottery__promo-title,
  .page-index-about-66-lottery__safety-heading,
  .page-index-about-66-lottery__blog-title {
    font-size: 18px;
  }
  .faq-question h3 {
    font-size: 15px;
  }
}