/* style/live.css */

/* Base styles for the live dealer page */
.page-live {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-live__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-live__section-title {
  font-size: 2.5em;
  color: #003366; /* Main brand color */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-live__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

/* Hero Section */
.page-live__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 0;
  margin-bottom: 60px;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.7);
}

.page-live__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 90%;
  padding: 20px;
  background-color: rgba(0, 51, 102, 0.7); /* Semi-transparent main color */
  border-radius: 10px;
}

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #FFCC00; /* Accent color for title */
  line-height: 1.2;
}

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-live__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-live__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
}

.page-live__button--primary {
  background-color: #FFCC00; /* Accent color */
  color: #003366; /* Main brand color */
  border: 2px solid #FFCC00;
}

.page-live__button--primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
}

.page-live__button--secondary {
  background-color: transparent;
  color: #FFCC00; /* Accent color */
  border: 2px solid #FFCC00;
}

.page-live__button--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
}

.page-live__button--small {
  padding: 8px 18px;
  font-size: 0.95em;
}

/* About Section */
.page-live__about-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

/* Games Section */
.page-live__games-section {
  padding: 60px 0;
}

.page-live__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-live__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-live__game-card:hover {
  transform: translateY(-5px);
}

.page-live__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-live__game-content {
  padding: 25px 20px;
}

.page-live__game-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 10px;
}

.page-live__game-title a {
  color: #003366;
  text-decoration: none;
}

.page-live__game-title a:hover {
  color: #FFCC00;
}

.page-live__game-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

/* Features Section */
.page-live__features-section {
  padding: 60px 0;
  background-color: #003366;
  color: #ffffff;
}

.page-live__features-section .page-live__section-title {
  color: #FFCC00;
}

.page-live__features-section .page-live__section-description {
  color: #f0f0f0;
}

.page-live__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-live__feature-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-live__feature-title {
  font-size: 1.8em;
  color: #FFCC00;
  margin-bottom: 15px;
}

.page-live__feature-description {
  font-size: 1em;
  color: #f0f0f0;
}

.page-live__feature-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Guide Section */
.page-live__guide-section {
  padding: 60px 0;
}

.page-live__guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-live__guide-step {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px 20px;
  text-align: center;
}

.page-live__guide-image {
  width: 100%;
  height: 150px; /* Fixed height for consistency */
  object-fit: contain;
  margin-bottom: 20px;
}

.page-live__guide-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 10px;
}

.page-live__guide-description {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
}

/* Promo Section */
.page-live__promo-section {
  padding: 60px 0;
  background-color: #f0f5fa; /* Light blueish background */
  text-align: center;
}

.page-live__promo-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsible Gambling Section */
.page-live__responsible-gambling {
  padding: 60px 0;
  background-color: #e6f2ff; /* Another light blue */
  text-align: center;
}

.page-live__responsible-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* CTA Section */
.page-live__cta-section {
  padding: 80px 0;
  background-color: #003366; /* Main brand color */
  color: #ffffff;
  text-align: center;
}

.page-live__cta-section .page-live__section-title {
  color: #FFCC00;
  margin-bottom: 25px;
}

.page-live__cta-section .page-live__section-description {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-live__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-live__cta-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 3em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding: 40px 0;
  }
  .page-live__hero-content {
    padding: 15px;
  }
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__section-description {
    font-size: 1em;
  }
  .page-live__game-grid, .page-live__features-grid, .page-live__guide-grid {
    grid-template-columns: 1fr;
  }
  /* Mobile content area images must not overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
  .page-live__game-image, .page-live__guide-image {
    height: auto; /* Allow auto height for responsiveness */
    min-height: 200px; /* Ensure minimum size */
    object-fit: cover;
  }
  .page-live__feature-image, .page-live__promo-image, .page-live__responsible-image, .page-live__cta-image {
    min-height: 200px;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__hero-description {
    font-size: 0.9em;
  }
  .page-live__button {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__feature-title, .page-live__guide-title {
    font-size: 1.4em;
  }
}