/* style/game-guides-caxeng-lottery.css */

:root {
  --page-game-guides-caxeng-lottery-primary-color: #0A2239;
  --page-game-guides-caxeng-lottery-secondary-color: #FFD700;
  --page-game-guides-caxeng-lottery-accent-color: #DC143C;
  --page-game-guides-caxeng-lottery-text-light: #f8f8f8;
  --page-game-guides-caxeng-lottery-text-dark: #333333;
  --page-game-guides-caxeng-lottery-background-light: #ffffff;
  --page-game-guides-caxeng-lottery-background-dark: #1a1a1a;
}

.page-game-guides-caxeng-lottery {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-game-guides-caxeng-lottery-text-dark);
  background-color: var(--page-game-guides-caxeng-lottery-background-light);
}

.page-game-guides-caxeng-lottery__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-guides-caxeng-lottery__hero {
  background: linear-gradient(135deg, var(--page-game-guides-caxeng-lottery-primary-color), #2A4259);
  color: var(--page-game-guides-caxeng-lottery-text-light);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-guides-caxeng-lottery__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-game-guides-caxeng-lottery__hero > .page-game-guides-caxeng-lottery__container {
  position: relative;
  z-index: 1;
}

.page-game-guides-caxeng-lottery__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--page-game-guides-caxeng-lottery-secondary-color);
  font-weight: bold;
}

.page-game-guides-caxeng-lottery__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-guides-caxeng-lottery__cta-button {
  display: inline-block;
  background-color: var(--page-game-guides-caxeng-lottery-accent-color);
  color: var(--page-game-guides-caxeng-lottery-text-light);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-game-guides-caxeng-lottery__cta-button:hover {
  background-color: #A00F2F; /* Darker accent */
  transform: translateY(-3px);
}

.page-game-guides-caxeng-lottery__cta-button--large {
  padding: 20px 40px;
  font-size: 1.5em;
}

.page-game-guides-caxeng-lottery__section {
  padding: 60px 0;
  background-color: var(--page-game-guides-caxeng-lottery-background-light);
}

.page-game-guides-caxeng-lottery__section:nth-of-type(even) {
  background-color: #f0f0f0;
}

.page-game-guides-caxeng-lottery__section-title {
  font-size: 2.5em;
  color: var(--page-game-guides-caxeng-lottery-primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-game-guides-caxeng-lottery__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--page-game-guides-caxeng-lottery-secondary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-game-guides-caxeng-lottery__introduction p,
.page-game-guides-caxeng-lottery__how-to-play p,
.page-game-guides-caxeng-lottery__tips p,
.page-game-guides-caxeng-lottery__conclusion p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-game-guides-caxeng-lottery__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.page-game-guides-caxeng-lottery__image--left {
  float: left;
  margin-right: 30px;
  width: 40%;
}

.page-game-guides-caxeng-lottery__image--right {
  float: right;
  margin-left: 30px;
  width: 40%;
}

.page-game-guides-caxeng-lottery__image--center {
  display: block;
  margin: 0 auto 30px auto;
  width: 60%;
}

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

.page-game-guides-caxeng-lottery__card {
  background-color: var(--page-game-guides-caxeng-lottery-background-light);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides-caxeng-lottery__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-game-guides-caxeng-lottery__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-game-guides-caxeng-lottery__card-title {
  font-size: 1.8em;
  color: var(--page-game-guides-caxeng-lottery-primary-color);
  margin-bottom: 15px;
}

.page-game-guides-caxeng-lottery__card p {
  font-size: 1em;
  color: var(--page-game-guides-caxeng-lottery-text-dark);
  margin-bottom: 20px;
}

.page-game-guides-caxeng-lottery__card-button {
  display: inline-block;
  background-color: var(--page-game-guides-caxeng-lottery-secondary-color);
  color: var(--page-game-guides-caxeng-lottery-primary-color);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-game-guides-caxeng-lottery__card-button:hover {
  background-color: #E6C200; /* Darker secondary */
}

.page-game-guides-caxeng-lottery__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-game-guides-caxeng-lottery__list li {
  background-color: #f9f9f9;
  border-left: 5px solid var(--page-game-guides-caxeng-lottery-secondary-color);
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-guides-caxeng-lottery__list-title {
  font-size: 1.5em;
  color: var(--page-game-guides-caxeng-lottery-primary-color);
  margin-top: 0;
  margin-bottom: 10px;
}

.page-game-guides-caxeng-lottery__list--bullets {
  list-style: disc;
  margin-left: 20px;
}

.page-game-guides-caxeng-lottery__list--bullets li {
  background-color: transparent;
  border-left: none;
  padding: 0;
  margin-bottom: 15px;
  box-shadow: none;
}

.page-game-guides-caxeng-lottery__list--bullets li strong {
  color: var(--page-game-guides-caxeng-lottery-primary-color);
}

.page-game-guides-caxeng-lottery__inline-button {
  display: inline-block;
  background-color: var(--page-game-guides-caxeng-lottery-primary-color);
  color: var(--page-game-guides-caxeng-lottery-text-light);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.page-game-guides-caxeng-lottery__inline-button:hover {
  background-color: #051828; /* Darker primary */
}

.page-game-guides-caxeng-lottery__accordion {
  margin-top: 40px;
}

.page-game-guides-caxeng-lottery__accordion-item {
  border: 1px solid #ddd;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.page-game-guides-caxeng-lottery__accordion-header {
  background-color: var(--page-game-guides-caxeng-lottery-primary-color);
  color: var(--page-game-guides-caxeng-lottery-text-light);
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.3em;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-game-guides-caxeng-lottery__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-game-guides-caxeng-lottery__accordion-header.active {
  background-color: #1A3A5A; /* Slightly lighter primary */
}

.page-game-guides-caxeng-lottery__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-game-guides-caxeng-lottery__accordion-content {
  padding: 0 25px;
  background-color: var(--page-game-guides-caxeng-lottery-background-light);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-game-guides-caxeng-lottery__accordion-content p {
  margin: 15px 0;
  font-size: 1.05em;
  color: var(--page-game-guides-caxeng-lottery-text-dark);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-guides-caxeng-lottery__title {
    font-size: 2.8em;
  }
  .page-game-guides-caxeng-lottery__subtitle {
    font-size: 1.3em;
  }
  .page-game-guides-caxeng-lottery__section-title {
    font-size: 2em;
  }
  .page-game-guides-caxeng-lottery__image--left,
  .page-game-guides-caxeng-lottery__image--right {
    float: none;
    margin: 0 auto 30px auto;
    width: 80%;
  }
}

@media (max-width: 768px) {
  .page-game-guides-caxeng-lottery__hero {
    padding: 80px 0;
  }
  .page-game-guides-caxeng-lottery__title {
    font-size: 2.2em;
  }
  .page-game-guides-caxeng-lottery__subtitle {
    font-size: 1.1em;
  }
  .page-game-guides-caxeng-lottery__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-guides-caxeng-lottery__cta-button--large {
    padding: 15px 30px;
    font-size: 1.2em;
  }
  .page-game-guides-caxeng-lottery__section {
    padding: 40px 0;
  }
  .page-game-guides-caxeng-lottery__section-title {
    font-size: 1.8em;
  }
  .page-game-guides-caxeng-lottery__grid {
    grid-template-columns: 1fr;
  }
  .page-game-guides-caxeng-lottery__card {
    padding: 20px;
  }
  .page-game-guides-caxeng-lottery__card-title {
    font-size: 1.5em;
  }
  .page-game-guides-caxeng-lottery__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-game-guides-caxeng-lottery__accordion-content {
    padding: 0 20px;
  }
  .page-game-guides-caxeng-lottery__image--center {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .page-game-guides-caxeng-lottery__title {
    font-size: 1.8em;
  }
  .page-game-guides-caxeng-lottery__subtitle {
    font-size: 1em;
  }
  .page-game-guides-caxeng-lottery__cta-button {
    font-size: 0.9em;
    padding: 10px 20px;
  }
  .page-game-guides-caxeng-lottery__section-title {
    font-size: 1.5em;
  }
  .page-game-guides-caxeng-lottery__introduction p,
  .page-game-guides-caxeng-lottery__how-to-play p,
  .page-game-guides-caxeng-lottery__tips p,
  .page-game-guides-caxeng-lottery__conclusion p {
    font-size: 0.95em;
  }
  .page-game-guides-caxeng-lottery__list li {
    padding: 15px;
  }
  .page-game-guides-caxeng-lottery__list-title {
    font-size: 1.3em;
  }
  .page-game-guides-caxeng-lottery__image--left,
  .page-game-guides-caxeng-lottery__image--right {
    width: 100%;
  }
}