/* style/gambling-community.css */
.page-gambling-community {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.page-gambling-community__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-gambling-community__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-gambling-community__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  color: #555;
}

.page-gambling-community__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-gambling-community__btn--primary {
  background-color: #007bff;
  color: #fff;
  border: 1px solid #007bff;
}

.page-gambling-community__btn--primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.page-gambling-community__btn--secondary {
  background-color: #ffc107;
  color: #333;
  border: 1px solid #ffc107;
}

.page-gambling-community__btn--secondary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
}

.page-gambling-community__btn--outline {
  background-color: transparent;
  color: #007bff;
  border: 2px solid #007bff;
}

.page-gambling-community__btn--outline:hover {
  background-color: #007bff;
  color: #fff;
}

.page-gambling-community__btn--link {
  color: #007bff;
  text-decoration: none;
  padding: 0;
  border: none;
  background: none;
  font-weight: 600;
}

.page-gambling-community__btn--link:hover {
  text-decoration: underline;
}

.page-gambling-community__btn--large {
  padding: 15px 35px;
  font-size: 1.1em;
}

/* Hero Section */
.page-gambling-community__hero-section {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-gambling-community__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 800;
  color: #ffc107;
}

.page-gambling-community__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gambling-community__hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* About Section */
.page-gambling-community__about-section {
  padding: 80px 0;
  background-color: #fff;
}

.page-gambling-community__about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-gambling-community__about-text {
  flex: 1;
}

.page-gambling-community__about-text p {
  margin-bottom: 15px;
  color: #555;
}

.page-gambling-community__about-image {
  flex: 1;
  text-align: center;
}

.page-gambling-community__img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.page-gambling-community__features-section {
  padding: 80px 0;
  background-color: #f0f8ff;
}

.page-gambling-community__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-gambling-community__feature-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-gambling-community__feature-card:hover {
  transform: translateY(-5px);
}

.page-gambling-community__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: #007bff;
}

.page-gambling-community__feature-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-gambling-community__feature-card p {
  color: #666;
}

/* Forum List Section */
.page-gambling-community__forum-list-section {
  padding: 80px 0;
}

.page-gambling-community__forum-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-gambling-community__forum-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-gambling-community__forum-card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-gambling-community__forum-card-title a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gambling-community__forum-card-title a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.page-gambling-community__forum-card-description {
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* CTA Section */
.page-gambling-community__cta-section {
  background-color: #007bff;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-gambling-community__cta-section .page-gambling-community__section-title {
  color: #ffc107;
}

.page-gambling-community__cta-section .page-gambling-community__section-description {
  color: #e0f2ff;
}

/* Sticky Promotion Button */
.page-gambling-community__sticky-promotion {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.page-gambling-community__sticky-btn {
  background-color: #ffc107;
  color: #333;
  padding: 12px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.page-gambling-community__sticky-btn:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-gambling-community__sticky-icon {
  width: 24px;
  height: 24px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gambling-community__hero-title {
    font-size: 2.8em;
  }

  .page-gambling-community__hero-description {
    font-size: 1.1em;
  }

  .page-gambling-community__about-content {
    flex-direction: column;
    text-align: center;
  }

  .page-gambling-community__about-image {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-gambling-community__section-title {
    font-size: 2em;
  }

  .page-gambling-community__hero-title {
    font-size: 2.2em;
  }

  .page-gambling-community__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-gambling-community__sticky-btn {
    padding: 10px 15px;
    font-size: 0.9em;
  }

  .page-gambling-community__sticky-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 576px) {
  .page-gambling-community__hero-section {
    padding: 80px 0 60px;
  }

  .page-gambling-community__section-title {
    font-size: 1.8em;
  }

  .page-gambling-community__hero-title {
    font-size: 1.8em;
  }

  .page-gambling-community__hero-description {
    font-size: 1em;
  }

  .page-gambling-community__btn--large {
    font-size: 1em;
    padding: 12px 25px;
  }

  .page-gambling-community__features-grid,
  .page-gambling-community__forum-cards-grid {
    grid-template-columns: 1fr;
  }
}