.page-game-lobby-lottery {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray text for dark background */
  background-color: #0A192F; /* Main dark blue background */
  line-height: 1.6;
}

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

.page-game-lobby-lottery__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A192F 0%, #1a355e 100%); /* Dark blue gradient */
  text-align: center;
  gap: 40px;
}

.page-game-lobby-lottery__hero-content {
  max-width: 800px;
}

.page-game-lobby-lottery__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Golden accent for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

.page-game-lobby-lottery__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-lottery__btn--primary {
  background-color: #FFD700; /* Golden button */
  color: #0A192F; /* Dark blue text on golden button */
  border: 2px solid #FFD700;
}

.page-game-lobby-lottery__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-game-lobby-lottery__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Golden text on transparent button */
  border: 2px solid #FFD700;
}

.page-game-lobby-lottery__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
}

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

.page-game-lobby-lottery__hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-game-lobby-lottery__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Golden accent for section titles */
  text-align: center;
  margin-bottom: 30px;
  padding-top: 60px;
}

.page-game-lobby-lottery__section-description {
  font-size: 1.1em;
  color: #B0B0B0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-game-lobby-lottery__intro, .page-game-lobby-lottery__games, .page-game-lobby-lottery__guide, .page-game-lobby-lottery__tips, .page-game-lobby-lottery__faq, .page-game-lobby-lottery__cta-final {
  padding: 60px 0;
}

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

.page-game-lobby-lottery__feature-item {
  background-color: #1a355e; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-game-lobby-lottery__feature-item:hover {
  transform: translateY(-5px);
}

.page-game-lobby-lottery__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-game-lobby-lottery__feature-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-game-lobby-lottery__feature-item p {
  color: #B0B0B0;
  font-size: 1em;
}

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

.page-game-lobby-lottery__game-card {
  background-color: #1a355e;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.page-game-lobby-lottery__game-card:hover {
  transform: translateY(-5px);
}

.page-game-lobby-lottery__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-game-lobby-lottery__game-card h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin: 20px 15px 10px;
}

.page-game-lobby-lottery__game-card p {
  color: #B0B0B0;
  font-size: 0.95em;
  padding: 0 15px 20px;
  flex-grow: 1;
}

.page-game-lobby-lottery__btn--play {
  background-color: #FFD700;
  color: #0A192F;
  border: none;
  padding: 12px 25px;
  font-size: 1em;
  margin: 0 15px 20px;
  align-self: center;
  width: fit-content;
}

.page-game-lobby-lottery__btn--play:hover {
  background-color: #e6c200;
}

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

.page-game-lobby-lottery__step-item {
  text-align: center;
  position: relative;
  padding-top: 60px;
}

.page-game-lobby-lottery__step-number {
  background-color: #FFD700;
  color: #0A192F;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-lottery__step-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-game-lobby-lottery__step-item p {
  color: #B0B0B0;
  font-size: 0.95em;
}

.page-game-lobby-lottery__cta-bottom {
  text-align: center;
  margin-top: 60px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-game-lobby-lottery__guide-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  margin: 60px auto 0 auto;
  display: block;
}

.page-game-lobby-lottery__tip-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-lobby-lottery__tip-list li {
  background-color: #1a355e;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  color: #E0E0E0;
  font-size: 1.05em;
  border-left: 5px solid #FFD700;
}

.page-game-lobby-lottery__tip-list li strong {
  color: #FFD700;
}

.page-game-lobby-lottery__tips-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  margin: 60px auto 0 auto;
  display: block;
}

.page-game-lobby-lottery__accordion-item {
  background-color: #1a355e;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-game-lobby-lottery__accordion-header {
  width: 100%;
  padding: 20px;
  text-align: left;
  background-color: #2b4570; /* Slightly different dark blue for header */
  color: #FFD700;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.page-game-lobby-lottery__accordion-content {
  padding: 0 20px;
  background-color: #1a355e;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-game-lobby-lottery__accordion-content p {
  color: #B0B0B0;
  padding-bottom: 20px;
  margin-top: 0;
}

.page-game-lobby-lottery__accordion-content.active {
  max-height: 200px; /* Adjust as needed for content height */
  padding-top: 15px;
}

.page-game-lobby-lottery__final-actions {
  text-align: center;
  margin-top: 50px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-lobby-lottery__hero-title {
    font-size: 2.8em;
  }
  .page-game-lobby-lottery__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-game-lobby-lottery__hero {
    flex-direction: column;
    padding: 60px 15px;
  }
  .page-game-lobby-lottery__hero-title {
    font-size: 2.5em;
  }
  .page-game-lobby-lottery__hero-description {
    font-size: 1.1em;
  }
  .page-game-lobby-lottery__hero-actions {
    flex-direction: column;
  }
  .page-game-lobby-lottery__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-game-lobby-lottery__section-title {
    font-size: 2em;
    padding-top: 40px;
  }
  .page-game-lobby-lottery__section-description {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-game-lobby-lottery__features-grid, .page-game-lobby-lottery__game-grid, .page-game-lobby-lottery__steps {
    grid-template-columns: 1fr;
  }
  .page-game-lobby-lottery__step-number {
    font-size: 1.8em;
    width: 45px;
    height: 45px;
  }
  .page-game-lobby-lottery__cta-bottom, .page-game-lobby-lottery__final-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-game-lobby-lottery__hero-title {
    font-size: 2em;
  }
  .page-game-lobby-lottery__hero-description {
    font-size: 0.95em;
  }
  .page-game-lobby-lottery__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-game-lobby-lottery__section-title {
    font-size: 1.8em;
  }
  .page-game-lobby-lottery__section-description {
    font-size: 0.9em;
  }
  .page-game-lobby-lottery__feature-item h3, .page-game-lobby-lottery__game-card h3 {
    font-size: 1.3em;
  }
  .page-game-lobby-lottery__feature-item p, .page-game-lobby-lottery__game-card p {
    font-size: 0.9em;
  }
  .page-game-lobby-lottery__accordion-header {
    font-size: 1.1em;
    padding: 15px;
  }
}