/* style/blog-how-to-choose-online-casino.css */

:root {
  --ph365-primary: #F2C14E;
  --ph365-secondary: #FFD36B;
  --ph365-dark-bg: #0A0A0A;
  --ph365-card-bg: #111111;
  --ph365-text-main: #FFF6D6;
  --ph365-border: #3A2A12;
  --ph365-glow: #FFD36B;
  --ph365-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-blog-how-to-choose-online-casino {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--ph365-text-main); /* Main text color for dark body background */
  background-color: var(--ph365-dark-bg);
}

.page-blog-how-to-choose-online-casino__hero-section {
  position: relative;
  padding-top: 20px; /* Small top padding for internal spacing, header offset handled by body in shared.css */
  padding-bottom: 60px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-blog-how-to-choose-online-casino__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-blog-how-to-choose-online-casino__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-blog-how-to-choose-online-casino__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  color: #ffffff;
  margin-top: 100px; /* Push content down to avoid overlapping with header if not handled by body padding */
}

.page-blog-how-to-choose-online-casino__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--ph365-secondary);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-blog-how-to-choose-online-casino__hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-how-to-choose-online-casino__hero-cta-button {
  display: inline-block;
  background: var(--ph365-button-gradient);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none; /* Ensure no default button border */
}

.page-blog-how-to-choose-online-casino__hero-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-how-to-choose-online-casino__section {
  padding: 60px 0;
  background-color: var(--ph365-dark-bg);
  border-bottom: 1px solid var(--ph365-border);
}

.page-blog-how-to-choose-online-casino__section:last-of-type {
  border-bottom: none;
}