.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; /* body padding-top handled by shared.css */
  background: linear-gradient(180deg, #6FA3FF 0%, #2F6BFF 100%);
  color: #ffffff;
}

.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: 8px;
  object-fit: cover;
}

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

.page-index__hero-content h1 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-index__hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f8ff;
}

.page-index__hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 400px;
}

.page-index__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-index__cta-button--primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-index__cta-button--primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-index__cta-button--secondary {
  background: #ffffff;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
}

.page-index__cta-button--secondary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-index__section {
  padding: 60px 20px;
  text-align: center;
}

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

.page-index__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #1F2D3D;
  margin-bottom: 40px;
  line-height: 1.3;
}

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

.page-index__intro-card {
  text-align: left;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  background: #FFFFFF;
  color: #1F2D3D;
  border: 1px solid #D6E2FF;
}

.page-index__intro-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 15px;
}

.page-index__intro-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-index__dark-section {
  background: #2F6BFF;
  color: #ffffff;
}

.page-index__dark-section .page-index__section-title {
  color: #ffffff;
}

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

.page-index__access-link-item {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-index__access-link-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

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

.page-index__game-card {
  text-align: left;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  background: #FFFFFF;
  color: #1F2D3D;
  border: 1px solid #D6E2FF;
}

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

.page-index__game-card .page-index__game-title {
  padding: 20px 20px 10px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
}

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

.page-index__game-card .page-index__game-title a:hover {
  text-decoration: underline;
}

.page-index__game-card p {
  padding: 0 20px 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-index__light-bg {
  background: #F4F7FB;
}

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

.page-index__promo-card {
  text-align: left;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  background: #FFFFFF;
  color: #1F2D3D;
  border: 1px solid #D6E2FF;
}

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

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

.page-index__promo-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-index__promo-title a {
  color: #2F6BFF;
  text-decoration: none;
}

.page-index__promo-title a:hover {
  text-decoration: underline;
}

.page-index__promo-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #1F2D3D;
  margin-bottom: 20px;
}

.page-index__btn-small {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-index__btn-small:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

.page-index__info-card {
  text-align: left;
  padding: 25px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-index__info-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #A5C4FF;
  margin-bottom: 15px;
}

.page-index__info-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f0f8ff;
}

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

.page-index__faq-list {
  margin-top: 30px;
  text-align: left;
}

details.page-index__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #D6E2FF;
  overflow: hidden;
  background: #FFFFFF;
}

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: #1F2D3D;
}

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: #f5f5f5;
}

.page-index__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #1F2D3D;
}

.page-index__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #2F6BFF;
  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: #F4F7FB;
  border-radius: 0 0 5px 5px;
  color: #1F2D3D;
  line-height: 1.6;
}

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

.page-index__blog-card {
  text-align: left;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  background: #FFFFFF;
  color: #1F2D3D;
  border: 1px solid #D6E2FF;
}

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

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

.page-index__blog-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

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

.page-index__blog-title a:hover {
  text-decoration: underline;
}

.page-index__blog-date {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 15px;
}

.page-index__blog-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #1F2D3D;
  margin-bottom: 20px;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-index__hero-section {
    padding: 50px 15px;
    padding-top: 10px;
  }
  .page-index__hero-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-index__section {
    padding: 50px 15px;
  }
  .page-index__section-title {
    font-size: clamp(1.6rem, 4.5vw, 2.5rem);
  }
  .page-index__game-card img, .page-index__promo-card img, .page-index__blog-card img {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .page-index__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-index__hero-content h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-index__hero-content p {
    font-size: 1rem;
  }
  .page-index__hero-cta-group {
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
  }
  .page-index__cta-button, .page-index__btn-small, .page-index__access-link-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 16px;
  }
  .page-index__section {
    padding: 40px 15px;
  }
  .page-index__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }
  .page-index__intro-grid, .page-index__access-links-grid, .page-index__games-grid, .page-index__promotions-grid, .page-index__security-support-grid, .page-index__blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-index__game-card img, .page-index__promo-card img, .page-index__blog-card img {
    
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-index__game-card, .page-index__promo-card, .page-index__blog-card, .page-index__intro-card, .page-index__info-card {
    padding: 20px;
  }
  .page-index__game-card .page-index__game-title, .page-index__promo-title, .page-index__blog-title {
    font-size: 1.2rem;
  }
  .page-index__faq-qtext {
    font-size: 1rem;
  }
  details.page-index__faq-item summary.page-index__faq-question {
    padding: 15px;
  }
  details.page-index__faq-item .page-index__faq-answer {
    padding: 0 15px 15px;
  }
  .page-index__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-index img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-index__section, .page-index__card, .page-index__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}