/* style/index-review-iwin-club.css */
:root {
  --primary-color: #007BFF;
  --secondary-color: #28A745;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #ffffff;
  --bg-gray: #f8f9fa;
  --border-color: #e0e0e0;
}

/* Base styles for the page content, assuming body has a dark background from shared.css */
.page-index-review-iwin-club {
  font-family: 'Arial', sans-serif;
  color: var(--text-light); /* Default text color for the main content area if background is dark */
  line-height: 1.6;
  background-color: transparent; /* Main wrapper doesn't have a background, sections will define their own */
}

/* General section styling */
.page-index-review-iwin-club__section-title {
  font-size: 32px;
  font-weight: bold;
  color: var(--text-dark); /* Titles on light backgrounds should be dark */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-index-review-iwin-club__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.page-index-review-iwin-club__section-description {
  font-size: 18px;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-review-iwin-club .highlight {
  color: var(--primary-color);
  font-weight: bold;
}

/* CTA Button Styles */
.page-index-review-iwin-club__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-index-review-iwin-club__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-index-review-iwin-club__cta-button--small {
  padding: 10px 20px;
  font-size: 16px;
}

.page-index-review-iwin-club__cta-button--large {
  padding: 18px 40px;
  font-size: 20px;
  width: auto; /* Allow button to size based on content */
  max-width: 100%; /* Ensure it doesn't overflow on small screens */
}

/* Inline Link Styles */
.page-index-review-iwin-club__inline-link {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index-review-iwin-club__inline-link:hover {
  color: var(--secondary-color);
}

/* Fixed Header Spacing (Applies to the first visible section) */
.page-index-review-iwin-club__review-hero-section {
  padding-top: 120px; /* Desktop: Adjust based on actual header height */
  background: linear-gradient(135deg, #007BFF, #28A745);
  color: var(--text-light);
  padding-bottom: 60px;
}

/* Review Hero Section */
.page-index-review-iwin-club__review-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.page-index-review-iwin-club__review-hero-content {
  margin-bottom: 40px;
}

.page-index-review-iwin-club__review-hero-title {
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-light);
}

.page-index-review-iwin-club__review-hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

.page-index-review-iwin-club__review-hero-image {
  width: 100%;
  max-width: 900px; /* Adjust max width for the image */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-index-review-iwin-club__review-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


/* Module 1.5: Brand Review Content Body */
.page-index-review-iwin-club__review-content-section {
  padding: 60px 20px;
  background: var(--bg-gray); /* Light gray background for this section */
}