/* style/promotions-daily-free-spins.css */
.page-promotions-daily-free-spins {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light text for dark backgrounds */
  background-color: #1A2A3A; /* Dark blue background */
  line-height: 1.6;
}

.page-promotions-daily-free-spins__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions-daily-free-spins__container--center {
  text-align: center;
}

/* Hero Section */
.page-promotions-daily-free-spins__hero {
  background: linear-gradient(135deg, #FFD700, #1A2A3A);
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #1A2A3A; /* Dark text on light gold gradient */
  position: relative;
  overflow: hidden;
}

.page-promotions-daily-free-spins__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-promotions-daily-free-spins__hero h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #1A2A3A;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-free-spins__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #333;
}

.page-promotions-daily-free-spins__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-promotions-daily-free-spins__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-promotions-daily-free-spins__button--primary {
  background-color: #FFD700;
  color: #1A2A3A;
  border: 2px solid #FFD700;
}

.page-promotions-daily-free-spins__button--primary:hover {
  background-color: #b39700;
  border-color: #b39700;
  transform: translateY(-2px);
}

.page-promotions-daily-free-spins__button--secondary {
  background-color: transparent;
  color: #1A2A3A;
  border: 2px solid #1A2A3A;
}

.page-promotions-daily-free-spins__button--secondary:hover {
  background-color: #1A2A3A;
  color: #FFD700;
  transform: translateY(-2px);
}

.page-promotions-daily-free-spins__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-promotions-daily-free-spins__button--large {
  padding: 18px 35px;
  font-size: 1.1em;
}

.page-promotions-daily-free-spins__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.2;
  z-index: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.page-promotions-daily-free-spins__hero-image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* General Section Styling */
.page-promotions-daily-free-spins__section {
  padding: 60px 0;
  background-color: #1A2A3A;
  color: #E0E0E0;
}

.page-promotions-daily-free-spins__section:nth-of-type(even) {
  background-color: #2a3d50; /* Slightly lighter dark blue for contrast */
}

.page-promotions-daily-free-spins__section h2 {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-daily-free-spins__section h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-promotions-daily-free-spins__section h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-promotions-daily-free-spins__section p {
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-promotions-daily-free-spins__section ul,
.page-promotions-daily-free-spins__section ol {
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-promotions-daily-free-spins__section li {
  margin-bottom: 10px;
}

.page-promotions-daily-free-spins__section a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions-daily-free-spins__section a:hover {
  color: #b39700;
  text-decoration: underline;
}

.page-promotions-daily-free-spins__image-inline {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-promotions-daily-free-spins__game-card {
  background-color: #2a3d50; /* Lighter dark blue for card background */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-daily-free-spins__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions-daily-free-spins__game-card-image {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid #FFD700;
}

.page-promotions-daily-free-spins__game-card h3 {
  font-size: 1.5em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-promotions-daily-free-spins__game-card p {
  font-size: 1em;
  color: #C0C0C0;
  margin-bottom: 20px;
}

.page-promotions-daily-free-spins__note {
  text-align: center;
  font-style: italic;
  margin-top: 40px;
  color: #AAAAAA;
}

/* Accordion for FAQ */
.page-promotions-daily-free-spins__accordion {
  margin-top: 30px;
}

.page-promotions-daily-free-spins__accordion-item {
  background-color: #2a3d50;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-free-spins__accordion-header {
  background-color: #FFD700;
  color: #1A2A3A;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promotions-daily-free-spins__accordion-header:hover {
  background-color: #b39700;
}

.page-promotions-daily-free-spins__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions-daily-free-spins__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions-daily-free-spins__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background-color: #1A2A3A;
  color: #E0E0E0;
}

.page-promotions-daily-free-spins__accordion-content p {
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 0;
}

/* Highlight span */
.page-promotions-daily-free-spins .highlight {
  color: #FFD700;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-daily-free-spins__hero h1 {
    font-size: 2.5em;
  }
  .page-promotions-daily-free-spins__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions-daily-free-spins__section h2 {
    font-size: 2em;
  }
  .page-promotions-daily-free-spins__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promotions-daily-free-spins__hero-image-wrapper {
    width: 60%;
  }
}

@media (max-width: 768px) {
  .page-promotions-daily-free-spins__hero {
    padding: 60px 0;
  }
  .page-promotions-daily-free-spins__hero h1 {
    font-size: 2em;
  }
  .page-promotions-daily-free-spins__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions-daily-free-spins__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions-daily-free-spins__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-promotions-daily-free-spins__section {
    padding: 40px 0;
  }
  .page-promotions-daily-free-spins__section h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-promotions-daily-free-spins__section p,
  .page-promotions-daily-free-spins__section ul,
  .page-promotions-daily-free-spins__section ol {
    font-size: 1em;
  }
  .page-promotions-daily-free-spins__hero-image-wrapper {
    width: 80%;
    top: auto;
    bottom: -50px;
    opacity: 0.1;
  }
}

@media (max-width: 480px) {
  .page-promotions-daily-free-spins__hero h1 {
    font-size: 1.8em;
  }
  .page-promotions-daily-free-spins__hero-subtitle {
    font-size: 0.9em;
  }
  .page-promotions-daily-free-spins__button {
    width: 90%;
  }
  .page-promotions-daily-free-spins__section h2 {
    font-size: 1.5em;
  }
  .page-promotions-daily-free-spins__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }
}