/* style/resources-online-gambling-security.css */

/* Root variables for consistent theming */
:root {
  --primary-color: #26A9E0; /* Main brand color */
  --secondary-color: #FFFFFF; /* Accent/background color */
  --text-color-dark: #333333; /* Dark text for light backgrounds */
  --text-color-light: #ffffff; /* Light text for dark backgrounds */
  --login-button-color: #EA7C07; /* Specific color for login */
  --background-color-default: #FFFFFF; /* Default page background */
  --border-color: #e0e0e0;
  --shadow-color: rgba(0, 0, 0, 0.1);
}

.page-resources-online-gambling-security {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark); /* Default text color for light body background */
  background-color: var(--background-color-default); /* Default white background */
}

/* HERO Section */
.page-resources-online-gambling-security__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: var(--primary-color); /* Use primary color for hero background */
  color: var(--text-color-light); /* Light text on primary background */
  overflow: hidden; /* Prevents overflow from image */
}

.page-resources-online-gambling-security__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-resources-online-gambling-security__hero-image {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  z-index: 1; /* Ensure image is behind content if content is overlaid */
}

.page-resources-online-gambling-security__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-resources-online-gambling-security__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 20px; /* Add some padding for text readability */
}

.page-resources-online-gambling-security__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: var(--text-color-light);
  font-weight: bold;
}

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

.page-resources-online-gambling-security__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--login-button-color); /* Using specific login button color for CTA */
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%; /* Ensure button is responsive */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-online-gambling-security__cta-button:hover {
  background: #EA7C07; /* Keeping it simple, no darken() */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-color);
}

.page-resources-online-gambling-security__cta-button--large {
    padding: 18px 50px;
    font-size: 1.2em;
}

/* General Content Sections */
.page-resources-online-gambling-security__content-section {
  padding: 60px 20px;
  background-color: var(--background-color-default);
}

.page-resources-online-gambling-security__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%; /* Ensure container is responsive */
  box-sizing: border-box;
}

.page-resources-online-gambling-security__section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-online-gambling-security__text-block {
  font-size: 1.1em;
  margin-bottom: 30px;
  text-align: justify;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Feature Grid for security measures, account protection, transactions */
.page-resources-online-gambling-security__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-online-gambling-security__feature-item {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-color-dark);
}

.page-resources-online-gambling-security__feature-item.page-resources-online-gambling-security__dark-bg-card {
  background-color: var(--primary-color); /* Darker card background */
  color: var(--text-color-light); /* Light text on darker card */
}