/* style/games.css */

/* --- Base Styles & Layout --- */
.page-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: var(--primary-bg, #f5f5f5); /* Fallback to light grey if var not defined */
}

.page-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-games__section {
  padding: 60px 0;
  overflow: hidden; /* Ensure no overflow from images/content */
}

.page-games__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #0A192F; /* Dark blue for main titles */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-games__section-intro {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

/* --- Buttons --- */
.page-games__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.page-games__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A192F; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

.page-games__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-games__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-games__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-games__btn--small {
  padding: 8px 18px;
  font-size: 14px;
}

.page-games__btn--text {
  background: none;
  border: none;
  color: #0A192F;
  padding: 0;
  text-decoration: underline;
  font-weight: 600;
}

.page-games__btn--text:hover {
  color: #FFD700;
  text-decoration: none;
  transform: none;
  box-shadow: none;
}