.page-game-lobby-lottery {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light gray for general text */
  background-color: #0d0d2b; /* Very dark blue for overall background */
}

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

.page-game-lobby-lottery__section {
  padding: 60px 0;
  text-align: center;
}

.page-game-lobby-lottery__section:nth-of-type(even) {
  background-color: #1a1a3a; /* Slightly lighter dark blue for alternating sections */
}

.page-game-lobby-lottery__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for titles */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-lobby-lottery__section-subtitle {
  font-size: 1.2em;
  color: #cccccc; /* Lighter gray for subtitles */
  margin-bottom: 40px;
}

/* Hero Section */
.page-game-lobby-lottery__hero-section {
  background: linear-gradient(135deg, #000080, #1a1a3a); /* Dark blue gradient */
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
  text-align: left;
}

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

.page-game-lobby-lottery__hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 20px;
}

.page-game-lobby-lottery__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-game-lobby-lottery__hero-description {
  font-size: 1.3em;
  color: #e0e0e0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-game-lobby-lottery__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

.page-game-lobby-lottery__hero-image {
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

/* Buttons */
.page-game-lobby-lottery__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.page-game-lobby-lottery__button--primary {
  background-color: #FFD700; /* Gold */
  color: #000080; /* Dark Blue */
  border: 2px solid #FFD700;
}

.page-game-lobby-lottery__button--primary:hover {
  background-color: #e6c200; /* Darker gold */
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-lottery__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-game-lobby-lottery__button--secondary:hover {
  background-color: #FFD700;
  color: #000080; /* Dark Blue */
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-lottery__button--tertiary {
  background-color: #000080; /* Dark Blue */
  color: #FFD700; /* Gold */
  border: 2px solid #000080;
}

.page-game-lobby-lottery__button--tertiary:hover {
  background-color: #000066; /* Darker blue */
  border-color: #000066;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-lottery__button--small {
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 6px;
  margin-top: 15px;
  background-color: #FFD700;
  color: #000080;
  border: none;
}

.page-game-lobby-lottery__button--small:hover {
  background-color: #e6c200;
}

.page-game-lobby-lottery__button--inline {
  padding: 8px 15px;
  font-size: 0.9em;
  border-radius: 5px;
  margin-top: 10px;
  background-color: #FFD700;
  color: #000080;
  border: none;
}

.page-game-lobby-lottery__button--inline:hover {
  background-color: #e6c200;
}

.page-game-lobby-lottery__inline-link {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-game-lobby-lottery__inline-link:hover {
  color: #e6c200;
}

/* Content Blocks with Image */
.page-game-lobby-lottery__content-block {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  margin-top: 40px;
}

.page-game-lobby-lottery__content-block--reverse {
  flex-direction: row-reverse;
}

.page-game-lobby-lottery__image-left, .page-game-lobby-lottery__image-right {
  flex: 1;
  max-width: 50%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-lottery__text-content {
  flex: 1;
  max-width: 50%;
}

.page-game-lobby-lottery__text-content p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #e0e0e0;
}

.page-game-lobby-lottery__text-content ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #e0e0e0;
}

.page-game-lobby-lottery__text-content ul li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.page-game-lobby-lottery__text-content strong {
  color: #FFD700;
}

/* Lottery Types Grid */
.page-game-lobby-lottery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-lobby-lottery__card {
  background-color: #000080; /* Dark Blue */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-game-lobby-lottery__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.page-game-lobby-lottery__card-image {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-lottery__card-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
}

.page-game-lobby-lottery__card-description {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-game-lobby-lottery__card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: left;
  color: #e0e0e0;
}

.page-game-lobby-lottery__card ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.page-game-lobby-lottery__card ul li::before {
  content: '✓';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Steps Guide */
.page-game-lobby-lottery__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-lobby-lottery__step {
  background-color: #000080; /* Dark Blue */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-game-lobby-lottery__step-icon {
  background-color: #FFD700; /* Gold */
  color: #000080; /* Dark Blue */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-lottery__step-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
}

.page-game-lobby-lottery__step-description {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-game-lobby-lottery__full-width-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Tips Grid */
.page-game-lobby-lottery__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-game-lobby-lottery__tip-item {
  background-color: #1a1a3a;
  border-left: 5px solid #FFD700; /* Gold border */
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-lottery__tip-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-game-lobby-lottery__tip-description {
  font-size: 1em;
  line-height: 1.6;
  color: #e0e0e0;
}

/* Offers Grid */
.page-game-lobby-lottery__offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-lobby-lottery__offer-card {
  background-color: #000080;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-game-lobby-lottery__offer-card:hover {
  transform: translateY(-10px);
  background-color: #000066;
}

.page-game-lobby-lottery__offer-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-lobby-lottery__offer-description {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 20px;
}

/* Features Grid (Why Choose) */
.page-game-lobby-lottery__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-game-lobby-lottery__feature-item {
  background-color: #1a1a3a;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-left: 60px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-game-lobby-lottery__feature-item::before {
  content: '★'; /* Star icon */
  color: #FFD700;
  font-size: 2.5em;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}

.page-game-lobby-lottery__feature-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-game-lobby-lottery__feature-description {
  font-size: 1em;
  line-height: 1.6;
  color: #e0e0e0;
}

/* FAQ Section */
.page-game-lobby-lottery__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-game-lobby-lottery__faq-item {
  background-color: #000080;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-game-lobby-lottery__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-game-lobby-lottery__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-game-lobby-lottery__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-game-lobby-lottery__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding: 0 0px;
}

.page-game-lobby-lottery__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding: 10px 0px;
}

/* CTA Section */
.page-game-lobby-lottery__cta-section {
  background: linear-gradient(90deg, #FFD700, #e6c200); /* Gold gradient */
  padding: 80px 0;
  text-align: center;
  color: #000080; /* Dark blue text on gold background */
}

.page-game-lobby-lottery__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-lottery__cta-description {
  font-size: 1.4em;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333399; /* Slightly lighter dark blue for description */
}

.page-game-lobby-lottery__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-game-lobby-lottery__cta-actions .page-game-lobby-lottery__button--primary {
  background-color: #000080; /* Dark Blue */
  color: #FFD700; /* Gold */
  border: 2px solid #000080;
}

.page-game-lobby-lottery__cta-actions .page-game-lobby-lottery__button--primary:hover {
  background-color: #000066;
  border-color: #000066;
}

.page-game-lobby-lottery__cta-actions .page-game-lobby-lottery__button--secondary {
  background-color: transparent;
  color: #000080; /* Dark Blue */
  border: 2px solid #000080;
}

.page-game-lobby-lottery__cta-actions .page-game-lobby-lottery__button--secondary:hover {
  background-color: #000080;
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-lobby-lottery__hero-section {
    flex-direction: column;
    text-align: center;
    padding: 80px 20px;
  }

  .page-game-lobby-lottery__hero-content {
    max-width: 100%;
    padding: 0;
  }

  .page-game-lobby-lottery__hero-title {
    font-size: 2.8em;
  }

  .page-game-lobby-lottery__hero-description {
    font-size: 1.1em;
  }

  .page-game-lobby-lottery__hero-actions {
    justify-content: center;
  }

  .page-game-lobby-lottery__hero-image {
    max-width: 80%;
    margin-top: 40px;
  }

  .page-game-lobby-lottery__content-block {
    flex-direction: column;
    text-align: center;
  }

  .page-game-lobby-lottery__content-block--reverse {
    flex-direction: column;
  }

  .page-game-lobby-lottery__image-left, .page-game-lobby-lottery__image-right {
    max-width: 80%;
    margin-bottom: 30px;
  }

  .page-game-lobby-lottery__text-content {
    max-width: 100%;
  }

  .page-game-lobby-lottery__section-title {
    font-size: 2.2em;
  }

  .page-game-lobby-lottery__section-subtitle {
    font-size: 1em;
  }

  .page-game-lobby-lottery__cta-title {
    font-size: 2.5em;
  }

  .page-game-lobby-lottery__cta-description {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-game-lobby-lottery__hero-title {
    font-size: 2.2em;
  }

  .page-game-lobby-lottery__hero-description {
    font-size: 1em;
  }

  .page-game-lobby-lottery__button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-lobby-lottery__section {
    padding: 40px 0;
  }

  .page-game-lobby-lottery__section-title {
    font-size: 1.8em;
  }

  .page-game-lobby-lottery__grid, .page-game-lobby-lottery__steps-grid, .page-game-lobby-lottery__tips-grid, .page-game-lobby-lottery__offers-grid, .page-game-lobby-lottery__features-grid {
    grid-template-columns: 1fr;
  }

  .page-game-lobby-lottery__card, .page-game-lobby-lottery__step, .page-game-lobby-lottery__tip-item, .page-game-lobby-lottery__offer-card, .page-game-lobby-lottery__feature-item, .page-game-lobby-lottery__faq-item {
    padding: 20px;
  }

  .page-game-lobby-lottery__cta-title {
    font-size: 2em;
  }

  .page-game-lobby-lottery__cta-description {
    font-size: 1em;
  }

  .page-game-lobby-lottery__cta-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-game-lobby-lottery__image-left, .page-game-lobby-lottery__image-right {
    max-width: 100%;
  }

  .page-game-lobby-lottery__feature-item {
    padding-left: 20px;
    text-align: center;
    min-height: auto;
  }

  .page-game-lobby-lottery__feature-item::before {
    position: static;
    transform: none;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .page-game-lobby-lottery__hero-title {
    font-size: 1.8em;
  }

  .page-game-lobby-lottery__hero-description {
    font-size: 0.9em;
  }

  .page-game-lobby-lottery__hero-actions {
    flex-direction: column;
  }

  .page-game-lobby-lottery__button {
    width: 100%;
  }

  .page-game-lobby-lottery__section-title {
    font-size: 1.5em;
  }

  .page-game-lobby-lottery__cta-title {
    font-size: 1.8em;
  }
}