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

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

.page-index__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #FFD36B; /* Auxiliary color */
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  position: relative;
  text-transform: uppercase;
}

.page-index__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #FFD36B, transparent);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-index__section-description {
  text-align: center;
  font-size: 18px;
  color: #FFF6D6;
  margin-bottom: 50px;
}

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

.page-index a:hover {
  color: #F2C14E;
}

/* 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;
  position: relative;
  z-index: 1;
}

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

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

.page-index__hero-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: 800;
  color: #FFD36B; /* Auxiliary color */
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 1px;
  text-shadow: 0 0 15px rgba(255, 211, 107, 0.6);
}

.page-index__hero-description {
  font-size: 1.2em;
  color: #FFF6D6; /* Text Main color */
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-index__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-index__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-index__cta-button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #0A0A0A; /* Dark text for bright button */
  border: none;
}

.page-index__cta-button--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.4);
}

.page-index__cta-button--secondary {
  background: #111111; /* Card BG */
  color: #FFD36B; /* Auxiliary color */
  border: 2px solid #3A2A12; /* Border color */
}

.page-index__cta-button--secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.4);
  border-color: #FFD36B;
}

/* Intro Section */
.page-index__intro-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

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

.page-index__intro-item {
  background: #111111; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid #3A2A12;
}

.page-index__intro-item img {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-index__intro-subtitle {
  font-size: 24px;
  color: #F2C14E; /* Primary color */
  margin-bottom: 15px;
}

.page-index__intro-text {
  font-size: 1.1em;
  color: #FFF6D6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Quick Access Section */
.page-index__quick-access-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

.page-index__access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.page-index__access-card {
  background: #111111;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid #3A2A12;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.page-index__access-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 211, 107, 0.4);
}

.page-index__access-title {
  font-size: 22px;
  color: #FFD36B;
  margin-bottom: 10px;
}

.page-index__access-card p {
  color: #FFF6D6;
  font-size: 1em;
}

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

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

.page-index__game-card {
  background: #111111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid #3A2A12;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index__game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-index__game-card .page-index__game-title {
  font-size: 22px;
  color: #F2C14E;
  padding: 15px 20px 0;
}

.page-index__game-card .page-index__game-title a {
  color: #F2C14E;
  text-decoration: none;
}

.page-index__game-card p {
  color: #FFF6D6;
  padding: 10px 20px 20px;
  font-size: 0.95em;
}

/* Promotions Section */
.page-index__promotions-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

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

.page-index__promo-card {
  background: #111111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid #3A2A12;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

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

.page-index__promo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-index__promo-title {
  font-size: 22px;
  color: #FFD36B;
  padding: 20px 20px 0;
}

.page-index__promo-card p {
  color: #FFF6D6;
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-index__promo-button {
  display: inline-block;
  background: #F2C14E; /* Primary color */
  color: #0A0A0A;
  padding: 10px 25px;
  border-radius: 5px;
  margin-bottom: 20px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-index__promo-button:hover {
  background: #FFD36B;
}

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

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

.page-index__ss-item {
  background: #111111;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid #3A2A12;
}

.page-index__ss-item img {
  width: 100%;
  
  height: auto;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-index__ss-title {
  font-size: 24px;
  color: #F2C14E;
  margin-bottom: 15px;
}

.page-index__ss-item p {
  color: #FFF6D6;
  font-size: 1em;
}

/* FAQ Section */
.page-index__faq-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

.page-index__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

details.page-index__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #3A2A12;
  overflow: hidden;
  background: #111111; /* Card BG */
  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 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFD36B;
  font-size: 1.1em;
  font-weight: 600;
}

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: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFD36B;
}

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

details.page-index__faq-item .page-index__faq-answer {
  padding: 0 25px 20px;
  background: #0A0A0A;
  border-top: 1px solid #3A2A12;
  border-radius: 0 0 8px 8px;
  color: #FFF6D6;
}

.page-index__faq-answer p {
  margin: 0;
  font-size: 1em;
}

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

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

.page-index__blog-card {
  background: #111111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid #3A2A12;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-index__blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-index__blog-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-index__blog-title {
  font-size: 20px;
  color: #F2C14E;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-index__blog-title a {
  color: #F2C14E;
  text-decoration: none;
}

.page-index__blog-date {
  font-size: 0.9em;
  color: #FFD36B;
  margin-bottom: 15px;
}

.page-index__blog-summary {
  color: #FFF6D6;
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index__blog-readmore {
  display: inline-block;
  color: #F2C14E;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index__blog-readmore:hover {
  color: #FFD36B;
}

.page-index__view-all {
  text-align: center;
  margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-index__section-title {
    font-size: 32px;
  }
  .page-index__hero-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-index__hero-description {
    font-size: 1.1em;
  }
  .page-index__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-index__intro-item, .page-index__access-card, .page-index__game-card, .page-index__promo-card, .page-index__ss-item, .page-index__blog-card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .page-index__container {
    padding: 0 15px;
  }
  .page-index__section-title {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .page-index__section-description {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .page-index__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-index__hero-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-index__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-index__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index__cta-button, .page-index__promo-button, .page-index__blog-readmore {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-index__hero-buttons, .page-index__access-grid, .page-index__games-grid, .page-index__promo-grid, .page-index__ss-grid, .page-index__blog-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
  .page-index img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-index__intro-item, .page-index__access-card, .page-index__game-card, .page-index__promo-card, .page-index__ss-item, .page-index__blog-card {
    padding: 20px;
  }
  .page-index__game-card img, .page-index__promo-card img, .page-index__blog-card img {
    
  }
  .page-index__faq-qtext {
    font-size: 16px;
  }
  .page-index__faq-toggle {
    font-size: 24px;
  }
  details.page-index__faq-item summary.page-index__faq-question {
    padding: 15px 20px;
  }
  details.page-index__faq-item .page-index__faq-answer {
    padding: 0 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-index__section-title {
    font-size: 24px;
  }
  .page-index__hero-title {
    font-size: clamp(1.5em, 8vw, 2em);
  }
  .page-index__hero-description {
    font-size: 0.9em;
  }
  .page-index__cta-button {
    font-size: 15px;
    padding: 10px 25px;
  }
  .page-index__intro-subtitle, .page-index__access-title, .page-index__game-title, .page-index__promo-title, .page-index__ss-title, .page-index__blog-title {
    font-size: 18px;
  }
  .page-index__game-card img, .page-index__promo-card img, .page-index__blog-card img {
    
  }
}