:root {
  --primary-color: #F2C14E;
  --secondary-color: #FFD36B;
  --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  --card-bg: #111111;
  --page-background: #0A0A0A;
  --text-main: #FFF6D6;
  --border-color: #3A2A12;
  --glow-color: #FFD36B;
}

.page-index {
  background-color: var(--page-background);
  color: var(--text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-index__promo-hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  padding-bottom: 60px;
  background: var(--page-background);
  position: relative;
  z-index: 1;
}

.page-index__promo-hero-card {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
}

.page-index__promo-hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index__promo-hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index__promo-hero-content {
  text-align: left;
}

.page-index__promo-hero-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-main);
  line-height: 1.2;
}

.page-index__promo-hero-subtitle {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--secondary-color);
  margin-bottom: 25px;
  font-weight: 500;
}

.page-index__promo-hero-desc {
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  color: var(--text-main);
  margin-bottom: 30px;
}

.page-index__promo-hero-ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index__promo-hero-cta {
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-index__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: none;
}

.page-index__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-index__btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-index__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--page-background);
  transform: translateY(-2px);
}

.page-index__hero-carousel-section {
  position: relative;
  width: 100vw; /* Carousel must be full width */
  overflow: hidden;
  margin-bottom: 60px;
  background-color: var(--page-background);
}

.page-index__hero-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.page-index__hero-slides {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 40%; /* Maintain aspect ratio */
  overflow: hidden;
}

.page-index__hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  transition: transform 0.6s ease;
  z-index: 0;
}

.page-index__hero-slide.active {
  transform: translateX(0);
  z-index: 1;
}

.page-index__hero-slide.prev {
  transform: translateX(-100%);
  z-index: 0;
}

.page-index__hero-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.page-index__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-index__hero-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.page-index__hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.page-index__hero-dot.active {
  background: #ffffff;
}

.page-index__hero-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.page-index__articles-section {
  padding: 60px 20px;
  background: var(--page-background);
}

.page-index__articles-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-index__articles-main-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin-bottom: 40px;
  text-align: left;
}

.page-index__articles-title-small {
  font-size: 16px;
  font-weight: 900;
  color: var(--secondary-color);
}