/* style/resources-cwin-latest-games-analysis.css */

/* Base styles for the page */
.page-resources-cwin-latest-games-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Dark body background #121212, so text must be light */
  background-color: transparent; /* Main content background will be handled by sections */
}

.page-resources-cwin-latest-games-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-cwin-latest-games-analysis__section-title {
  font-size: 2.5em;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-resources-cwin-latest-games-analysis__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-resources-cwin-latest-games-analysis__paragraph a,
.page-resources-cwin-latest-games-analysis__list-item a,
.page-resources-cwin-latest-games-analysis__game-description a {
  color: #FFFF00; /* Yellow for links on dark background for visibility */
  text-decoration: underline;
}

.page-resources-cwin-latest-games-analysis__paragraph a:hover,
.page-resources-cwin-latest-games-analysis__list-item a:hover,
.page-resources-cwin-latest-games-analysis__game-description a:hover {
  color: #017439;
}

/* Hero Section */
.page-resources-cwin-latest-games-analysis__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  box-sizing: border-box;
}

.page-resources-cwin-latest-games-analysis__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-cwin-latest-games-analysis__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 2;
}

.page-resources-cwin-latest-games-analysis__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-resources-cwin-latest-games-analysis__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-resources-cwin-latest-games-analysis__intro-text {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-cwin-latest-games-analysis__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-resources-cwin-latest-games-analysis__btn-primary,
.page-resources-cwin-latest-games-analysis__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-resources-cwin-latest-games-analysis__btn-primary {
  background-color: #C30808; /* Login/Register color */
  color: #FFFF00; /* Login/Register font color */
  border: 2px solid #C30808;
}

.page-resources-cwin-latest-games-analysis__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-resources-cwin-latest-games-analysis__btn-secondary {
  background-color: transparent;
  color: #FFFF00; /* Login/Register font color */
  border: 2px solid #FFFF00;
}

.page-resources-cwin-latest-games-analysis__btn-secondary:hover {
  background-color: #FFFF00;
  color: #C30808;
  border-color: #FFFF00;
}

/* Content Sections */
.page-resources-cwin-latest-games-analysis__content-section,
.page-resources-cwin-latest-games-analysis__features-section,
.page-resources-cwin-latest-games-analysis__guide-section,
.page-resources-cwin-latest-games-analysis__benefits-section,
.page-resources-cwin-latest-games-analysis__promo-section,
.page-resources-cwin-latest-games-analysis__safety-section,
.page-resources-cwin-latest-games-analysis__faq-section,
.page-resources-cwin-latest-games-analysis__cta-bottom {
  padding: 80px 0;
  position: relative;
}

.page-resources-cwin-latest-games-analysis__dark-bg {
  background-color: #017439; /* Brand primary color for dark sections */
  color: #ffffff;
}

.page-resources-cwin-latest-games-analysis__features-section {
  background-color: #1a1a1a;
}

.page-resources-cwin-latest-games-analysis__benefits-section {
  background-color: #121212;
}

.page-resources-cwin-latest-games-analysis__safety-section {
  background-color: #1a1a1a;
}

/* Game Grid */
.page-resources-cwin-latest-games-analysis__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-cwin-latest-games-analysis__game-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-cwin-latest-games-analysis__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-cwin-latest-games-analysis__game-title {
  font-size: 1.5em;
  color: #FFFFFF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-cwin-latest-games-analysis__game-description {
  font-size: 0.95em;
  color: #f0f0f0;
}

/* Guide Section */
.page-resources-cwin-latest-games-analysis__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-resources-cwin-latest-games-analysis__list-item {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #f0f0f0;
  border-left: 5px solid #FFFF00;
}

.page-resources-cwin-latest-games-analysis__list-item strong {
  color: #FFFFFF;
}

/* Benefits Section */
.page-resources-cwin-latest-games-analysis__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-cwin-latest-games-analysis__benefit-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}