/* style/resources-reliable-betting-platform.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --login-color: #EA7C07;
  --background-color: #0a0a0a; /* Body background from shared.css */
  --text-light: #ffffff;
  --text-dark: #333333;
  --border-color: rgba(255, 255, 255, 0.1);
}

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

.page-resources-reliable-betting-platform__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-reliable-betting-platform__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background-color: var(--primary-color);
  color: var(--text-light);
  overflow: hidden;
}

.page-resources-reliable-betting-platform__hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-resources-reliable-betting-platform__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.2;
}

.page-resources-reliable-betting-platform__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page-resources-reliable-betting-platform__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-resources-reliable-betting-platform__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-resources-reliable-betting-platform__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.page-resources-reliable-betting-platform__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.page-resources-reliable-betting-platform__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-light);
}

.page-resources-reliable-betting-platform__paragraph--last {
  margin-bottom: 40px;
}

.page-resources-reliable-betting-platform__highlight {
  color: var(--primary-color);
  font-weight: bold;
}

.page-resources-reliable-betting-platform__feature-grid,
.page-resources-reliable-betting-platform__service-grid,
.page-resources-reliable-betting-platform__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-reliable-betting-platform__feature-item,
.page-resources-reliable-betting-platform__service-item,
.page-resources-reliable-betting-platform__game-item {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-light);
}

.page-resources-reliable-betting-platform__feature-title,
.page-resources-reliable-betting-platform__service-title,
.page-resources-reliable-betting-platform__game-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-resources-reliable-betting-platform__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.page-resources-reliable-betting-platform__list li {
  margin-bottom: 10px;
}

.page-resources-reliable-betting-platform__list-strong {
  color: var(--primary-color);
}

.page-resources-reliable-betting-platform__feature-image,
.page-resources-reliable-betting-platform__service-image,
.page-resources-reliable-betting-platform__game-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  display: block;
  object-fit: cover;
}