/* style/index.css */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background-color: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
}

.page-index {
  font-family: 'Arial', sans-serif;
  color: var(--text-main); /* Body background is dark, so text is light */
  background-color: var(--background-color);
}

/* General container for content sections */
.page-index__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Section spacing and background */
.page-index__video-section,
.page-index__title-section,
.page-index__brand-section,
.page-index__games-section,
.page-index__promotions-section,
.page-index__faq-section,
.page-index__blog-section {
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-index__video-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index__brand-section,
.page-index__promotions-section {
  background-color: var(--deep-green);
  color: var(--text-main);
}

.page-index__faq-section {
  background-color: var(--background-color);
}