/* style/index.css */

:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --background-dark: #08160F;
  --card-background-dark: #11271B;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

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

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

.page-index__section-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-main);
}

.page-index__section-subtitle {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-secondary);
}

.page-index__btn-primary,
.page-index__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-index__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 10px rgba(42, 209, 111, 0.4);
}

.page-index__btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 15px rgba(42, 209, 111, 0.6);
}

.page-index__btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-index__btn-secondary:hover {
  background: rgba(17, 168, 78, 0.1);
  color: var(--secondary-color);
}

.page-index__dark-section {
  background-color: var(--background-dark);
  color: var(--text-main);
}

.page-index__light-bg {
  background-color: var(--card-background-dark);
  color: var(--text-main);
}

/* LOGO Carousel Section */
.page-index__logo-carousel-section {
  width: 100%;
  padding: 50px 20px 30px; /* Top: 50px fixed; left/right/bottom can be adjusted */
  background-color: var(--card-background-dark);
  border-bottom: 1px solid var(--divider-color);
}

.page-index__logo-carousel-container {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.page-index__logo-carousel {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 0;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

.page-index__logo-carousel::-webkit-scrollbar {
  display: none;
}

.page-index__logo-item {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--card-background-dark);
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: auto;
}

.page-index__logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index__logo-item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 12px;
  box-sizing: border-box;
  pointer-events: auto;
}

.page-index__logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* HERO Section */
.page-index__hero-section {
  position: relative;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0; /* Follows LOGO carousel, body padding handled by shared.css */
  margin-top: 0;
  background-color: var(--background-dark);
}

.page-index__hero-container {
  position: relative;
  margin: 0 auto;
}

.page-index__hero-image {
  width: 100%;
  margin: 0;
}

.page-index__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

/* Games Display Section */
.page-index__games-section {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 60px 20px;
  overflow-x: hidden;
  background-color: var(--background-dark);
  border-bottom: 1px solid var(--divider-color);
}

.page-index__games-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-index__games-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  align-items: start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.page-index__featured-game-area {
  width: 100%;
}

.page-index__featured-game-title {
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 25px 0;
  color: var(--gold-color); /* Yellow text */
  text-align: left;
}

.page-index__featured-game {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 12px;
  overflow: hidden;
  background: var(--card-background-dark);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__featured-game:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.page-index__featured-game-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-index__featured-game-image {
  width: 100%;
  max-width: 100%;
  height: 500px;
  overflow: hidden;
  box-sizing: border-box;
}

.page-index__featured-game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.page-index__games-grid-area {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.page-index__games-tabs {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
  align-items: center;
}

.page-index__games-tab {
  background: none;
  border: none;
  padding: 0;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  text-decoration: none;
  position: relative;
}

.page-index__games-tab:hover {
  color: var(--text-main);
}

.page-index__games-tab.active {
  color: var(--glow-color); /* Bright green text */
  text-decoration: underline;
  text-decoration-color: var(--glow-color);
  text-underline-offset: 5px;
}

.page-index__games-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: none;
}

.page-index__games-grid.active {
  display: grid;
}

.page-index__game-card {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  border-radius: 10px;
  overflow: hidden;
  background: var(--card-background-dark);
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-index__game-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-index__game-card-image {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  box-sizing: border-box;
}

.page-index__game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.page-index__game-card-title {
  font-size: 15px;
  font-weight: 500;
  margin: 10px 0 10px 0;
  padding: 0 8px;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  line-height: 1.4;
}

/* Intro Section */
.page-index__intro-section {
  padding: 80px 20px;
  text-align: center;
}

.page-index__main-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  margin-bottom: 25px;
  color: var(--glow-color);
  line-height: 1.3;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index__description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: var(--text-secondary);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Quick Access Section */
.page-index__quick-access-section {
  padding: 80px 20px;
  text-align: center;
  border-bottom: 1px solid var(--divider-color);
}

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

.page-index__access-card {
  background: var(--background-dark);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index__access-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: var(--glow-color);
}

.page-index__access-card img {
  
  
  object-fit: contain;
  margin-bottom: 15px;
}

.page-index__access-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--text-main);
}

.page-index__access-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Core Games/Services Section */
.page-index__core-games-section {
  padding: 80px 20px;
  text-align: center;
  border-bottom: 1px solid var(--divider-color);
}

.page-index__game-service-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 50px;
}

.page-index__game-service-tab {
  background: var(--card-background-dark);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 25px;
  font-size: 17px;
  font-weight: bold;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.page-index__game-service-tab:hover {
  background: var(--deep-green);
  color: var(--text-main);
}

.page-index__game-service-tab.active {
  background: var(--button-gradient);
  color: #ffffff;
  border-color: var(--glow-color);
  box-shadow: 0 4px 10px rgba(42, 209, 111, 0.4);
}

.page-index__game-service-content {
  margin-top: 30px;
}

.page-index__game-service-item {
  display: none;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: center;
  background: var(--card-background-dark);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index__game-service-item.active {
  display: grid;
}

.page-index__game-service-image {
  width: 100%;
  max-width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 8px;
}

.page-index__game-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-index__game-service-text h3 {
  font-size: 26px;
  color: var(--glow-color);
  margin-bottom: 15px;
}

.page-index__game-service-text p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.page-index__game-service-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.page-index__game-service-text ul li {
  color: var(--text-main);
  font-size: 16px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.page-index__game-service-text ul li::before {
  content: '✓';
  color: var(--glow-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Promotions Section */
.page-index__promotions-section {
  padding: 80px 20px;
  text-align: center;
  border-bottom: 1px solid var(--divider-color);
}

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

.page-index__promo-card {
  background: var(--background-dark);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  color: var(--text-main);
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: var(--glow-color);
}

.page-index__promo-card img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-index__promo-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 20px 15px 10px;
  color: var(--text-main);
}

.page-index__promo-card p {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0 15px 20px;
  line-height: 1.5;
}

.page-index__promo-card .page-index__btn-primary {
  margin-bottom: 20px;
}

/* Security & Customer Service Section */
.page-index__security-customer-service-section {
  padding: 80px 20px;
  text-align: center;
  border-bottom: 1px solid var(--divider-color);
}

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

.page-index__feature-item {
  background: var(--card-background-dark);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  color: var(--text-main);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.page-index__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: var(--glow-color);
}

.page-index__feature-item img {
  
  
  object-fit: contain;
  margin-bottom: 15px;
}

.page-index__feature-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--text-main);
}

.page-index__feature-item p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

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

/* FAQ Section */
.page-index__faq-section {
  padding: 80px 20px;
  text-align: center;
  border-bottom: 1px solid var(--divider-color);
}

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

details.page-index__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-background-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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: var(--text-main);
  font-weight: bold;
}

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: var(--deep-green);
}

.page-index__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main);
}

.page-index__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--glow-color);
  flex-shrink: 0;
  margin-left: 20px;
  width: 30px;
  text-align: center;
}

details.page-index__faq-item[open] .page-index__faq-question {
  background: var(--deep-green);
  border-bottom: 1px solid var(--divider-color);
}

details.page-index__faq-item .page-index__faq-answer {
  padding: 0 25px 25px;
  background: var(--background-dark);
  border-radius: 0 0 10px 10px;
  color: var(--text-secondary);
  font-size: 16px;
}

details.page-index__faq-item .page-index__faq-answer p {
  margin: 0;
}

/* Latest Blog Section */
.page-index__latest-blog-section {
  padding: 80px 20px;
  text-align: center;
}

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

.page-index__blog-card {
  background: var(--card-background-dark);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  color: var(--text-main);
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index__blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: var(--glow-color);
}

.page-index__blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.page-index__blog-card img {
  width: 100%;
  height: 220px; /* Consistent height for blog images */
  object-fit: cover;
  display: block;
}

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

.page-index__blog-card-content h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--text-main);
}

.page-index__blog-card-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.page-index__blog-card-content p:first-of-type {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.page-index__view-all-button {
  margin-top: 50px;
}

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

/* Responsive Design */

/* Tablet specific adjustments */
@media (max-width: 1024px) {
  .page-index__games-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .page-index__games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
  }

  .page-index__featured-game-image {
    height: 400px;
  }

  .page-index__game-service-item {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .page-index__game-service-image {
    height: 250px;
  }

  .page-index__game-service-text ul {
    margin-bottom: 15px;
  }
}

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

  .page-index__section-title {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .page-index__section-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }

  /* LOGO Carousel Mobile */
  .page-index__logo-carousel-section {
    padding: 50px 15px 20px;
  }
  
  .page-index__logo-carousel {
    gap: 12px;
  }
  
  .page-index__logo-item {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
  }
  
  .page-index__logo-item a {
    padding: 8px;
  }

  /* HERO Mobile */
  .page-index__hero-section {
    padding-top: 0 !important;
  }
  
  .page-index__hero-image img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Games Display Mobile */
  .page-index__games-section {
    padding: 40px 15px;
  }
  
  .page-index__games-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .page-index__featured-game-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  .page-index__featured-game-image {
    height: auto;
    aspect-ratio: 16 / 10;
    max-height: 300px;
  }
  
  .page-index__featured-game-image img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }
  
  .page-index__games-tabs {
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .page-index__games-tab {
    font-size: 17px;
  }
  
  .page-index__games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }
  
  .page-index__game-card-image {
    aspect-ratio: 1 / 1;
  }
  
  .page-index__game-card-image img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }
  
  .page-index__game-card-title {
    font-size: 13px;
    margin: 8px 0 8px 0;
    padding: 0 5px;
  }

  /* Intro Section Mobile */
  .page-index__intro-section {
    padding: 60px 15px;
  }

  .page-index__main-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .page-index__description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-index__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
  }

  .page-index__btn-primary,
  .page-index__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 15px;
    padding: 12px 20px;
  }

  /* Quick Access Mobile */
  .page-index__quick-access-section {
    padding: 60px 15px;
  }

  .page-index__access-links-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .page-index__access-card {
    padding: 25px;
  }

  .page-index__access-card h3 {
    font-size: 18px;
  }

  .page-index__access-card p {
    font-size: 14px;
  }

  /* Core Games Mobile */
  .page-index__core-games-section {
    padding: 60px 15px;
  }

  .page-index__game-service-tabs {
    gap: 10px;
    margin-bottom: 30px;
  }

  .page-index__game-service-tab {
    font-size: 14px;
    padding: 10px 15px;
  }

  .page-index__game-service-item {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .page-index__game-service-image {
    height: 200px;
  }

  .page-index__game-service-image img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  .page-index__game-service-text h3 {
    font-size: 22px;
    margin-top: 20px;
  }

  .page-index__game-service-text p,
  .page-index__game-service-text ul li {
    font-size: 15px;
  }

  /* Promotions Mobile */
  .page-index__promotions-section {
    padding: 60px 15px;
  }

  .page-index__promotions-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
  }

  .page-index__promo-card img {
    
  }

  .page-index__promo-card h3 {
    font-size: 18px;
    margin: 15px 15px 8px;
  }

  .page-index__promo-card p {
    font-size: 14px;
    margin: 0 15px 15px;
  }

  .page-index__promo-card .page-index__btn-primary {
    margin-bottom: 15px;
  }

  /* Security & Customer Service Mobile */
  .page-index__security-customer-service-section {
    padding: 60px 15px;
  }

  .page-index__features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
  }

  .page-index__feature-item {
    padding: 25px;
  }

  .page-index__feature-item h3 {
    font-size: 18px;
  }

  .page-index__feature-item p {
    font-size: 14px;
  }

  .page-index__contact-cta {
    margin-top: 40px;
  }

  /* FAQ Mobile */
  .page-index__faq-section {
    padding: 60px 15px;
  }

  .page-index__faq-list {
    margin: 30px auto 0 auto;
  }

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

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

  .page-index__faq-toggle {
    font-size: 24px;
    margin-left: 15px;
    width: 25px;
  }

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

  /* Latest Blog Mobile */
  .page-index__latest-blog-section {
    padding: 60px 15px;
  }

  .page-index__blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
  }

  .page-index__blog-card img {
    
  }

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

  .page-index__blog-card-content h3 {
    font-size: 18px;
  }

  .page-index__blog-card-content p {
    font-size: 13px;
  }

  .page-index__view-all-button {
    margin-top: 40px;
  }

  /* General Image and Container Mobile */
  .page-index img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  /* Specific overrides for object-fit images */
  .page-index__game-card-image img,
  .page-index__featured-game-image img,
  .page-index__game-service-image img,
  .page-index__promo-card img,
  .page-index__blog-card img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }
  
  .page-index__access-card img,
  .page-index__feature-item img {
    
    
    
  }

  .page-index__section,
  .page-index__card,
  .page-index__container,
  .page-index__access-card,
  .page-index__promo-card,
  .page-index__feature-item,
  .page-index__blog-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Buttons and Button Containers Mobile */
  .page-index__cta-button,
  .page-index__btn-primary,
  .page-index__btn-secondary,
  .page-index a[class*="button"],
  .page-index a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-index__cta-buttons,
  .page-index__button-group,
  .page-index__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    flex-wrap: wrap !important;
    gap: 15px;
  }
  
  .page-index__cta-buttons {
    flex-direction: column !important;
  }
}