/* style/casino-game-strategies.css */

/* Base styles for the page */
.page-casino-game-strategies {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-casino-game-strategies__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-casino-game-strategies__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  overflow: hidden;
  padding: 100px 0;
  background-color: #26A9E0; /* Brand color as background */
  color: #ffffff;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-casino-game-strategies__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3; /* Subtle overlay */
}

.page-casino-game-strategies__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-casino-game-strategies__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}

/* Section General */
.page-casino-game-strategies__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #26A9E0; /* Brand color for titles */
}

.page-casino-game-strategies__section-title--white {
  color: #ffffff;
}

.page-casino-game-strategies__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333; /* Dark text for light backgrounds */
}

.page-casino-game-strategies__text-block--white {
  color: #ffffff; /* White text for dark backgrounds */
}

.page-casino-game-strategies__highlight {
  color: #26A9E0; /* Highlight color */
  font-weight: bold;
}

/* Buttons */
.page-casino-game-strategies__btn-primary,
.page-casino-game-strategies__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-casino-game-strategies__btn-primary {
  background-color: #26A9E0; /* Main brand color */
  color: #ffffff;
  border: 2px solid #26A9E0;
  margin: 10px;
}

.page-casino-game-strategies__btn-primary:hover {
  background-color: #1a8cc4; /* Darker shade on hover */
  border-color: #1a8cc4;
}

.page-casino-game-strategies__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0; /* Text in brand color */
  border: 2px solid #26A9E0;
  margin: 10px;
}

.page-casino-game-strategies__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #1a8cc4;
  border-color: #1a8cc4;
}

/* Sections */
.page-casino-game-strategies__introduction-section,
.page-casino-game-strategies__game-strategies-section,
.page-casino-game-strategies__practice-section,
.page-casino-game-strategies__cta-section {
  padding: 80px 0;
  background-color: #ffffff; /* Light background for these sections */
  color: #333333; /* Dark text for light backgrounds */
}

.page-casino-game-strategies__dark-bg {
  background-color: #121212; /* Dark background matching body */
  color: #ffffff; /* White text for dark backgrounds */
}

/* Video Section */
.page-casino-game-strategies__video-section {
  padding: 80px 0;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Specific padding for video section */
}

.page-casino-game-strategies__video-wrapper {
  max-width: 800px;
  margin: 0 auto 30px auto;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background-color: #000;
  border-radius: 10px;
}

.page-casino-game-strategies__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: block; /* Ensure it behaves as a block element */
  cursor: pointer;
}

/* Game Strategies Grid */
.page-casino-game-strategies__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}