.page-index {
  color: #FFF6D6; /* Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #0A0A0A; /* Body Background */
}

.page-index__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-index h1, .page-index h2, .page-index h3 {
  color: #FFD36B; /* Auxiliary color for headings */
  text-align: center;
  margin-bottom: 25px;
}

.page-index h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.page-index h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  margin-top: 50px;
  margin-bottom: 30px;
}

.page-index h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  margin-bottom: 15px;
}

.page-index p {
  text-align: center;
  margin-bottom: 20px;
  font-size: 16px;
}

.page-index__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-index__cta-button:hover {
  background: linear-gradient(180deg, #FFE080 0%, #E6B33D 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 211, 107, 0.4);
}

/* HERO Section */
.page-index__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
}

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

.page-index__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-index__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid #3A2A12; /* Border */
}

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

.page-index__hero-content p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  color: #FFF6D6;
}

/* Introduction Section */
.page-index__introduction-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-index__introduction-section p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
  line-height: 1.7;
  color: #FFF6D6;
}

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

.page-index__feature-item {
  background-color: #111111; /* Card B G */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(255, 211, 107, 0.2);
}

.page-index__feature-item img {
  
  
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 2px solid #F2C14E; /* Primary color */
  padding: 5px;
}

.page-index__feature-item h3 {
  color: #F2C14E; /* Primary color */
  margin-bottom: 10px;
}

.page-index__feature-item p {
  font-size: 15px;
  color: #FFF6D6;
  text-align: center;
}

/* Quick Access Section */
.page-index__quick-access-section {
  padding: 60px 0;
  background-color: #111111; /* Card B G */
}

.page-index__quick-access-section p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF6D6;
  font-size: 17px;
}

.page-index__button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-index__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(255, 211, 107, 0.2);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-index__btn-primary:hover {
  background: linear-gradient(180deg, #FFE080 0%, #E6B33D 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 211, 107, 0.3);
}

/* Games & Services Section */
.page-index__games-services-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-index__games-services-section p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
  color: #FFF6D6;
}

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

.page-index__game-card {
  background-color: #111111; /* Card B G */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(255, 211, 107, 0.2);
}

.page-index__game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #3A2A12;
}

.page-index__game-card h3 {
  margin-bottom: 15px;
  color: #FFD36B;
}

.page-index__game-card h3 a {
  color: #FFD36B;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index__game-card h3 a:hover {
  color: #F2C14E;
}

.page-index__game-card p {
  font-size: 15px;
  color: #FFF6D6;
  text-align: center;
  margin-bottom: 20px;
}

.page-index__game-card-link {
  display: inline-block;
  padding: 10px 25px;
  background: #F2C14E; /* Primary color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index__game-card-link:hover {
  background-color: #FFD36B; /* Auxiliary color */
}

/* Promotions Section */
.page-index__promotions-section {
  padding: 60px 0;
  background-color: #111111; /* Card B G */
}

.page-index__promotions-section p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
  color: #FFF6D6;
}

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

.page-index__promo-card {
  background-color: #0A0A0A; /* Background */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(255, 211, 107, 0.2);
}

.page-index__promo-card img {
  width: 100%;
  
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #3A2A12;
}

.page-index__promo-card h3 {
  margin-bottom: 15px;
  color: #FFD36B;
}

.page-index__promo-card p {
  font-size: 15px;
  color: #FFF6D6;
  text-align: center;
  margin-bottom: 20px;
}

.page-index__promo-button {
  display: inline-block;
  padding: 10px 25px;
  background: #F2C14E; /* Primary color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index__promo-button:hover {
  background-color: #FFD36B; /* Auxiliary color */
}

/* Security & Support Section */
.page-index__security-support-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-index__security-support-section p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
  color: #FFF6D6;
}

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

.page-index__security-item {
  background-color: #111111; /* Card B G */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__security-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(255, 211, 107, 0.2);
}

.page-index__security-item img {
  
  
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 2px solid #F2C14E; /* Primary color */
  padding: 5px;
}

.page-index__security-item h3 {
  color: #F2C14E; /* Primary color */
  margin-bottom: 10px;
}

.page-index__security-item p {
  font-size: 15px;
  color: #FFF6D6;
  text-align: center;
}

.page-index__contact-info {
  margin-top: 60px;
  text-align: center;
  color: #FFF6D6;
  font-size: 17px;
}

.page-index__contact-info ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-index__contact-info li {
  margin-bottom: 10px;
}

.page-index__contact-button {
  display: inline-block;
  padding: 10px 25px;
  background: #F2C14E; /* Primary color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 15px;
}

.page-index__contact-button:hover {
  background-color: #FFD36B; /* Auxiliary color */
}

/* FAQ Section */
.page-index__faq-section {
  padding: 60px 0;
  background-color: #111111; /* Card B G */
}

.page-index__faq-section p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
  color: #FFF6D6;
}

.page-index__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

details.page-index__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border */
  overflow: hidden;
  background: #0A0A0A; /* Background */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

details.page-index__faq-item summary.page-index__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFD36B;
}

details.page-index__faq-item summary.page-index__faq-question::-webkit-details-marker {
  display: none;
}

details.page-index__faq-item summary.page-index__faq-question:hover {
  background: rgba(255, 211, 107, 0.05);
}

.page-index__faq-qtext {
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFD36B;
}

.page-index__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #F2C14E; /* Primary color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-index__faq-item .page-index__faq-answer {
  padding: 0 20px 20px;
  background: #0A0A0A; /* Background */
  border-top: 1px solid #3A2A12;
  border-radius: 0 0 10px 10px;
  color: #FFF6D6;
  font-size: 15px;
  line-height: 1.6;
}

.page-index__faq-answer p {
  text-align: left;
  margin-bottom: 0;
}

/* Blog & News Section */
.page-index__blog-news-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-index__blog-news-section p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
  color: #FFF6D6;
}

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

.page-index__blog-card {
  background-color: #111111; /* Card B G */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(255, 211, 107, 0.2);
}

.page-index__blog-card img {
  width: 100%;
  
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #3A2A12;
}

.page-index__blog-card h3 {
  margin-bottom: 10px;
  color: #FFD36B;
  min-height: 60px; /* Ensure consistent height for titles */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-index__blog-card h3 a {
  color: #FFD36B;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

.page-index__blog-card h3 a:hover {
  color: #F2C14E;
}

.page-index__blog-card p {
  font-size: 15px;
  color: #FFF6D6;
  text-align: center;
  margin-bottom: 15px;
  min-height: 45px;
}

.page-index__blog-date {
  font-size: 13px;
  color: #F2C14E; /* Primary color */
  display: block;
  margin-top: 10px;
}

.page-index__view-all-button-wrapper {
  text-align: center;
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-index__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-index__hero-image img {
    border-radius: 8px;
  }

  .page-index__hero-content h1 {
    font-size: clamp(24px, 6vw, 36px);
  }

  .page-index__hero-content p {
    font-size: 16px;
  }

  .page-index__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: 0;
    margin-right: 0;
  }

  .page-index__container {
    padding: 30px 15px;
  }

  .page-index h2 {
    font-size: clamp(20px, 5vw, 32px);
    margin-top: 40px;
    margin-bottom: 25px;
  }

  .page-index h3 {
    font-size: clamp(18px, 4.5vw, 24px);
  }

  .page-index p {
    font-size: 15px;
  }

  .page-index__feature-item,
  .page-index__game-card,
  .page-index__promo-card,
  .page-index__security-item,
  .page-index__blog-card {
    padding: 20px;
  }

  .page-index__feature-item img,
  .page-index__security-item img {
    
    
  }

  .page-index__button-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-index__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-index img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-index__introduction-section,
  .page-index__quick-access-section,
  .page-index__games-services-section,
  .page-index__promotions-section,
  .page-index__security-support-section,
  .page-index__faq-section,
  .page-index__blog-news-section {
    padding: 40px 0;
  }

  details.page-index__faq-item summary.page-index__faq-question {
    padding: 15px;
  }

  .page-index__faq-qtext {
    font-size: 16px;
  }

  .page-index__faq-toggle {
    font-size: 20px;
  }

  details.page-index__faq-item .page-index__faq-answer {
    padding: 0 15px 15px;
  }

  .page-index__blog-card h3 {
    min-height: auto;
  }

  .page-index__blog-card p {
    min-height: auto;
  }
}