/* style/index.css */

:root {
  --primary-color: #003366;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-light: #f1f3f5;
  --background-dark: #002244; /* Slightly darker than primary for sections */
  --border-color: #e0e0e0;
}

.page-index {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--background-dark); /* Ensure contrast with body background */
}

/* HERO Section */
.page-index__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 180px; /* Desktop: Adjust for fixed header */
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-index__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.page-index__hero-content h1 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--secondary-color); /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index__hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

.page-index__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-index__cta-button:hover {
  background: #e6c100;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Game Leaderboard Section */
.page-index__game-leaderboard-section {
  padding: 60px 20px;
  background: var(--background-light);
  color: var(--text-dark);
  text-align: center;
}

.page-index__page-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 40px;
}

.page-index__game-leaderboard {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-index__game-card {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index__game-card-segment {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}

.page-index__game-card-segment:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background-color: var(--border-color);
}

.page-index__segment-1 {
  flex-basis: 150px;
  min-width: 120px;
  max-width: 150px;
  flex-shrink: 0;
  padding-left: 0;
  flex-direction: column;
}

.page-index__rank-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.page-index__rank-1 {
  background: linear-gradient(135deg, #FFD700, #FFA500);
}
.page-index__rank-2 {
  background: linear-gradient(135deg, #C0C0C0, #A0A0A0);
}
.page-index__rank-3 {
  background: linear-gradient(135deg, #CD7F32, #B87333);
}
.page-index__rank-badge:not(.page-index__rank-1):not(.page-index__rank-2):not(.page-index__rank-3) {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

.page-index__game-icon {
  max-width: 100px;
  height: auto;
  display: block;
  margin-top: 20px; /* Space for rank badge */
  border-radius: 4px;
}

.page-index__segment-2 {
  flex: 1;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}

.page-index__game-name {
  font-size: 24px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.page-index__game-name-link {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index__game-name-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-index__game-description {
  font-size: 14px;
  color: #000000;
  font-weight: bold;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page-index__game-description a {
  color: #0066cc;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index__game-description a:hover {
  color: #004499;
  text-decoration: underline;
}

.page-index__segment-3 {
  flex-basis: 180px;
  min-width: 150px;
  max-width: 180px;
  flex-shrink: 0;
  flex-direction: column;
  text-align: center;
}

.page-index__game-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.page-index__stars {
  color: var(--secondary-color);
  font-size: 18px;
  margin-right: 5px;
  font-weight: bold;
}

.page-index__rating-number {
  font-size: 16px;
  font-weight: bold;
}

.page-index__promotion-text {
  font-size: 14px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.page-index__promotion-link {
  color: #0066cc;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index__promotion-link:hover {
  color: #004499;
  text-decoration: underline;
}

.page-index__hot-badge {
  background: #ff4d4d;
  color: #ffffff;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: bold;
}

.page-index__segment-4 {
  flex-basis: 220px;
  min-width: 180px;
  max-width: 220px;
  flex-shrink: 0;
  flex-direction: column;
  gap: 10px;
}

.page-index__btn-download,
.page-index__btn-review {
  display: block;
  width: 100%;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-index__btn-download {
  background: var(--primary-color);
  color: var(--text-light);
  border: none;
}

.page-index__btn-download:hover {
  background: #002244;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.page-index__btn-review {
  background: #ffffff;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.page-index__btn-review:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

/* Brand Review Content Section */
.page-index__review-content-section {
  padding: 40px 20px;
  background: var(--background-light);
  color: var(--text-dark);
}

.page-index__review-content-container {
  max-width: 1400px;
  margin: 0 auto;
}

.page-index__review-content-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

.page-index__review-content-card h2 {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 24px;
  text-align: center;
}

.page-index__review-content-card h3 {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
  margin-top: 24px;
  margin-bottom: 12px;
}

.page-index__review-body {
  color: var(--text-dark);
  line-height: 1.7;
}

.page-index__review-body p {
  margin-bottom: 16px;
  font-size: 16px;
}

/* Homepage Introduction Section */
.page-index__intro-section {
  padding: 60px 20px;
  background: var(--background-light);
  color: var(--text-dark);
  text-align: center;
}

.page-index__intro-section h2 {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 40px;
}

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

.page-index__intro-item {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index__intro-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}

.page-index__intro-item h3 {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-index__intro-item p {
  font-size: 15px;
  color: var(--text-dark);
}

/* Core Game/Service Introduction Section */
.page-index__games-section {
  padding: 60px 20px;
  background: var(--primary-color);
  color: var(--text-light);
  text-align: center;
}

.page-index__games-section h2 {
  font-size: 32px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.page-index__section-description {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

.page-index__game-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-index__game-type-card {
  background: var(--background-dark);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index__game-type-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}

.page-index__game-type-card h3 {
  font-size: 22px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-index__game-type-card p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.page-index__game-type-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--secondary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-index__game-type-button:hover {
  background: #e6c100;
}

/* Promotions Section */
.page-index__promotions-section {
  padding: 60px 20px;
  background: var(--background-light);
  color: var(--text-dark);
  text-align: center;
}

.page-index__promotions-section h2 {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.page-index__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-index__promotion-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.page-index__promotion-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}

.page-index__promotion-card h3 {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-index__promotion-card p {
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.page-index__promotion-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-index__promotion-button:hover {
  background: #002244;
}

/* Latest Blog Content Section */
.page-index__blog-section {
  padding: 60px 20px;
  background: var(--primary-color);
  color: var(--text-light);
  text-align: center;
}

.page-index__blog-section h2 {
  font-size: 32px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.page-index__blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-index__blog-card {
  background: var(--background-dark);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index__blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}

.page-index__blog-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.page-index__blog-card h3 a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index__blog-card h3 a:hover {
  color: #e6c100;
  text-decoration: underline;
}

.page-index__blog-card p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.page-index__blog-readmore {
  display: inline-block;
  padding: 8px 15px;
  background: var(--secondary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.page-index__blog-readmore:hover {
  background: #e6c100;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index__hero-content h1 {
    font-size: 36px;
  }
  .page-index__page-title,
  .page-index__review-content-card h2,
  .page-index__intro-section h2,
  .page-index__games-section h2,
  .page-index__promotions-section h2,
  .page-index__blog-section h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .page-index__hero-section {
    padding-top: 140px !important; /* Mobile: Adjust for fixed header */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-index__hero-image img {
    border-radius: 4px;
  }
  
  .page-index__hero-content h1 {
    font-size: 28px;
  }

  .page-index__hero-content p {
    font-size: 16px;
  }

  .page-index__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }

  .page-index__game-leaderboard-section,
  .page-index__review-content-section,
  .page-index__intro-section,
  .page-index__games-section,
  .page-index__promotions-section,
  .page-index__blog-section {
    padding: 30px 15px;
  }

  .page-index__page-title,
  .page-index__review-content-card h2,
  .page-index__intro-section h2,
  .page-index__games-section h2,
  .page-index__promotions-section h2,
  .page-index__blog-section h2 {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .page-index__game-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }

  .page-index__game-card-segment {
    width: 100%;
    padding: 10px 0;
    justify-content: flex-start;
    text-align: left;
  }

  .page-index__game-card-segment:not(:first-child)::before {
    display: none; /* Remove vertical line on mobile */
  }

  .page-index__segment-1 {
    flex-basis: auto;
    max-width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding-left: 40px;
  }

  .page-index__rank-badge {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .page-index__game-icon {
    margin-top: 0;
    max-width: 80px;
    margin-left: 15px;
  }

  .page-index__segment-2 {
    text-align: left;
    align-items: flex-start;
    padding-top: 15px;
  }

  .page-index__game-name {
    font-size: 20px;
    text-align: left;
  }

  .page-index__game-description {
    font-size: 13px;
    text-align: left;
  }

  .page-index__segment-3 {
    flex-basis: auto;
    max-width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    padding-top: 15px;
  }

  .page-index__game-rating,
  .page-index__promotion-text {
    justify-content: flex-start;
  }

  .page-index__segment-4 {
    flex-basis: auto;
    max-width: 100% !important;
    width: 100% !important;
    flex-direction: column;
    gap: 10px;
    padding-top: 15px;
    padding-left: 0;
    padding-right: 0;
  }

  .page-index__btn-download,
  .page-index__btn-review {
    max-width: 100% !important;
    width: 100% !important;
    font-size: 14px !important;
    padding: 10px 15px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    min-width: auto !important;
  }

  .page-index__review-content-card {
    padding: 24px 20px;
  }
  
  .page-index__review-content-card h3 {
    font-size: 18px;
  }
  
  .page-index__review-body p {
    font-size: 15px;
  }

  .page-index__intro-grid,
  .page-index__game-types-grid,
  .page-index__promotion-grid,
  .page-index__blog-grid {
    grid-template-columns: 1fr;
  }

  .page-index__intro-image,
  .page-index__game-type-image,
  .page-index__promotion-image,
  .page-index__blog-image {
    height: 180px;
  }

  /* Ensure all images are responsive and prevent overflow */
  .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,
  .page-index__intro-item,
  .page-index__game-type-card,
  .page-index__promotion-card,
  .page-index__blog-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
  .page-index__container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* General text contrast fixes for light backgrounds */
.page-index__light-bg {
  color: var(--text-dark);
}
.page-index__light-bg h1, .page-index__light-bg h2, .page-index__light-bg h3 {
  color: var(--primary-color);
}

/* General text contrast fixes for dark backgrounds */
.page-index__dark-bg {
  color: var(--text-light);
}
.page-index__dark-bg h1, .page-index__dark-bg h2, .page-index__dark-bg h3 {
  color: var(--secondary-color);
}

.page-index__game-card p, .page-index__game-card h2 {
  color: var(--text-dark);
}

.page-index__game-card a {
  color: var(--primary-color);
}

.page-index__blog-card h3 a {
  color: var(--secondary-color);
}

.page-index__blog-card p {
  color: var(--text-light);
}

.page-index__blog-readmore {
  color: var(--text-dark);
}

.page-index__promotion-button {
  color: var(--text-light);
}

.page-index__game-type-button {
  color: var(--text-dark);
}