/* style/index-hot-games.css */

/* Base styles for the page content, ensuring contrast with body background #0a0a0a */
.page-index-hot-games {
  color: #ffffff; /* Light text for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Inherit from body or shared, ensuring text contrast */
}

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

/* Hero Section */
.page-index-hot-games__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Or responsive height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is not covered by fixed header */
  box-sizing: border-box;
}

.page-index-hot-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  display: block; /* Ensure it's a block element for max-width in mobile */
}

.page-index-hot-games__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
  z-index: 2;
}

.page-index-hot-games__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-index-hot-games__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Brand primary color for highlight */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-index-hot-games__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-index-hot-games__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

/* General Section Styling */
.page-index-hot-games__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-index-hot-games__text-block {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: justify;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Dark Background Sections */
.page-index-hot-games__dark-bg {
  background-color: #000080; /* Auxiliary brand color */
  color: #ffffff;
  padding-bottom: 60px;
}
.page-index-hot-games__dark-bg .page-index-hot-games__section-title {
  color: #FFD700;
}
.page-index-hot-games__dark-bg .page-index-hot-games__text-block {
  color: #f0f0f0;
}


/* Buttons */
.page-index-hot-games__btn-primary,
.page-index-hot-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  max-width: 100%; /* Ensure buttons don't overflow */
}

.page-index-hot-games__btn-primary {
  background-color: #FFD700;
  color: #000080; /* Dark text for light background */
  border: 2px solid #FFD700;
}

.page-index-hot-games__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  color: #000066;
}

.page-index-hot-games__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-hot-games__btn-secondary:hover {
  background-color: #FFD700;
  color: #000080;
}