/* style/game-lobby-arcade-games.css */
.page-game-lobby-arcade-games {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-game-lobby-arcade-games__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-lobby-arcade-games__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-game-lobby-arcade-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-arcade-games__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-game-lobby-arcade-games__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  overflow: hidden;
}

.page-game-lobby-arcade-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) blur(3px);
  transform: scale(1.1);
}

.page-game-lobby-arcade-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FFD700; /* Gold */
  color: #0056b3; /* Darker blue for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-game-lobby-arcade-games__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
}

.page-game-lobby-arcade-games__cta-button--large {
  padding: 20px 40px;
  font-size: 1.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.page-game-lobby-arcade-games__cta-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  filter: brightness(0.8); /* Adjust icon color for better contrast */
}

.page-game-lobby-arcade-games__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-game-lobby-arcade-games__section:nth-of-type(even) {
  background-color: #f8f8f8;
}

.page-game-lobby-arcade-games__section-title {
  font-size: 2.5em;
  color: #007BFF; /* Primary blue */
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-game-lobby-arcade-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  border-radius: 2px;
}

.page-game-lobby-arcade-games__section-content p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
  text-align: left;
}

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

.page-game-lobby-arcade-games__grid-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease;
}

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

.page-game-lobby-arcade-games__grid-title {
  font-size: 1.8em;
  color: #007BFF;
  margin-bottom: 20px;
  text-align: center;
}

.page-game-lobby-arcade-games__grid-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-game-lobby-arcade-games__grid-description {
  font-size: 1em;
  color: #666;
}

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

.page-game-lobby-arcade-games__feature-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: left;
  border-top: 5px solid #007BFF;
}

.page-game-lobby-arcade-games__feature-title {
  font-size: 1.6em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-game-lobby-arcade-games__feature-item p {
  color: #666;
  font-size: 1em;
}

.page-game-lobby-arcade-games__feature-image {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-game-lobby-arcade-games__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-game-lobby-arcade-games__steps-list li {
  background-color: #fff;
  border-left: 5px solid #FFD700;
  margin-bottom: 25px;
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  position: relative;
  counter-increment: step-counter;
}

.page-game-lobby-arcade-games__steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #007BFF;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-arcade-games__step-title {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 10px;
  margin-left: 30px; /* Adjust for counter */
}

.page-game-lobby-arcade-games__steps-list li p {
  color: #666;
  font-size: 1em;
  margin-left: 30px; /* Adjust for counter */
}

.page-game-lobby-arcade-games__step-button {
  margin-top: 15px;
  margin-left: 30px; /* Adjust for counter */
}

.page-game-lobby-arcade-games__step-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.page-game-lobby-arcade-games__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-game-lobby-arcade-games__tips-list li {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #FFD700;
  color: #555;
  font-size: 1.05em;
}

.page-game-lobby-arcade-games__tips-list li strong {
  color: #007BFF;
}

.page-game-lobby-arcade-games__commitment-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.page-game-lobby-arcade-games__commitment-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.page-game-lobby-arcade-games__commitment-content p {
  text-align: left;
  font-size: 1.1em;
  color: #555;
  max-width: 800px;
}

.page-game-lobby-arcade-games__community-description,
.page-game-lobby-arcade-games__final-cta-description {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-game-lobby-arcade-games__hero {
    padding: 60px 15px;
  }

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

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

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

  .page-game-lobby-arcade-games__grid {
    grid-template-columns: 1fr;
  }

  .page-game-lobby-arcade-games__feature-list {
    grid-template-columns: 1fr;
  }

  .page-game-lobby-arcade-games__steps-list li {
    padding: 20px 20px 20px 40px;
  }

  .page-game-lobby-arcade-games__steps-list li::before {
    left: 10px;
    top: 20px;
    transform: translateY(0);
  }

  .page-game-lobby-arcade-games__step-title,
  .page-game-lobby-arcade-games__steps-list li p,
  .page-game-lobby-arcade-games__step-button {
    margin-left: 0;
  }

  .page-game-lobby-arcade-games__cta-button--large {
    font-size: 1.2em;
    padding: 15px 25px;
  }

  .page-game-lobby-arcade-games__cta-icon {
    width: 25px;
    height: 25px;
  }
}

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

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

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

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

  .page-game-lobby-arcade-games__feature-title {
    font-size: 1.4em;
  }

  .page-game-lobby-arcade-games__step-title {
    font-size: 1.3em;
  }
}