/* style/casino-live-games-rules.css */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --accent-red: #C30808; /* For Register/Login buttons */
  --accent-red-hover: #A30707; /* Darker red for hover */
  --accent-yellow: #FFFF00; /* For Register/Login font */
  --border-color: #e0e0e0;
  --bg-light-gray: #f9f9f9;
}

.page-casino-live-games-rules {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light background */
  background-color: var(--secondary-color); /* Matches body background */
}

/* Fixed header offset */
.page-casino-live-games-rules__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-casino-live-games-rules__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-casino-live-games-rules__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #004d26 100%); /* Darker green gradient */
  color: var(--text-light);
}

.page-casino-live-games-rules__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-casino-live-games-rules__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-casino-live-games-rules__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-casino-live-games-rules__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}