:root {
  --primary-color: #FFD700;
  --secondary-color: #8B0000;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #000000;
  --background-light: #f1f3f5;
  --border-color: #e4e4e4;
}

/* Fixed Navbar Spacing */
.page-index-register-guide__hero-section {
  padding-top: 180px; /* Adjusted for fixed header on desktop */
}

@media (max-width: 768px) {
  .page-index-register-guide__hero-section {
    padding-top: 140px; /* Adjusted for fixed header on mobile */
  }
}

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

/* HERO Main Image Area */
.page-index-register-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--secondary-color), var(--background-dark)); /* Dark background for hero */
}

.page-index-register-guide__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-register-guide__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-index-register-guide__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-register-guide__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.page-index-register-guide__hero-title {
  font-size: 42px;
  font-weight: bold;
  color: var(--primary-color); /* Gold color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-register-guide__hero-description {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-index-register-guide__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(135deg, var(--primary-color), #FFA500);
  color: var(--background-dark);
  text-decoration: none;
  border-radius: 10px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-index-register-guide__cta-button:hover {
  background: linear-gradient(135deg, #FFA500, var(--primary-color));
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Game Leaderboard Section */
.page-index-register-guide__game-leaderboard-section {
  padding: 60px 20px;
  background: var(--background-light); /* Light background for contrast */
  color: var(--text-dark);
}

.page-index-register-guide__page-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
}

.page-index-register-guide__game-leaderboard {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.page-index-register-guide__game-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-register-guide__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-register-guide__game-card-segment {
  padding: 0 20px;
  height: 100%; /* Ensure segments have equal height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.page-index-register-guide__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-register-guide__segment-1 {
  min-width: 120px;
  max-width: 150px;
  padding-left: 0;
  flex-shrink: 0;
  position: relative;
}

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

.page-index-register-guide__rank-1 {
  background: linear-gradient(135deg, #FFD700, #FFA500); /* Gold */
}

.page-index-register-guide__rank-2 {
  background: linear-gradient(135deg, #C0C0C0, #A0A0A0); /* Silver */
}

.page-index-register-guide__rank-3 {
  background: linear-gradient(135deg, #CD7F32, #B87333); /* Bronze */
}

.page-index-register-guide__rank-badge:not(.page-index-register-guide__rank-1):not(.page-index-register-guide__rank-2):not(.page-index-register-guide__rank-3) {
  background: linear-gradient(135deg, #ff6b35, #ff8c42); /* Orange for 4+ */
}

.page-index-register-guide__game-icon {
  max-width: 100px;
  height: auto;
  border-radius: 8px;
  margin-top: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-index-register-guide__segment-2 {
  flex: 1;
  align-items: flex-start; /* Align text to left in this segment */
  text-align: left;
}

.page-index-register-guide__game-name {
  font-size: 24px;
  font-weight: bold;
  color: var(--text-dark);
  margin: 0 0 8px 0;
  text-transform: uppercase;
  width: 100%;
  text-align: center; /* Override flex-start for title */
}

.page-index-register-guide__game-name-link {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-register-guide__game-name-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-index-register-guide__game-description {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: bold;
  line-height: 1.4;
  text-align: center; /* Override flex-start for description */
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.page-index-register-guide__game-description a {
  color: #0066cc;
  font-weight: bold;
  text-decoration: none;
}

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

.page-index-register-guide__segment-3 {
  min-width: 150px;
  max-width: 200px;
  flex-shrink: 0;
}

.page-index-register-guide__game-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 18px;
}

.page-index-register-guide__stars {
  color: #FFD700;
  margin-right: 5px;
  font-weight: bold;
}

.page-index-register-guide__rating-number {
  color: var(--text-dark);
  font-weight: bold;
}

.page-index-register-guide__promotion-text {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.page-index-register-guide__promotion-link {
  color: #0066cc;
  text-decoration: none;
  font-weight: bold;
  margin-right: 5px;
}

.page-index-register-guide__promotion-link:hover {
  color: #004499;
  text-decoration: underline;
}

.page-index-register-guide__hot-badge {
  background: #FF4500;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
}

.page-index-register-guide__segment-4 {
  min-width: 180px;
  max-width: 220px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-index-register-guide__cta-button {
  display: block;
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.page-index-register-guide__btn-download {
  background: linear-gradient(135deg, var(--primary-color), #FFA500);
  color: var(--background-dark);
}

.page-index-register-guide__btn-download:hover {
  background: linear-gradient(135deg, #FFA500, var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-register-guide__btn-review {
  background: var(--secondary-color);
  color: #ffffff;
}

.page-index-register-guide__btn-review:hover {
  background: #A00000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

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

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

.page-index-register-guide__review-title {
  font-size: 28px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 24px;
  text-align: center;
}

.page-index-register-guide__review-subtitle {
  font-size: 20px;
  font-weight: bold;
  color: var(--text-dark);
  margin-top: 24px;
  margin-bottom: 12px;
}

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

.page-index-register-guide__review-body p {
  margin-bottom: 16px;
  font-size: 16px;
}

.page-index-register-guide__review-body strong {
  color: var(--secondary-color);
}

/* Homepage Introduction Section */
.page-index-register-guide__intro-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--secondary-color), var(--background-dark)); /* Dark bg for contrast */
  color: var(--text-light);
  text-align: center;
}

.page-index-register-guide__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-index-register-guide__intro-title {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.page-index-register-guide__intro-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--text-light);
}

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

.page-index-register-guide__feature-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-index-register-guide__feature-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.page-index-register-guide__feature-icon {
  width: 80px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Subtle glow for icons */
  max-width: 200px; /* Ensure minimum size */
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
  object-fit: contain;
}

.page-index-register-guide__feature-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-index-register-guide__feature-item p {
  font-size: 15px;
  color: #e0e0e0;
  line-height: 1.5;
}

/* Core Games/Services Section */
.page-index-register-guide__games-section {
  padding: 60px 20px;
  background: var(--background-light);
  color: var(--text-dark);
  text-align: center;
}

.page-index-register-guide__games-title {
  font-size: 32px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 25px;
}

.page-index-register-guide__games-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--text-dark);
}

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

.page-index-register-guide__game-category-item {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.page-index-register-guide__game-category-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-index-register-guide__game-category-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-index-register-guide__game-category-link {
  color: var(--secondary-color);
  text-decoration: none;
}

.page-index-register-guide__game-category-link:hover {
  text-decoration: underline;
}

.page-index-register-guide__game-category-item p {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-register-guide__read-more-btn {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--background-dark);
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-index-register-guide__read-more-btn:hover {
  background: #FFA500;
}

/* Promotions Section */
.page-index-register-guide__promotions-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--background-dark), var(--secondary-color)); /* Dark bg for contrast */
  color: var(--text-light);
  text-align: center;
}

.page-index-register-guide__promotions-title {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.page-index-register-guide__promotions-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--text-light);
}

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

.page-index-register-guide__promotion-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 25px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-index-register-guide__promotion-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.page-index-register-guide__promotion-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-index-register-guide__promotion-card-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-index-register-guide__promotion-card-title a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-index-register-guide__promotion-card-title a:hover {
  text-decoration: underline;
}

.page-index-register-guide__promotion-card p {
  font-size: 16px;
  color: #e0e0e0;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-register-guide__promo-cta-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--background-dark);
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-index-register-guide__promo-cta-button:hover {
  background: #FFA500;
}

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

.page-index-register-guide__blog-title {
  font-size: 32px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 25px;
}

.page-index-register-guide__blog-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--text-dark);
}

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

.page-index-register-guide__blog-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
}

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

.page-index-register-guide__blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-index-register-guide__blog-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.page-index-register-guide__blog-card-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.page-index-register-guide__blog-card-title a {
  color: var(--secondary-color);
  text-decoration: none;
}

.page-index-register-guide__blog-card-title a:hover {
  text-decoration: underline;
}

.page-index-register-guide__blog-summary {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-index-register-guide__blog-date {
  font-size: 13px;
  color: #666666;
  margin-bottom: 15px;
}

.page-index-register-guide__blog-read-more {
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary-color);
  color: var(--background-dark);
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-index-register-guide__blog-read-more:hover {
  background: #FFA500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-register-guide__hero-title {
    font-size: 36px;
  }

  .page-index-register-guide__hero-description {
    font-size: 18px;
  }

  .page-index-register-guide__cta-button {
    padding: 15px 35px;
    font-size: 18px;
  }

  .page-index-register-guide__page-title,
  .page-index-register-guide__review-title,
  .page-index-register-guide__intro-title,
  .page-index-register-guide__games-title,
  .page-index-register-guide__promotions-title,
  .page-index-register-guide__blog-title {
    font-size: 30px;
  }

  .page-index-register-guide__game-card {
    flex-wrap: wrap;
    padding: 20px;
  }

  .page-index-register-guide__game-card-segment {
    width: 100%;
    padding: 10px 0;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .page-index-register-guide__game-card-segment:not(:first-child)::before {
    display: none;
  }

  .page-index-register-guide__segment-1,
  .page-index-register-guide__segment-3,
  .page-index-register-guide__segment-4 {
    min-width: unset;
    max-width: 100%;
  }

  .page-index-register-guide__segment-1 {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    justify-content: center;
  }

  .page-index-register-guide__rank-badge {
    position: static;
    margin-right: 10px;
  }

  .page-index-register-guide__game-icon {
    max-width: 80px;
  }

  .page-index-register-guide__segment-2 {
    order: -1; /* Move game name/desc to top */
    width: 100%;
    margin-bottom: 15px;
    align-items: center;
    text-align: center;
  }

  .page-index-register-guide__game-name {
    font-size: 22px;
  }

  .page-index-register-guide__game-description {
    font-size: 13px;
  }

  .page-index-register-guide__segment-4 {
    flex-direction: row;
    gap: 10px;
    max-width: 100%;
    width: 100%;
    justify-content: center;
    margin-top: 15px;
  }

  .page-index-register-guide__cta-button {
    flex: 1;
    padding: 10px 12px;
    font-size: 14px;
    white-space: normal;
    word-wrap: break-word;
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .page-index-register-guide__hero-section {
    padding-bottom: 40px;
  }

  .page-index-register-guide__hero-title {
    font-size: 28px;
  }

  .page-index-register-guide__hero-description {
    font-size: 16px;
  }

  .page-index-register-guide__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }

  .page-index-register-guide__game-leaderboard-section,
  .page-index-register-guide__review-content-section,
  .page-index-register-guide__intro-section,
  .page-index-register-guide__games-section,
  .page-index-register-guide__promotions-section,
  .page-index-register-guide__blog-section {
    padding: 30px 15px;
  }

  .page-index-register-guide__page-title,
  .page-index-register-guide__review-title,
  .page-index-register-guide__intro-title,
  .page-index-register-guide__games-title,
  .page-index-register-guide__promotions-title,
  .page-index-register-guide__blog-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .page-index-register-guide__intro-description,
  .page-index-register-guide__games-description,
  .page-index-register-guide__promotions-description,
  .page-index-register-guide__blog-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-index-register-guide__review-content-card {
    padding: 24px 20px;
  }

  .page-index-register-guide__review-subtitle {
    font-size: 18px;
  }

  .page-index-register-guide__review-body p {
    font-size: 15px;
  }

  .page-index-register-guide__feature-icon {
    width: 60px;
    min-width: 200px; /* Maintain minimum size */
    min-height: 200px; /* Maintain minimum size */
  }

  .page-index-register-guide__feature-title {
    font-size: 18px;
  }

  .page-index-register-guide__game-category-image,
  .page-index-register-guide__promotion-image,
  .page-index-register-guide__blog-image {
    height: 180px;
    min-width: 200px; /* Maintain minimum size */
    min-height: 200px; /* Maintain minimum size */
  }

  .page-index-register-guide__game-category-title,
  .page-index-register-guide__promotion-card-title,
  .page-index-register-guide__blog-card-title {
    font-size: 20px;
  }

  .page-index-register-guide__read-more-btn,
  .page-index-register-guide__promo-cta-button,
  .page-index-register-guide__blog-read-more {
    padding: 8px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .page-index-register-guide__hero-title {
    font-size: 24px;
  }

  .page-index-register-guide__hero-description {
    font-size: 15px;
  }

  .page-index-register-guide__cta-button {
    padding: 10px 25px;
    font-size: 15px;
  }

  .page-index-register-guide__page-title,
  .page-index-register-guide__review-title,
  .page-index-register-guide__intro-title,
  .page-index-register-guide__games-title,
  .page-index-register-guide__promotions-title,
  .page-index-register-guide__blog-title {
    font-size: 22px;
  }

  .page-index-register-guide__game-name {
    font-size: 20px;
  }

  .page-index-register-guide__game-description {
    font-size: 12px;
  }

  .page-index-register-guide__segment-4 {
    flex-direction: column;
    gap: 8px;
  }

  .page-index-register-guide__cta-button {
    padding: 8px 10px;
    font-size: 12px;
  }

  .page-index-register-guide__feature-icon {
    width: 50px;
    min-width: 200px; /* Maintain minimum size */
    min-height: 200px; /* Maintain minimum size */
  }

  .page-index-register-guide__feature-title {
    font-size: 16px;
  }

  .page-index-register-guide__game-category-image,
  .page-index-register-guide__promotion-image,
  .page-index-register-guide__blog-image {
    height: 150px;
    min-width: 200px; /* Maintain minimum size */
    min-height: 200px; /* Maintain minimum size */
  }

  .page-index-register-guide__game-category-title,
  .page-index-register-guide__promotion-card-title,
  .page-index-register-guide__blog-card-title {
    font-size: 18px;
  }
}