.page-resources-shbet0-platform-guide {
  --primary-color: #003366;
  --secondary-color: #FFD700;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-light: #f8f8f8;
  --background-dark: #002244;
  --card-background: #ffffff;
  --border-color: #e0e0e0;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
}

.page-resources-shbet0-platform-guide .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-resources-shbet0-platform-guide .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: var(--background-dark);
  color: var(--text-color-light);
}

.page-resources-shbet0-platform-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-resources-shbet0-platform-guide .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-resources-shbet0-platform-guide .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-resources-shbet0-platform-guide .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-resources-shbet0-platform-guide .hero-content h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-shbet0-platform-guide .hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-resources-shbet0-platform-guide .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-resources-shbet0-platform-guide .cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* General Section Styling */
.page-resources-shbet0-platform-guide section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.page-resources-shbet0-platform-guide section:last-of-type {
  border-bottom: none;
}

.page-resources-shbet0-platform-guide section h2 {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-resources-shbet0-platform-guide section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-resources-shbet0-platform-guide section p {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  font-size: 1.1em;
  color: var(--text-color-dark);
}

/* Introduction Section */
.page-resources-shbet0-platform-guide .introduction-section {
  background-color: var(--background-light);
}

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

.page-resources-shbet0-platform-guide .intro-item {
  background: var(--card-background);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-shbet0-platform-guide .intro-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-shbet0-platform-guide .intro-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0,0,0,0.1));
}

.page-resources-shbet0-platform-guide .intro-item h3 {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-resources-shbet0-platform-guide .intro-item p {
  font-size: 0.95em;
  color: var(--text-color-dark);
  text-align: center;
  margin-bottom: 0;
}

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

.page-resources-shbet0-platform-guide .quick-access-section h2 {
  color: var(--secondary-color);
}

.page-resources-shbet0-platform-guide .quick-access-section p {
  color: #e0e0e0;
}

.page-resources-shbet0-platform-guide .access-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-resources-shbet0-platform-guide .access-link-card {
  display: block;
  background: var(--primary-color);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  color: var(--text-color-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-resources-shbet0-platform-guide .access-link-card:hover {
  transform: translateY(-8px);
  background-color: #004488;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-shbet0-platform-guide .access-link-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
  filter: drop-shadow(0 3px 5px rgba(0,0,0,0.2));
}

.page-resources-shbet0-platform-guide .access-link-card h3 {
  font-size: 1.3em;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.page-resources-shbet0-platform-guide .access-link-card p {
  font-size: 0.9em;
  color: #cccccc;
  text-align: center;
  margin-bottom: 0;
}

/* Games Showcase Section */
.page-resources-shbet0-platform-guide .games-showcase-section {
  background-color: var(--card-background);
}

.page-resources-shbet0-platform-guide .game-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-shbet0-platform-guide .game-card {
  background: var(--background-light);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-resources-shbet0-platform-guide .game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.page-resources-shbet0-platform-guide .game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.page-resources-shbet0-platform-guide .game-card h3 {
  font-size: 1.4em;
  color: var(--primary-color);
  padding: 15px 20px 10px;
  margin-bottom: 0;
}

.page-resources-shbet0-platform-guide .game-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-resources-shbet0-platform-guide .game-card h3 a:hover {
  color: var(--secondary-color);
}

.page-resources-shbet0-platform-guide .game-card p {
  font-size: 0.95em;
  color: var(--text-color-dark);
  padding: 0 20px 15px;
  text-align: left;
  flex-grow: 1;
}

.page-resources-shbet0-platform-guide .game-card .btn-small {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-resources-shbet0-platform-guide .game-card .btn-small:hover {
  background-color: #e6c200;
}

/* Promotions Section */
.page-resources-shbet0-platform-guide .promotions-section {
  background-color: var(--background-light);
}

.page-resources-shbet0-platform-guide .promotion-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-shbet0-platform-guide .promo-card {
  background: var(--card-background);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-resources-shbet0-platform-guide .promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.page-resources-shbet0-platform-guide .promo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.page-resources-shbet0-platform-guide .promo-card h3 {
  font-size: 1.3em;
  color: var(--primary-color);
  padding: 15px 20px 10px;
  margin-bottom: 0;
}

.page-resources-shbet0-platform-guide .promo-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-resources-shbet0-platform-guide .promo-card h3 a:hover {
  color: var(--secondary-color);
}

.page-resources-shbet0-platform-guide .promo-card p {
  font-size: 0.9em;
  color: var(--text-color-dark);
  padding: 0 20px 15px;
  text-align: center;
  flex-grow: 1;
}

.page-resources-shbet0-platform-guide .promo-card .btn-small {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease;
}

.page-resources-shbet0-platform-guide .promo-card .btn-small:hover {
  background-color: #e6c200;
}

/* Safety & Customer Service Section */
.page-resources-shbet0-platform-guide .safety-customer-service-section {
  background-color: var(--background-dark);
  color: var(--text-color-light);
}

.page-resources-shbet0-platform-guide .safety-customer-service-section h2 {
  color: var(--secondary-color);
}

.page-resources-shbet0-platform-guide .safety-customer-service-section p {
  color: #e0e0e0;
}

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

.page-resources-shbet0-platform-guide .info-item {
  background: var(--primary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-resources-shbet0-platform-guide .info-item:hover {
  transform: translateY(-8px);
  background-color: #004488;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-shbet0-platform-guide .info-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 3px 5px rgba(0,0,0,0.2));
}

.page-resources-shbet0-platform-guide .info-item h3 {
  font-size: 1.4em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-resources-shbet0-platform-guide .info-item p {
  font-size: 0.95em;
  color: #cccccc;
  text-align: center;
  margin-bottom: 20px;
}

.page-resources-shbet0-platform-guide .info-item .btn-small {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-resources-shbet0-platform-guide .info-item .btn-small:hover {
  background-color: #e6c200;
}

/* FAQ Section */
.page-resources-shbet0-platform-guide .faq-section {
  background-color: var(--background-light);
}

.page-resources-shbet0-platform-guide .faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-shbet0-platform-guide .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.page-resources-shbet0-platform-guide .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--card-background);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-resources-shbet0-platform-guide .faq-question:hover {
  background: #f0f0f0;
}

.page-resources-shbet0-platform-guide .faq-question h3 {
  font-size: 1.15em;
  color: var(--primary-color);
  margin: 0;
}

.page-resources-shbet0-platform-guide .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
  line-height: 1;
}

.page-resources-shbet0-platform-guide .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-color);
}

.page-resources-shbet0-platform-guide .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-resources-shbet0-platform-guide .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
}

.page-resources-shbet0-platform-guide .faq-answer p {
  text-align: left;
  margin-bottom: 15px;
  font-size: 1em;
}

.page-resources-shbet0-platform-guide .faq-answer a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-resources-shbet0-platform-guide .faq-answer a:hover {
  color: var(--secondary-color);
}

/* Latest Blog Section */
.page-resources-shbet0-platform-guide .latest-blog-section {
  background-color: var(--card-background);
}

.page-resources-shbet0-platform-guide .blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-shbet0-platform-guide .blog-card {
  background: var(--background-light);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-resources-shbet0-platform-guide .blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.page-resources-shbet0-platform-guide .blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.page-resources-shbet0-platform-guide .blog-card h3 {
  font-size: 1.3em;
  color: var(--primary-color);
  padding: 15px 20px 10px;
  margin-bottom: 0;
}

.page-resources-shbet0-platform-guide .blog-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-resources-shbet0-platform-guide .blog-card h3 a:hover {
  color: var(--secondary-color);
}

.page-resources-shbet0-platform-guide .blog-card p {
  font-size: 0.9em;
  color: var(--text-color-dark);
  padding: 0 20px 15px;
  text-align: left;
  flex-grow: 1;
}

.page-resources-shbet0-platform-guide .blog-card .btn-small {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-resources-shbet0-platform-guide .blog-card .btn-small:hover {
  background-color: #e6c200;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-shbet0-platform-guide .hero-content h1 {
    font-size: 2.8em;
  }

  .page-resources-shbet0-platform-guide section h2 {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-resources-shbet0-platform-guide .hero-section {
    padding: 40px 15px;
  }

  .page-resources-shbet0-platform-guide .hero-content h1 {
    font-size: 2.2em;
  }

  .page-resources-shbet0-platform-guide .hero-content p {
    font-size: 1em;
  }

  .page-resources-shbet0-platform-guide .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }

  .page-resources-shbet0-platform-guide section {
    padding: 40px 0;
  }

  .page-resources-shbet0-platform-guide section h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-resources-shbet0-platform-guide .intro-grid,
  .page-resources-shbet0-platform-guide .access-links-grid,
  .page-resources-shbet0-platform-guide .game-categories-grid,
  .page-resources-shbet0-platform-guide .promotion-cards-grid,
  .page-resources-shbet0-platform-guide .info-grid,
  .page-resources-shbet0-platform-guide .blog-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-shbet0-platform-guide .faq-question {
    padding: 15px 20px;
  }

  .page-resources-shbet0-platform-guide .faq-question h3 {
    font-size: 1em;
  }

  .page-resources-shbet0-platform-guide .faq-toggle {
    font-size: 1.5em;
  }

  .page-resources-shbet0-platform-guide .faq-answer {
    padding: 0 20px;
  }

  .page-resources-shbet0-platform-guide .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-shbet0-platform-guide .hero-content h1 {
    font-size: 1.8em;
  }

  .page-resources-shbet0-platform-guide section h2 {
    font-size: 1.6em;
  }

  .page-resources-shbet0-platform-guide .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
}