.page-index__hero-section {
  padding-top: 10px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.page-index__hero-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.page-index__hero-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.page-index__hero-slide {
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
}

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

.page-index__hero-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #FFFFFF;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9em;
}

.page-index__hero-caption {
  margin: 0;
}

.page-index__hero-indicators {
  display: flex;
  gap: 8px;
}

.page-index__hero-dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.page-index__hero-dot.is-active {
  background: #FFFFFF;
}

.page-index__articles-section {
  padding: 40px 0;
  background: #f9f9f9;
}

.page-index__articles-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index__articles-main-title {
  text-align: center;
  margin-bottom: 30px;
}

.page-index__articles-title-small {
  font-size: 0.9em;
  color: #666;
  display: block;
  letter-spacing: 2px;
}

.page-index__articles-title-large {
  font-size: 2.5em;
  color: #000000;
  margin-top: 5px;
  font-weight: 700;
}

.page-index__category-section {
  margin-bottom: 40px;
}

.page-index__category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.page-index__category-title-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-index__category-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.page-index__category-title {
  font-size: 1.8em;
  color: #000000;
  margin: 0;
}

.page-index__category-read-more {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
}

.page-index__featured-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.page-index__article-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-index__article-card a {
  text-decoration: none;
  color: inherit;
}

.page-index__article-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.page-index__article-image--featured {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.page-index__article-card--featured .page-index__article-meta {
  padding: 20px;
}

.page-index__article-tag {
  font-size: 0.8em;
  color: #666;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
}

.page-index__article-title {
  font-size: 1.2em;
  margin: 10px 0;
  line-height: 1.3;
  color: #000000;
}

.page-index__article-card--featured .page-index__article-title {
  font-size: 1.5em;
}

.page-index__article-excerpt {
  font-size: 0.9em;
  color: #555;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-index__article-date {
  font-size: 0.8em;
  color: #888;
  display: block;
  margin-top: 10px;
}

.page-index__featured-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.page-index__featured-side .page-index__article-card {
  display: flex;
  flex-direction: column;
}

.page-index__featured-side .page-index__article-image {
  border-radius: 12px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.page-index__featured-side .page-index__article-tag,
.page-index__featured-side .page-index__article-title,
.page-index__featured-side .page-index__article-date {
  padding: 0 15px;
}

.page-index__featured-side .page-index__article-title {
  font-size: 1em;
  margin-top: 5px;
}

.page-index__featured-side .page-index__article-date {
  margin-top: 5px;
  margin-bottom: 15px;
}

.page-index__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.page-index__game-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding-bottom: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index__game-card a {
  text-decoration: none;
  color: inherit;
}

.page-index__game-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.page-index__game-card h3 {
  font-size: 1.1em;
  color: #000000;
  margin: 15px 10px 0;
  line-height: 1.3;
}

.page-index__partners-section {
  padding: 40px 0;
  background: #000000;
}

.page-index__partners-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.page-index__partner-item {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.page-index__partner-item:hover {
  transform: scale(1.05);
}

.page-index__partner-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: none;
}

.page-index__info-section {
  padding: 40px 0;
  background: #FFFFFF;
  color: #333333;
}

.page-index__info-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index__info-title {
  font-size: 2.2em;
  color: #000000;
  text-align: center;
  margin-bottom: 25px;
}

.page-index__info-subtitle {
  font-size: 1.5em;
  color: #000000;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-index__info-content p {
  line-height: 1.7;
  margin-bottom: 15px;
}

.page-index__info-content.is-collapsed {
  max-height: 250px;
  overflow: hidden;
  position: relative;
}

.page-index__info-content.is-collapsed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, #FFFFFF, rgba(255, 255, 255, 0));
  pointer-events: none;
}

.page-index__info-list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  line-height: 1.7;
}

.page-index__info-list li strong {
  color: #000000;
}

.page-index__info-toggle-button {
  display: block;
  margin: 25px auto 0;
  padding: 12px 30px;
  background: #000000;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1em;
  transition: background 0.3s ease;
}

.page-index__info-toggle-button:hover {
  background: #333333;
}

.page-index__info-figure {
  margin: 20px 0;
  text-align: center;
}

.page-index__info-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-index__info-figure figcaption {
  font-size: 0.9em;
  color: #666;
  margin-top: 10px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-index__articles-container,
  .page-index__partners-grid,
  .page-index__info-container {
    padding: 0 15px;
  }

  .page-index__articles-title-large {
    font-size: 2em;
  }

  .page-index__category-title {
    font-size: 1.5em;
  }

  .page-index__featured-layout {
    gap: 15px;
  }

  .page-index__featured-side {
    gap: 10px;
  }

  .page-index__games-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  .page-index__partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-index__info-title {
    font-size: 1.8em;
  }

  .page-index__info-subtitle {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-index__hero-section {
    padding-top: 10px !important;
  }

  .page-index__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-index__hero-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 10px 15px;
  }

  .page-index__articles-section {
    padding: 30px 0;
  }

  .page-index__articles-container,
  .page-index__partners-grid,
  .page-index__info-container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-index__articles-title-large {
    font-size: 1.8em;
  }

  .page-index__category-title {
    font-size: 1.3em;
  }

  .page-index__featured-layout {
    grid-template-columns: 1fr;
  }

  .page-index__featured-side {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .page-index__article-card--featured .page-index__article-title {
    font-size: 1.3em;
  }

  .page-index__games-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
  }

  .page-index__game-card h3 {
    font-size: 1em;
  }

  .page-index__partners-section {
    padding: 30px 0;
  }

  .page-index__partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .page-index__partner-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-index__info-title {
    font-size: 1.6em;
  }

  .page-index__info-subtitle {
    font-size: 1.2em;
  }

  .page-index p,
  .page-index li {
    font-size: 15px;
  }

  .page-index img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-index__info-toggle-button {
    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;
  }
}

/* Blog Section Styles - Auto Generated */
.latest-blog-section {
  padding: 40px 20px;
  margin: 20px 0;
}

.latest-blog-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.latest-blog-section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: bold;
}

.latest-blog-section p {
  text-align: center;
  margin-bottom: 30px;
  color: #666;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-card .blog-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.blog-card .blog-content {
  padding: 20px;
}

.blog-card .blog-content h3 {
  margin: 0 0 12px 0;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.4;
}

.blog-card .blog-content .blog-title-link {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card .blog-content .blog-title-link:hover {
  color: #007bff;
}

.blog-card .blog-content .blog-excerpt {
  color: #666;
  line-height: 1.7;
  margin: 12px 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.95rem;
}

.blog-card .blog-content .blog-date {
  display: block;
  color: #999;
  font-size: 0.9rem;
  margin: 15px 0 12px 0;
}

.blog-card .blog-content .read-more-link {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
  font-size: 0.95rem;
  font-weight: 500;
}

.blog-card .blog-content .read-more-link:hover {
  background: #0056b3;
}

.view-all-posts {
  text-align: center;
  margin-top: 30px;
}

.view-all-posts .cta-button {
  display: inline-block;
  padding: 12px 24px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.view-all-posts .cta-button.secondary {
  background: #6c757d;
}

.view-all-posts .cta-button.secondary:hover {
  background: #5a6268;
}

.view-all-posts .cta-button:hover {
  background: #0056b3;
}

@media (max-width: 768px) {
  .blog-list {
    grid-template-columns: 1fr;
  }
  
  .latest-blog-section h2 {
    font-size: 1.5rem;
  }
  
  .blog-card .blog-img {
    height: 250px;
  }
  
  .blog-card .blog-content {
    padding: 15px;
  }
}


/* blog-image-link-styles */
.blog-image-link,
.news-image-link,
a.blog-list__cover-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.blog-image-link img,
.news-image-link img {
  display: block;
  width: 100%;
}
.page-index__blog-item .blog-image-link,
.page-index__news-item .news-image-link {
  line-height: 0;
}
ont-size: 2rem;
  font-weight: bold;
}

.latest-blog-section p {
  text-align: center;
  margin-bottom: 30px;
  color: #666;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-card .blog-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.blog-card .blog-content {
  padding: 20px;
}

.blog-card .blog-content h3 {
  margin: 0 0 12px 0;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.4;
}

.blog-card .blog-content .blog-title-link {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card .blog-content .blog-title-link:hover {
  color: #007bff;
}

.blog-card .blog-content .blog-excerpt {
  color: #666;
  line-height: 1.7;
  margin: 12px 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.95rem;
}

.blog-card .blog-content .blog-date {
  display: block;
  color: #999;
  font-size: 0.9rem;
  margin: 15px 0 12px 0;
}

.blog-card .blog-content .read-more-link {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
  font-size: 0.95rem;
  font-weight: 500;
}

.blog-card .blog-content .read-more-link:hover {
  background: #0056b3;
}

.view-all-posts {
  text-align: center;
  margin-top: 30px;
}

.view-all-posts .cta-button {
  display: inline-block;
  padding: 12px 24px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.view-all-posts .cta-button.secondary {
  background: #6c757d;
}

.view-all-posts .cta-button.secondary:hover {
  background: #5a6268;
}

.view-all-posts .cta-button:hover {
  background: #0056b3;
}

@media (max-width: 768px) {
  .blog-list {
    grid-template-columns: 1fr;
  }
  
  .latest-blog-section h2 {
    font-size: 1.5rem;
  }
  
  .blog-card .blog-img {
    height: 250px;
  }
  
  .blog-card .blog-content {
    padding: 15px;
  }
}


/* blog-image-link-styles */
.blog-image-link,
.news-image-link,
a.blog-list__cover-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.blog-image-link img,
.news-image-link img {
  display: block;
  width: 100%;
}
.page-index__blog-item .blog-image-link,
.page-index__news-item .news-image-link {
  line-height: 0;
}
