.page-index {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #F5F7FA;
}

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

.page-index__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #E53935;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

.page-index__text-block {
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 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 4px 10px rgba(229, 57, 53, 0.3);
}

.page-index__cta-button:hover {
  background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(229, 57, 53, 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 */
  background-color: #F5F7FA;
  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 8px 20px rgba(0, 0, 0, 0.15);
}

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

.page-index__main-title {
  font-size: 48px;
  font-weight: 900;
  color: #E53935;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.page-index__hero-description {
  font-size: 20px;
  color: #333333;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-index__feature-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #E0E0E0;
}

.page-index__feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-index__feature-card img {
  
  
  margin-bottom: 20px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-index__feature-card h3 {
  font-size: 24px;
  color: #E53935;
  margin-bottom: 15px;
}

.page-index__feature-card p {
  font-size: 16px;
  color: #333333;
}

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

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

.page-index__quick-link-card {
  display: block;
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: #333333;
  border: 1px solid #E0E0E0;
}

.page-index__quick-link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-index__quick-link-card h3 {
  font-size: 22px;
  color: #E53935;
  margin-bottom: 10px;
}

.page-index__quick-link-card p {
  font-size: 15px;
  color: #555555;
}

/* Core Games Section */
.page-index__core-games-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-index__game-category {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.page-index__game-category:last-of-type {
  margin-bottom: 0;
}

.page-index__game-category--reverse {
  flex-direction: row-reverse;
}

.page-index__game-category img {
  flex: 1;
  min-width: 400px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-index__game-content {
  flex: 1;
  min-width: 400px;
}

.page-index__game-content h3 {
  font-size: 32px;
  color: #E53935;
  margin-bottom: 20px;
}

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

.page-index__game-content h3 a:hover {
  color: #FF5A4F;
}

.page-index__game-content p {
  font-size: 17px;
  color: #333333;
  margin-bottom: 25px;
}

.page-index__game-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index__game-button:hover {
  background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%);
  transform: translateY(-2px);
}

/* Promotions Section */
.page-index__promotions-section {
  padding: 60px 0;
  background-color: #F5F7FA;
  text-align: center;
}

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

.page-index__promo-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #E0E0E0;
}

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

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

.page-index__promo-card h3 {
  font-size: 22px;
  color: #E53935;
  margin: 20px 20px 10px;
}

.page-index__promo-card p {
  font-size: 15px;
  color: #555555;
  margin: 0 20px 20px;
}

.page-index__promo-button {
  display: inline-block;
  padding: 10px 20px;
  background: #FF5A4F;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease;
}

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

.page-index__all-promotions {
  margin-top: 60px;
}

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

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

.page-index__security-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 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(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-index__security-item img {
  
  
  margin-bottom: 20px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-index__security-item h3 {
  font-size: 22px;
  color: #E53935;
  margin-bottom: 15px;
}

.page-index__security-item p {
  font-size: 15px;
  color: #333333;
}

.page-index__contact-info {
  margin-top: 60px;
  padding: 30px;
  background-color: #F5F7FA;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #E0E0E0;
}

.page-index__contact-info p {
  font-size: 17px;
  color: #333333;
  margin-bottom: 20px;
}

.page-index__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

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

.page-index__contact-list li a {
  color: #E53935;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease;
}

.page-index__contact-list li a:hover {
  color: #FF5A4F;
}

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

.page-index__faq-list {
  margin-top: 40px;
}

details.page-index__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #E0E0E0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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;
}

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

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

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

details.page-index__faq-item .page-index__faq-answer {
  padding: 0 25px 20px;
  background: #fefefe;
  border-radius: 0 0 8px 8px;
  font-size: 16px;
  color: #555555;
}

/* Blog Section */
.page-index__blog-section {
  padding: 60px 0;
  background-color: #ffffff;
  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-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #E0E0E0;
}

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

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

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

.page-index__blog-date {
  display: block;
  font-size: 14px;
  color: #777777;
  margin-bottom: 10px;
}

.page-index__blog-card h3 {
  font-size: 22px;
  color: #E53935;
  margin-bottom: 15px;
  line-height: 1.3;
}

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

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

.page-index__blog-card p {
  font-size: 15px;
  color: #555555;
  margin-bottom: 20px;
}

.page-index__read-more {
  display: inline-block;
  color: #FF5A4F;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index__read-more:hover {
  color: #E53935;
}

.page-index__all-blog-posts {
  margin-top: 60px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index__main-title {
    font-size: 40px;
  }
  .page-index__hero-description {
    font-size: 18px;
  }
  .page-index__section-title {
    font-size: 32px;
  }
  .page-index__game-category img,
  .page-index__game-content {
    min-width: unset;
    width: 100%;
  }
  .page-index__game-category {
    gap: 30px;
  }
}

@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__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .page-index__hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .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;
  }

  .page-index__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-index__text-block {
    font-size: 15px;
  }
  .page-index__intro-section, .page-index__quick-access-section, .page-index__core-games-section, .page-index__promotions-section, .page-index__security-support-section, .page-index__faq-section, .page-index__blog-section {
    padding: 40px 0;
  }
  .page-index__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-index__feature-card,
  .page-index__quick-link-card,
  .page-index__promo-card,
  .page-index__security-item,
  .page-index__blog-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: none;
    border-radius: 8px;
  }
  .page-index__feature-card:hover,
  .page-index__quick-link-card:hover,
  .page-index__promo-card:hover,
  .page-index__security-item:hover,
  .page-index__blog-card:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .page-index__game-category {
    flex-direction: column !important;
    margin-bottom: 50px;
  }
  .page-index__game-content h3 {
    font-size: 24px;
  }
  .page-index__game-content p {
    font-size: 15px;
  }
  .page-index__game-category img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
  }

  .page-index__promo-card img {
    
  }

  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;
    margin-left: 10px;
    width: 25px;
  }
  details.page-index__faq-item .page-index__faq-answer {
    padding: 0 15px 15px;
    font-size: 15px;
  }

  .page-index__blog-card img {
    
  }
  .page-index__blog-card h3 {
    font-size: 18px;
  }
  .page-index__blog-card p {
    font-size: 14px;
  }
  .page-index__blog-content {
    padding: 15px;
  }

  /* General image responsiveness */
  .page-index img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !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;
  }
  .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;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-index__cta-buttons, .page-index__button-group, .page-index__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-index__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}