:root {
  --primary-color: #0A192F;
  --secondary-color: #FFD700;
  --text-color-light: #ffffff;
  --text-color-dark: #333333;
  --bg-dark: #000; /* Body background from shared.css */
  --card-bg-dark: rgba(255, 255, 255, 0.1);
  --card-bg-light: #ffffff;
  --border-color: #e0e0e0;
}

.page-resources-online-casino-tips {
  color: var(--text-color-light); /* Default text color for the page, as body is dark */
  background-color: var(--bg-dark); /* Ensure consistency if section doesn't override */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Fixed header offset */
.page-resources-online-casino-tips__hero-section {
  padding-top: var(--header-offset, 120px); /* Desktop default */
}

.page-resources-online-casino-tips__section {
  padding: 60px 0;
}

.page-resources-online-casino-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-online-casino-tips__heading {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--secondary-color); /* Use gold for headings on dark backgrounds */
  font-weight: bold;
}

.page-resources-online-casino-tips__text-center {
  text-align: center;
}

/* Hero Section */
.page-resources-online-casino-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--primary-color); /* Dark blue background for hero */
  color: var(--text-color-light);
  overflow: hidden; /* Ensure image doesn't overflow */
}

.page-resources-online-casino-tips__hero-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.page-resources-online-casino-tips__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-resources-online-casino-tips__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-resources-online-casino-tips__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 30px;
  border-radius: 12px;
  background: rgba(10, 25, 47, 0.8); /* Slightly transparent primary color */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-resources-online-casino-tips__hero-content h1 {
  font-size: 3em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  line-height: 1.2;
}

.page-resources-online-casino-tips__hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-color-light);
}

.page-resources-online-casino-tips__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color); /* Dark text on gold button */
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-online-casino-tips__cta-button:hover {
  background: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Section Backgrounds and Text Colors */
.page-resources-online-casino-tips__dark-bg {
  background-color: var(--primary-color); /* Main dark blue */
  color: var(--text-color-light);
}

.page-resources-online-casino-tips__light-bg {
  background-color: #1a2c42; /* A slightly lighter dark for contrast with primary */
  color: var(--text-color-light);
}

.page-resources-online-casino-tips__light-bg .page-resources-online-casino-tips__heading {
  color: var(--secondary-color);
}

.page-resources-online-casino-tips__light-bg p,
.page-resources-online-casino-tips__light-bg li,
.page-resources-online-casino-tips__light-bg a {
  color: var(--text-color-light);
}