/* style/index-game-features.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #EA7C07; /* Login button color */
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #ffffff;
  --background-dark: #000000; /* For dark sections */
  --border-color: #e0e0e0;
}

/* Base styles for the page content */
.page-index-game-features {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light background */
  background-color: var(--background-light); /* Default body background is white */
}

.page-index-game-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-index-game-features__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-index-game-features__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

.page-index-game-features__text-white {
  color: var(--text-light) !important;
}

.page-index-game-features__text-link {
  color: var(--primary-color);
  text-decoration: underline;
}
.page-index-game-features__text-link:hover {
  color: var(--secondary-color);
}

/* Buttons */
.page-index-game-features__cta-button,
.page-index-game-features__btn-primary,
.page-index-game-features__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box; /* Ensure padding is included in width */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
}

.page-index-game-features__cta-button {
  background: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}
.page-index-game-features__cta-button:hover {
  background: #1e87b4; /* Darken primary color */
  border-color: #1e87b4;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-game-features__btn-primary {
  background: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}
.page-index-game-features__btn-primary:hover {
  background: #1e87b4; /* Darken primary color */
  border-color: #1e87b4;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-game-features__btn-secondary {
  background: var(--secondary-color); /* Login color #EA7C07 */
  color: var(--text-light);
  border: 2px solid var(--secondary-color);
}
.page-index-game-features__btn-secondary:hover {
  background: #c26706; /* Darken secondary color */
  border-color: #c26706;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.page-index-game-features__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background: linear-gradient(135deg, var(--primary-color), #87CEEB); /* Light blue gradient */
}

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

.page-index-game-features__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-index-game-features__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-index-game-features__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: var(--text-light);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}