/* style/resources-sin88-platform-guide.css */

:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #000080; /* Midnight Blue */
  --text-light-color: #ffffff;
  --text-dark-color: #333333;
  --bg-dark-color: #0d0d0d; /* From shared.css body background */
  --border-color: rgba(255, 255, 255, 0.1);
}

.page-resources-sin88-platform-guide {
  background-color: var(--bg-dark-color);
  color: var(--text-light-color); /* Dark body background, so light text */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-resources-sin88-platform-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-resources-sin88-platform-guide__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  text-align: center;
  overflow: hidden;
}

.page-resources-sin88-platform-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}