.page-index-platform-overview {
  --primary-color: #1A2B42;
  --secondary-color: #FFD700;
  --text-color-light: #ffffff;
  --text-color-dark: #333333;
  --background-light: #f5f5f5;
  --background-dark: #1A2B42;
  --border-color: #e0e0e0;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
}

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

.page-index-platform-overview section {
  padding: 60px 0;
  text-align: center;
}

.page-index-platform-overview section:nth-of-type(odd) {
  background-color: var(--background-light);
}

.page-index-platform-overview h1, .page-index-platform-overview h2, .page-index-platform-overview h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-platform-overview h1 {
  font-size: 3.2em;
  color: var(--text-color-light);
}

.page-index-platform-overview h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
}

.page-index-platform-overview h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-index-platform-overview p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-color-dark);
}

.page-index-platform-overview .cta-button {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: all 0.3s ease;
  border: 2px solid var(--secondary-color);
}

.page-index-platform-overview .cta-button:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-index-platform-overview .cta-button-small {
  display: inline-block;
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.page-index-platform-overview .cta-button-small:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* HERO Section */
.page-index-platform-overview .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background-color: var(--background-dark);
  overflow: hidden;
}

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

.page-index-platform-overview .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-index-platform-overview .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-index-platform-overview .hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
  color: var(--text-color-light);
}

.page-index-platform-overview .hero-content h1 {
  color: var(--text-color-light);
  font-size: 3.5em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-platform-overview .hero-content p {
  color: var(--text-color-light);
  font-size: 1.3em;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* Section Intro */
.page-index-platform-overview .section-intro p {
  text-align: left;
  max-width: 900px;
  margin: 0 auto 20px auto;
}

/* Quick Access Section */
.page-index-platform-overview .section-quick-access {
  background-color: var(--background-dark);
  color: var(--text-color-light);
}

.page-index-platform-overview .section-quick-access h2 {
  color: var(--secondary-color);
}

.page-index-platform-overview .quick-access-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-index-platform-overview .quick-access-image {
  flex: 1 1 400px;
  min-width: 300px;
}

.page-index-platform-overview .quick-access-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-platform-overview .quick-access-links {
  flex: 1 1 400px;
  text-align: left;
}

.page-index-platform-overview .quick-access-links p {
  color: var(--text-color-light);
  margin-bottom: 25px;
}

.page-index-platform-overview .quick-access-links ul {
  list-style: none;
  padding: 0;
}

.page-index-platform-overview .quick-access-links li {
  margin-bottom: 15px;
}

.page-index-platform-overview .quick-access-links a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-index-platform-overview .quick-access-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Games Section */
.page-index-platform-overview .section-games {
  background-color: var(--background-light);
}

.page-index-platform-overview .game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-platform-overview .game-item {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-platform-overview .game-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-platform-overview .game-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-index-platform-overview .game-item h3 {
  color: var(--primary-color);
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-index-platform-overview .game-item p {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 20px;
}

/* Promotions Section */
.page-index-platform-overview .section-promotions {
  background-color: var(--background-dark);
  color: var(--text-color-light);
}

.page-index-platform-overview .section-promotions h2 {
  color: var(--secondary-color);
}

.page-index-platform-overview .promotion-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-index-platform-overview .promotion-image {
  flex: 1 1 400px;
  min-width: 300px;
}

.page-index-platform-overview .promotion-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-platform-overview .promotion-details {
  flex: 1 1 400px;
  text-align: left;
}

.page-index-platform-overview .promotion-details p {
  color: var(--text-color-light);
  margin-bottom: 25px;
}

.page-index-platform-overview .promotion-details ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 30px;
  color: var(--text-color-light);
}

.page-index-platform-overview .promotion-details li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-index-platform-overview .promotion-details li strong {
  color: var(--secondary-color);
}

/* Security & Support Section */
.page-index-platform-overview .section-security-support {
  background-color: var(--background-light);
}

.page-index-platform-overview .security-support-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-index-platform-overview .security-support-details {
  flex: 1 1 400px;
  text-align: left;
}

.page-index-platform-overview .security-support-details p {
  margin-bottom: 25px;
}

.page-index-platform-overview .security-support-details ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 30px;
}

.page-index-platform-overview .security-support-details li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-index-platform-overview .security-support-image {
  flex: 1 1 400px;
  min-width: 300px;
}

.page-index-platform-overview .security-support-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-index-platform-overview .section-faq {
  background-color: var(--background-dark);
  color: var(--text-color-light);
}

.page-index-platform-overview .section-faq h2 {
  color: var(--secondary-color);
}

.page-index-platform-overview .faq-image {
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-index-platform-overview .faq-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-platform-overview .faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.page-index-platform-overview .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-index-platform-overview .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--primary-color);
  color: var(--text-color-light);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-index-platform-overview .faq-question:hover {
  background-color: lighten(var(--primary-color), 10%); /* For visual feedback */
  background-color: #2a405e;
}

.page-index-platform-overview .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: var(--text-color-light);
}

.page-index-platform-overview .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  transition: transform 0.3s ease;
  line-height: 1;
}

.page-index-platform-overview .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  color: var(--text-color-dark);
}

.page-index-platform-overview .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 25px;
}

.page-index-platform-overview .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.page-index-platform-overview .faq-answer p {
  margin: 0;
  font-size: 1em;
  color: var(--text-color-dark);
}

/* Blog Section */
.page-index-platform-overview .section-blog {
  background-color: var(--background-light);
}

.page-index-platform-overview .blog-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-index-platform-overview .blog-image {
  flex: 1 1 400px;
  min-width: 300px;
}

.page-index-platform-overview .blog-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-index-platform-overview .blog-articles {
  flex: 1 1 400px;
  text-align: left;
}

.page-index-platform-overview .blog-articles > p {
  margin-bottom: 25px;
}

.page-index-platform-overview .article-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-index-platform-overview .article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.page-index-platform-overview .article-card h3 {
  font-size: 1.3em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-index-platform-overview .article-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-platform-overview .article-card h3 a:hover {
  color: var(--secondary-color);
}

.page-index-platform-overview .article-card p {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 10px;
}

.page-index-platform-overview .article-card .article-date {
  font-size: 0.85em;
  color: #999999;
  display: block;
  text-align: right;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-platform-overview .hero-content h1 {
    font-size: 2.8em;
  }
  .page-index-platform-overview .hero-content p {
    font-size: 1.1em;
  }
  .page-index-platform-overview h2 {
    font-size: 2em;
  }
  .page-index-platform-overview h3 {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-index-platform-overview section {
    padding: 40px 0;
  }
  .page-index-platform-overview .hero-section {
    padding: 60px 15px;
  }
  .page-index-platform-overview .hero-content h1 {
    font-size: 2.2em;
  }
  .page-index-platform-overview .hero-content p {
    font-size: 1em;
  }
  .page-index-platform-overview .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-index-platform-overview h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-index-platform-overview h3 {
    font-size: 1.4em;
  }
  .page-index-platform-overview .quick-access-content, 
  .page-index-platform-overview .promotion-content, 
  .page-index-platform-overview .security-support-content, 
  .page-index-platform-overview .blog-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-index-platform-overview .quick-access-links, 
  .page-index-platform-overview .promotion-details, 
  .page-index-platform-overview .security-support-details, 
  .page-index-platform-overview .blog-articles {
    text-align: center;
  }
  .page-index-platform-overview .quick-access-links ul, 
  .page-index-platform-overview .promotion-details ul, 
  .page-index-platform-overview .security-support-details ul {
    padding-left: 0;
    text-align: left; /* Keep list items left aligned for readability */
    margin: 0 auto 30px auto;
    max-width: 90%;
  }
  .page-index-platform-overview .game-categories {
    grid-template-columns: 1fr;
  }
  .page-index-platform-overview .game-item {
    text-align: center;
  }
  .page-index-platform-overview .faq-question {
    padding: 15px 20px;
  }
  .page-index-platform-overview .faq-question h3 {
    font-size: 1.1em;
  }
  .page-index-platform-overview .faq-toggle {
    font-size: 1.5em;
  }
  .page-index-platform-overview .faq-answer {
    padding: 0 20px;
  }
  .page-index-platform-overview .faq-item.active .faq-answer {
    padding: 20px;
  }
  .page-index-platform-overview .article-card {
    text-align: left;
  }
  .page-index-platform-overview .article-card .article-date {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .page-index-platform-overview .hero-content h1 {
    font-size: 1.8em;
  }
  .page-index-platform-overview .hero-content p {
    font-size: 0.9em;
  }
  .page-index-platform-overview .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-index-platform-overview h2 {
    font-size: 1.5em;
  }
  .page-index-platform-overview h3 {
    font-size: 1.2em;
  }
  .page-index-platform-overview p {
    font-size: 0.9em;
  }
  .page-index-platform-overview .quick-access-links ul, 
  .page-index-platform-overview .promotion-details ul, 
  .page-index-platform-overview .security-support-details ul {
    max-width: 100%;
  }
}