/* style/index-suncity888-latest-news.css */

/* Variables */
:root {
  --page-primary-color: #FFD700; /* Gold */
  --page-secondary-color: #1A202C; /* Dark Blue/Black */
  --page-text-color-light: #F0F0F0; /* Light Gray for dark backgrounds */
  --page-text-color-dark: #333333; /* Dark Gray for light backgrounds */
  --page-accent-color: #0028ff; /* Complementary to primary */
  --page-border-radius: 8px;
  --page-spacing-md: 20px;
  --page-spacing-lg: 40px;
}

.page-index-suncity888-latest-news {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-text-color-dark);
  background-color: #f8f8f8; /* Very light background for overall page */
}

.page-index-suncity888-latest-news__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--page-spacing-md);
}

/* Hero Section */
.page-index-suncity888-latest-news__hero-section {
  background: linear-gradient(135deg, var(--page-primary-color) 0%, var(--page-secondary-color) 100%);
  color: var(--page-text-color-light);
  padding: 80px var(--page-spacing-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 450px;
  justify-content: center;
}

.page-index-suncity888-latest-news__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-index-suncity888-latest-news__hero-title {
  font-size: 3.5em;
  margin-bottom: var(--page-spacing-md);
  color: var(--page-text-color-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-index-suncity888-latest-news__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: var(--page-spacing-lg);
  color: rgba(255, 255, 255, 0.9);
}

.page-index-suncity888-latest-news__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.15;
}

.page-index-suncity888-latest-news__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) blur(5px);
  transform: scale(1.1);
}

/* General Section Styling */
.page-index-suncity888-latest-news__section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: var(--page-border-radius);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-index-suncity888-latest-news__section:nth-of-type(even) {
  background-color: #f0f0f0;
}

.page-index-suncity888-latest-news__section-title {
  font-size: 2.5em;
  color: var(--page-secondary-color);
  text-align: center;
  margin-bottom: var(--page-spacing-lg);
  position: relative;
  padding-bottom: 15px;
}

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

.page-index-suncity888-latest-news__subsection-title {
  font-size: 1.8em;
  color: var(--page-secondary-color);
  margin-top: var(--page-spacing-lg);
  margin-bottom: var(--page-spacing-md);
  border-left: 5px solid var(--page-primary-color);
  padding-left: 15px;
}

.page-index-suncity888-latest-news__text {
  font-size: 1.1em;
  margin-bottom: var(--page-spacing-md);
  color: var(--page-text-color-dark);
}

.page-index-suncity888-latest-news__list {
  list-style: none;
  padding: 0;
  margin-bottom: var(--page-spacing-md);
}

.page-index-suncity888-latest-news__list li {
  background: #fdfdfd;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 4px solid var(--page-primary-color);
  border-radius: var(--page-border-radius);
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  font-size: 1.05em;
  color: var(--page-text-color-dark);
}

.page-index-suncity888-latest-news__list li strong {
  color: var(--page-secondary-color);
}

.page-index-suncity888-latest-news__list--two-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--page-spacing-md);
}

@media (min-width: 768px) {
  .page-index-suncity888-latest-news__list--two-cols {
    grid-template-columns: 1fr 1fr;
  }
}

.page-index-suncity888-latest-news__image-full-width {
  width: 100%;
  height: auto;
  border-radius: var(--page-border-radius);
  margin-top: var(--page-spacing-md);
  margin-bottom: var(--page-spacing-md);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.page-index-suncity888-latest-news__btn {
  display: inline-block;
  background-color: var(--page-primary-color);
  color: var(--page-secondary-color);
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.05em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-suncity888-latest-news__btn:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-2px);
}

.page-index-suncity888-latest-news__btn--large {
  padding: 15px 35px;
  font-size: 1.2em;
}

.page-index-suncity888-latest-news__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
  border-radius: var(--page-border-radius);
}

/* News Updates Section */
.page-index-suncity888-latest-news__news-item {
  background-color: #ffffff;
  padding: var(--page-spacing-md);
  margin-bottom: var(--page-spacing-md);
  border-radius: var(--page-border-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-index-suncity888-latest-news__news-image {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: var(--page-border-radius);
  margin-bottom: var(--page-spacing-md);
}

/* Promotions Section */
.page-index-suncity888-latest-news__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--page-spacing-md);
}

.page-index-suncity888-latest-news__promo-card {
  background-color: #ffffff;
  border-radius: var(--page-border-radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: var(--page-spacing-md);
  transition: transform 0.3s ease;
}

.page-index-suncity888-latest-news__promo-card:hover {
  transform: translateY(-5px);
}

.page-index-suncity888-latest-news__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: var(--page-spacing-md);
}

.page-index-suncity888-latest-news__card-title {
  font-size: 1.5em;
  color: var(--page-secondary-color);
  margin-bottom: 10px;
  padding: 0 var(--page-spacing-md);
}

.page-index-suncity888-latest-news__card-text {
  font-size: 1em;
  color: var(--page-text-color-dark);
  padding: 0 var(--page-spacing-md);
  margin-bottom: var(--page-spacing-md);
}

/* Guide Section */
.page-index-suncity888-latest-news__numbered-list {
  list-style: none;
  padding: 0;
  counter-reset: guide-step;
}

.page-index-suncity888-latest-news__numbered-list li {
  background-color: #fdfdfd;
  padding: var(--page-spacing-md);
  margin-bottom: var(--page-spacing-md);
  border-radius: var(--page-border-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  padding-left: 70px; /* Space for step number */
}

.page-index-suncity888-latest-news__numbered-list li::before {
  counter-increment: guide-step;
  content: counter(guide-step);
  position: absolute;
  left: var(--page-spacing-md);
  top: var(--page-spacing-md);
  background-color: var(--page-primary-color);
  color: var(--page-secondary-color);
  font-size: 1.8em;
  font-weight: bold;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-index-suncity888-latest-news__numbered-list li .page-index-suncity888-latest-news__subsection-title {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 0;
  border-left: none;
  font-size: 1.5em;
}

/* Call to Action Bottom */
.page-index-suncity888-latest-news__cta-bottom {
  background-color: var(--page-secondary-color);
  color: var(--page-text-color-light);
  text-align: center;
  padding: 80px 0;
  border-radius: var(--page-border-radius);
}

.page-index-suncity888-latest-news__cta-bottom .page-index-suncity888-latest-news__section-title {
  color: var(--page-primary-color);
}

.page-index-suncity888-latest-news__cta-bottom .page-index-suncity888-latest-news__section-title::after {
  background-color: var(--page-text-color-light);
}

.page-index-suncity888-latest-news__cta-bottom .page-index-suncity888-latest-news__text {
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto var(--page-spacing-lg) auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-suncity888-latest-news__hero-title {
    font-size: 3em;
  }
  .page-index-suncity888-latest-news__section-title {
    font-size: 2em;
  }
  .page-index-suncity888-latest-news__subsection-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-index-suncity888-latest-news__hero-section {
    padding: 60px var(--page-spacing-md);
  }
  .page-index-suncity888-latest-news__hero-title {
    font-size: 2.5em;
  }
  .page-index-suncity888-latest-news__hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-suncity888-latest-news__section {
    padding: 40px 0;
  }
  .page-index-suncity888-latest-news__section-title {
    font-size: 1.8em;
  }
  .page-index-suncity888-latest-news__subsection-title {
    font-size: 1.4em;
  }
  .page-index-suncity888-latest-news__text, .page-index-suncity888-latest-news__list li, .page-index-suncity888-latest-news__card-text {
    font-size: 1em;
  }
  .page-index-suncity888-latest-news__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-index-suncity888-latest-news__numbered-list li {
    padding-left: 60px;
  }
  .page-index-suncity888-latest-news__numbered-list li::before {
    left: 15px;
    width: 35px;
    height: 35px;
    font-size: 1.5em;
  }
}

@media (max-width: 480px) {
  .page-index-suncity888-latest-news__hero-title {
    font-size: 2em;
  }
  .page-index-suncity888-latest-news__hero-subtitle {
    font-size: 0.95em;
  }
  .page-index-suncity888-latest-news__btn {
    font-size: 0.9em;
    padding: 10px 20px;
  }
  .page-index-suncity888-latest-news__section-title {
    font-size: 1.6em;
  }
  .page-index-suncity888-latest-news__subsection-title {
    font-size: 1.2em;
  }
  .page-index-suncity888-latest-news__promo-image {
    height: 150px;
  }
  .page-index-suncity888-latest-news__card-title {
    font-size: 1.3em;
  }
}