.page-index {
  color: #333333; /* Default text color for light body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-index__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #C91F17; /* Main brand color for titles */
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.page-index__section-description {
  font-size: 18px;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index__cta-button,
.page-index__btn-primary {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E; /* Deep Red for button text on gold gradient */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index__cta-button:hover,
.page-index__btn-primary:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-index__btn-secondary {
  display: inline-block;
  padding: 15px 40px;
  background: #B71C1C; /* Deep Red background */
  color: #FFF5E1; /* Text Main for text */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  border: 2px solid #F2B544; /* Border color */
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index__btn-secondary:hover {
  background: #7A0E0E; /* Darker Deep Red on hover */
  border-color: #FFCC66; /* Glow color on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* 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 */
  background-color: #B71C1C; /* Background color */
}

.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 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: #FFF5E1; /* Text Main for hero content */
}

.page-index__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFD86A; /* Gold color for main title */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-index__hero-description {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF5E1;
}

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

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

.page-index__intro-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-index__intro-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-index__intro-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-index__intro-heading {
  font-size: 22px;
  font-weight: bold;
  color: #C91F17;
  margin-bottom: 15px;
}

.page-index__intro-text {
  font-size: 16px;
  color: #555555;
}

/* Quick Links Section */
.page-index__quick-links-section {
  background-color: #B71C1C; /* Background color */
  padding: 80px 0;
  color: #FFF5E1; /* Text Main for section */
}

.page-index__quick-links-section .page-index__section-title {
  color: #FFD86A; /* Gold for title */
}

.page-index__quick-links-section .page-index__section-description {
  color: #FFF5E1;
}

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

.page-index__quick-link-card {
  display: block;
  background: #D32F2F; /* Card B G */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  text-decoration: none;
  color: #FFF5E1; /* Text Main */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #F2B544; /* Border color */
}

.page-index__quick-link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background: #7A0E0E; /* Deep Red on hover */
  border-color: #FFCC66; /* Glow color on hover */
}

.page-index__quick-link-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFD86A; /* Gold for title */
}

.page-index__quick-link-text {
  font-size: 15px;
  color: #FFF5E1;
}

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

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

.page-index__game-card {
  display: block;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #333333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

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

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

.page-index__game-card-content {
  padding: 25px;
}

.page-index__game-title {
  font-size: 22px;
  font-weight: bold;
  color: #C91F17;
  margin-bottom: 10px;
}

.page-index__game-description {
  font-size: 15px;
  color: #555555;
}

/* Promotions Section */
.page-index__promotions-section {
  background-color: #B71C1C; /* Background color */
  padding: 80px 0;
  color: #FFF5E1; /* Text Main for section */
}

.page-index__promotions-section .page-index__section-title {
  color: #FFD86A; /* Gold for title */
}

.page-index__promotions-section .page-index__section-description {
  color: #FFF5E1;
}

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

.page-index__promo-card {
  background: #D32F2F; /* Card B G */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #F2B544; /* Border color */
  text-align: center;
  padding-bottom: 25px;
}

.page-index__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background: #7A0E0E; /* Deep Red on hover */
  border-color: #FFCC66; /* Glow color on hover */
}

.page-index__promo-card img {
  width: 100%;
  
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-index__promo-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD86A; /* Gold for title */
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-index__promo-text {
  font-size: 15px;
  color: #FFF5E1;
  margin-bottom: 20px;
  padding: 0 20px;
}

/* Security & CS Section */
.page-index__security-cs-section {
  background-color: #f8f8f8;
  padding: 80px 0;
}

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

.page-index__security-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-index__security-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-index__security-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-index__security-title {
  font-size: 22px;
  font-weight: bold;
  color: #C91F17;
  margin-bottom: 15px;
}

.page-index__security-text {
  font-size: 16px;
  color: #555555;
}

.page-index__contact-cta {
  text-align: center;
  margin-top: 50px;
}

.page-index__contact-text {
  font-size: 20px;
  margin-bottom: 25px;
  color: #333333;
  font-weight: bold;
}

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

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

details.page-index__faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #F2B544; /* Border color */
  overflow: hidden;
  background: #D32F2F; /* Card B G */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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: #FFF5E1; /* Text Main */
}

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: #7A0E0E; /* Deep Red on hover */
}

.page-index__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  color: #FFD86A; /* Gold for question text */
}

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

details.page-index__faq-item .page-index__faq-answer {
  padding: 0 25px 25px;
  background: #B71C1C; /* Background color for answer */
  border-radius: 0 0 12px 12px;
  color: #FFF5E1; /* Text Main for answer text */
  font-size: 16px;
}

.page-index__faq-answer p a {
  color: #FFD86A; /* Gold for links in FAQ answer */
  text-decoration: underline;
}

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

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

.page-index__blog-card {
  display: block;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #333333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

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

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

.page-index__blog-card-content {
  padding: 25px;
}

.page-index__blog-title {
  font-size: 22px;
  font-weight: bold;
  color: #C91F17;
  margin-bottom: 10px;
}

.page-index__blog-meta {
  font-size: 14px;
  color: #888888;
  margin-bottom: 15px;
}

.page-index__blog-excerpt {
  font-size: 15px;
  color: #555555;
}

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

/* Global image responsive styles */
.page-index img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .page-index__container {
    padding: 20px 15px;
  }

  .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__main-title {
    font-size: 2.2rem;
  }

  .page-index__hero-description {
    font-size: 1rem;
  }

  .page-index__cta-button,
  .page-index__btn-primary,
  .page-index__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 16px;
    margin-bottom: 15px; /* Add spacing between stacked buttons */
  }

  .page-index__quick-link-card,
  .page-index__game-card,
  .page-index__promo-card,
  .page-index__blog-card {
    margin-bottom: 20px;
  }

  .page-index__intro-grid,
  .page-index__link-grid,
  .page-index__game-grid,
  .page-index__promo-grid,
  .page-index__security-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-index__section-title {
    font-size: 28px;
  }

  .page-index__section-description {
    font-size: 16px;
  }

  .page-index__intro-heading,
  .page-index__quick-link-title,
  .page-index__game-title,
  .page-index__promo-title,
  .page-index__security-title,
  .page-index__blog-title {
    font-size: 19px;
  }

  .page-index__intro-text,
  .page-index__quick-link-text,
  .page-index__game-description,
  .page-index__promo-text,
  .page-index__security-text,
  .page-index__blog-excerpt {
    font-size: 15px;
  }

  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: 24px;
    width: 24px;
  }

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

  .page-index__contact-text {
    font-size: 18px;
  }

  /* Ensure all images are responsive */
  .page-index img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-index__section,
  .page-index__card,
  .page-index__container,
  .page-index__link-grid,
  .page-index__game-grid,
  .page-index__promo-grid,
  .page-index__security-grid,
  .page-index__blog-grid,
  .page-index__intro-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Flex wrap for multiple buttons if they are in a flex container */
  .page-index__contact-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-index__contact-cta .page-index__btn-secondary {
    margin-top: 15px; /* Spacing for stacked buttons */
  }
}