/* style/casino.css */

/* General styles for the casino page */
.page-casino {
  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__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-casino__section-title {
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  color: #ffffff; /* Default for dark sections */
}

.page-casino__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino__light-text {
  color: #ffffff;
}

.page-casino__dark-text {
  color: #333333;
}

.page-casino__dark-bg {
  background-color: #017439; /* Brand primary color for dark sections */
  color: #ffffff;
  padding: 80px 0;
}

.page-casino__light-bg {
  background-color: #ffffff; /* White background for light sections */
  color: #333333;
  padding: 80px 0;
}

.page-casino__card {
  background-color: #ffffff;
  color: #333333;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.page-casino img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure images in content area are not too small */
.page-casino__content-area img,
.page-casino__games-section img,
.page-casino__promotions-section img,
.page-casino__how-to-start-section img,
.page-casino__mobile-section img,
.page-casino__faq-section img,
.page-casino__responsible-gambling-section img,
.page-casino__cta-section img {
    min-width: 200px;
    min-height: 200px;
}

/* Buttons */
.page-casino__btn-primary,
.page-casino__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-align: center;
  box-sizing: border-box; /* Ensure padding doesn't increase width */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
}

.page-casino__btn-primary {
  background-color: #C30808; /* Custom color for register/login type buttons */
  color: #FFFF00; /* Custom text color */
  border: 2px solid #C30808;
}

.page-casino__btn-primary:hover {
  background-color: #a30606;
  border-color: #a30606;
  color: #ffffff;
}

.page-casino__btn-secondary {
  background-color: transparent;
  color: #017439; /* Brand primary color */
  border: 2px solid #017439;
}

.page-casino__btn-secondary:hover {
  background-color: #017439;
  color: #ffffff;
}

.page-casino__cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Hero Section */
.page-casino__hero-section {
  position: relative;
  height: 600px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 0; /* shared.css handles body padding */
}

.page-casino__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}