/* style/index-review-iwin-club.css */

/* Base styles for the page content, ensuring contrast with dark body background */
.page-index-review-iwin-club {
  color: #f0f0f0; /* Light text for dark body background */
  background-color: var(--dark-bg-1);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-index-review-iwin-club__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-index-review-iwin-club__section {
  padding: 60px 0;
  margin-bottom: 0;
}

.page-index-review-iwin-club__section:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter for contrast */
}

.page-index-review-iwin-club__heading {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700; /* Primary brand color */
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-index-review-iwin-club__paragraph {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #e0e0e0;
  text-align: justify;
}

.page-index-review-iwin-club__paragraph strong {
  color: #FFD700;
}

.page-index-review-iwin-club__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-index-review-iwin-club__btn-primary {
  background-color: #FFD700; /* Gold */
  color: #000000; /* Black text for contrast */
}

.page-index-review-iwin-club__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-index-review-iwin-club__btn-secondary {
  background-color: #8B0000; /* Dark Red */
  color: #ffffff; /* White text for contrast */
}

.page-index-review-iwin-club__btn-secondary:hover {
  background-color: #6a0000;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}