:root {
  --primary-color: #1A2B3C;
  --secondary-color: #FFD700;
  --text-light: #FFFFFF;
  --text-dark: #1A2B3C;
  --background-light: #F8F9FA;
  --background-dark: #1A2B3C;
  --accent-gold-darker: #b39700; /* Darker shade for text on gold */
}

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

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

.page-game-lobby-fishing-games__section {
  padding: 80px 0;
  text-align: center;
}

.page-game-lobby-fishing-games__section-title {
  font-size: 2.8em;
  color: var(--primary-color);
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.page-game-lobby-fishing-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

/* Hero Section */
.page-game-lobby-fishing-games__hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #3a4c5e 100%);
  color: var(--text-light);
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

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

.page-game-lobby-fishing-games__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--secondary-color);
}

.page-game-lobby-fishing-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

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

.page-game-lobby-fishing-games__hero-image-wrapper {
  position: relative;
  width: 500px;
  height: 350px;
  z-index: 1;
}

.page-game-lobby-fishing-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-game-lobby-fishing-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.page-game-lobby-fishing-games__btn--primary {
  background-color: var(--secondary-color);
  color: var(--text-dark);
  border-color: var(--secondary-color);
}

.page-game-lobby-fishing-games__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.4);
}

.page-game-lobby-fishing-games__btn--secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.page-game-lobby-fishing-games__btn--secondary:hover {
  background-color: var(--secondary-color);
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.2);
}

.page-game-lobby-fishing-games__btn--outline {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.page-game-lobby-fishing-games__btn--outline:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-3px);
}

/* About Section */
.page-game-lobby-fishing-games__about {
  background-color: var(--background-light);
}

.page-game-lobby-fishing-games__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}

.page-game-lobby-fishing-games__content-grid--reverse {
  grid-template-columns: 1fr 1fr;
}

.page-game-lobby-fishing-games__content-grid--reverse .page-game-lobby-fishing-games__text-content {
  order: 2;
}

.page-game-lobby-fishing-games__content-grid--reverse .page-game-lobby-fishing-games__image-content {
  order: 1;
}

.page-game-lobby-fishing-games__text-content p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333;
}

.page-game-lobby-fishing-games__image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.page-game-lobby-fishing-games__features {
  background-color: #f0f2f5;
}

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

.page-game-lobby-fishing-games__feature-item {
  background-color: var(--text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-lobby-fishing-games__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-game-lobby-fishing-games__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(255, 215, 0, 0.4));
}

.page-game-lobby-fishing-games__feature-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

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

/* Strategy Section */
.page-game-lobby-fishing-games__strategy {
  background-color: var(--background-light);
}

.page-game-lobby-fishing-games__strategy ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
}

.page-game-lobby-fishing-games__strategy ul li {
  font-size: 1.1em;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #333;
}

.page-game-lobby-fishing-games__strategy ul li::before {
  content: '✓';
  color: var(--secondary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
}

/* CTA Section */
.page-game-lobby-fishing-games__cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, #3a4c5e 100%);
  color: var(--text-light);
  padding: 80px 0;
}

.page-game-lobby-fishing-games__cta-inner {
  max-width: 900px;
}

.page-game-lobby-fishing-games__cta-title {
  font-size: 3em;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.page-game-lobby-fishing-games__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  opacity: 0.9;
}

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

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

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

  .page-game-lobby-fishing-games__hero-title {
    font-size: 3em;
  }

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

  .page-game-lobby-fishing-games__hero-image-wrapper {
    width: 80%;
    height: auto;
    margin-top: 40px;
  }

  .page-game-lobby-fishing-games__content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-game-lobby-fishing-games__content-grid--reverse .page-game-lobby-fishing-games__text-content {
    order: initial;
  }

  .page-game-lobby-fishing-games__content-grid--reverse .page-game-lobby-fishing-games__image-content {
    order: initial;
  }

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

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

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

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

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

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

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

  .page-game-lobby-fishing-games__section {
    padding: 60px 0;
  }

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

  .page-game-lobby-fishing-games__feature-item {
    padding: 25px;
  }

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

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

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

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

  .page-game-lobby-fishing-games__hero-image-wrapper {
    width: 95%;
  }

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

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

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