:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f9f9f9;
  --background-dark: #017439;
  --button-register: #C30808;
  --button-login: #C30808;
  --button-text-yellow: #FFFF00;
  --border-color: #e0e0e0;
}

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

.page-index__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background: var(--secondary-color);
  color: var(--text-dark);
}

.page-index__dark-bg {
  background: var(--background-dark);
  color: var(--text-light);
}

.page-index__light-bg {
  background: var(--secondary-color);
  color: var(--text-dark);
}

.page-index__section-heading,
.page-index__feature-title,
.page-index__game-title,
.page-index__brand-title,
.page-index__blog-title,
.page-index__faq-main-title {
  color: var(--primary-color);
  margin-bottom: 30px;
  font-size: 32px;
  text-align: center;
  font-weight: bold;
}
.page-index__section-heading a,
.page-index__game-title a,
.page-index__blog-item-title a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-index__section-heading a:hover,
.page-index__game-title a:hover,
.page-index__blog-item-title a:hover {
  color: #004d2c;
}

.page-index__dark-bg .page-index__section-heading,
.page-index__dark-bg .page-index__faq-main-title,
.page-index__dark-bg .page-index__blog-title,
.page-index__dark-bg .page-index__feature-title,
.page-index__dark-bg .page-index__game-title {
  color: var(--text-light);
}
.page-index__dark-bg .page-index__section-heading a,
.page-index__dark-bg .page-index__game-title a,
.page-index__dark-bg .page-index__blog-item-title a {
  color: var(--text-light);
}
.page-index__dark-bg .page-index__section-heading a:hover,
.page-index__dark-bg .page-index__game-title a:hover,
.page-index__dark-bg .page-index__blog-item-title a:hover {
  color: #f0f0f0;
}

.page-index__paragraph {
  font-size: 17px;
  margin-bottom: 25px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.page-index__dark-bg .page-index__paragraph {
  color: var(--text-light);
}
.page-index__highlight {
  font-weight: bold;
  color: var(--primary-color);
}
.page-index__dark-bg .page-index__highlight {
  color: var(--button-text-yellow);
}

.page-index__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-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.15);
  border: none;
  cursor: pointer;
  margin: 10px;
}

.page-index__cta-button:hover {
  background: #004d2c;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-index__cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-index__cta-button--register {
  background: var(--button-register);
  color: var(--button-text-yellow);
}
.page-index__cta-button--register:hover {
  background: #9c0606;
  color: #fff;
}

.page-index__cta-button--login {
  background: var(--button-login);
  color: var(--button-text-yellow);
}
.page-index__cta-button--login:hover {
  background: #9c0606;
  color: #fff;
}

.page-index__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  background: #0a0a0a;
}

.page-index__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-index__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-index__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  object-fit: cover;
  pointer-events: none;
}
}