/* style/resources-guide-f88-casino-games.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-color-dark-bg: #FFFFFF;
  --text-color-light-bg: #333333;
  --login-color: #EA7C07;
  --background-color: #1a1a2e; /* From body background in shared.css */
}

.page-resources-guide-f88-casino-games {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark-bg); /* Default text color for dark body background */
  background-color: var(--background-color);
}

.page-resources-guide-f88-casino-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  min-height: 600px;
  background-color: var(--primary-color);
  color: var(--text-color-dark-bg);
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-resources-guide-f88-casino-games__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-resources-guide-f88-casino-games__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--text-color-dark-bg);
  line-height: 1.2;
}

.page-resources-guide-f88-casino-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: var(--text-color-dark-bg);
}

.page-resources-guide-f88-casino-games__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-resources-guide-f88-casino-games__btn-primary,
.page-resources-guide-f88-casino-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-resources-guide-f88-casino-games__btn-primary {
  background-color: var(--login-color); /* Using login color for primary action */
  color: var(--secondary-color);
  border: 2px solid var(--login-color);
}

.page-resources-guide-f88-casino-games__btn-primary:hover {
  background-color: #cc6d06; /* Darken #EA7C07 */
  border-color: #cc6d06; /* Darken #EA7C07 */
}

.page-resources-guide-f88-casino-games__btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-resources-guide-f88-casino-games__btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-resources-guide-f88-casino-games__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle overlay */
  display: block;
}

.page-resources-guide-f88-casino-games__section {
  padding: 60px 20px;
  text-align: center;
}

.page-resources-guide-f88-casino-games__content-area {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-resources-guide-f88-casino-games__dark-bg {
  background-color: var(--background-color);
  color: var(--text-color-dark-bg);
}

.page-resources-guide-f88-casino-games__light-bg {
  background-color: var(--secondary-color);
  color: var(--text-color-light-bg);
}

.page-resources-guide-f88-casino-games__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.page-resources-guide-f88-casino-games__dark-bg .page-resources-guide-f88-casino-games__section-title {
  color: var(--text-color-dark-bg);
}

.page-resources-guide-f88-casino-games__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: left;
}

.page-resources-guide-f88-casino-games__image-text-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.page-resources-guide-f88-casino-games__image-inline {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  display: block;
  min-width: 200px; /* Ensure minimum image size */
  min-height: 200px;
}

.page-resources-guide-f88-casino-games__text-content {
  flex: 1;
}

.page-resources-guide-f88-casino-games__sub-title {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-resources-guide-f88-casino-games__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 30px;
  color: var(--text-color-light-bg);
}

.page-resources-guide-f88-casino-games__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-resources-guide-f88-casino-games__list strong {
  color: var(--primary-color);
}

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

.page-resources-guide-f88-casino-games__card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for dark bg */
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-color-dark-bg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-guide-f88-casino-games__light-bg .page-resources-guide-f88-casino-games__card {
  background-color: var(--secondary-color);
  color: var(--text-color-light-bg);
  border: 1px solid #e0e0e0;
}

.page-resources-guide-f88-casino-games__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  min-width: 200px; /* Ensure minimum image size */
  min-height: 200px;
}

.page-resources-guide-f88-casino-games__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-resources-guide-f88-casino-games__card-title a {
  color: inherit;
  text-decoration: none;
}

.page-resources-guide-f88-casino-games__card-title a:hover {
  text-decoration: underline;
}