.page-original {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
}

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

.page-original__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #F2C14E; /* Main Color */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

.page-original__text-block {
  font-size: 1em;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-original__btn-primary,
.page-original__btn-secondary,
.page-original__btn-tertiary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-original__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button Color */
  color: #111111; /* Dark text on bright button */
  border: none;
}

.page-original__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-original__btn-secondary {
  background: transparent;
  color: #FFD36B; /* Glow color */
  border: 2px solid #3A2A12; /* Border Color */
}

.page-original__btn-secondary:hover {
  background: rgba(255, 211, 107, 0.1);
  transform: translateY(-2px);
}

.page-original__btn-tertiary {
  background: #111111; /* Card BG */
  color: #FFF6D6; /* Text Main */
  border: 2px solid #3A2A12; /* Border Color */
}

.page-original__btn-tertiary:hover {
  background: rgba(17, 17, 17, 0.8);
  transform: translateY(-2px);
}

/* Hero Section */
.page-original__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-original__hero-image-wrapper {
  width: 100%;
  max-height: 800px; /* Limit height of image wrapper */
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.page-original__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text contrast */
}

.page-original__hero-content-wrapper {
  position: absolute;
  z-index: 2;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent background for text */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  margin-top: 100px; /* Push content down to avoid image overlap */
}

.page-original__hero-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive H1 font size */
  color: #F2C14E; /* Main Color */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-original__hero-description {
  font-size: 1.2em;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 30px;
}

.page-original__hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Info Section */
.page-original__info-section {
  padding: 60px 0;
  text-align: center;
  background-color: #0A0A0A; /* Background */
}

/* Games Section */
.page-original__games-section {
  padding: 60px 0;
  background-color: #111111; /* Card BG */
}

.page-original__game-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-original__game-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  text-decoration: none;
  color: #FFF6D6;
  transition: background 0.3s ease;
  min-width: 120px;
}

.page-original__game-category-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.page-original__game-category-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
  object-fit: contain;
}

.page-original__game-category-link {
  color: #FFF6D6;
  font-weight: bold;
  text-decoration: none;
}

.page-original__gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-original__gallery-item {
  background: #0A0A0A; /* Background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
}

.page-original__gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-original__gallery-title {
  font-size: 1.5em;
  color: #F2C14E; /* Main Color */
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-original__gallery-description {
  font-size: 0.95em;
  color: #FFF6D6;
  padding: 0 15px;
}

/* Promo Section */
.page-original__promo-section {
  padding: 60px 0;
  background-color: #0A0A0A; /* Background */
}

.page-original__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-original__promo-card {
  background: #111111; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-original__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-original__promo-title {
  font-size: 1.4em;
  color: #FFD36B; /* Glow */
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-original__promo-description {
  font-size: 0.9em;
  color: #FFF6D6;
  margin-bottom: 20px;
  flex-grow: 1;
  padding: 0 15px;
}