.page-original {
  background-color: #0A0A0A; /* Matches custom background color */
  color: #FFF6D6; /* Matches custom text color for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

/* Hero Section */
.page-original__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  background-color: #0A0A0A; /* Ensure consistency */
}

.page-original__video-container {
  width: 100%; /* desktop must have width: 100% */
  max-width: 1200px; /* Max width for video */
  margin: 0 auto 30px;
  box-sizing: border-box;
  overflow: hidden; /* Ensure no horizontal scroll */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-original__video-link {
  display: block;
  width: 100%;
  height: auto;
}

.page-original__video {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.page-original__hero-content {
  text-align: center;
  max-width: 900px;
  margin-top: 20px;
  color: #FFF6D6;
}

.page-original__main-title {
  font-size: 2.8em; /* Adjusted to be flexible, not excessively large */
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  color: #FFD36B; /* Glow color for main title */
  text-shadow: 0 0 8px rgba(255, 211, 107, 0.6);
}

.page-original__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-original__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
}

/* General Button Styles */
.page-original__btn-primary,
.page-original__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-original__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 10px rgba(242, 193, 78, 0.4);
}

.page-original__btn-primary:hover {
  background: linear-gradient(180deg, #FFE080 0%, #E6B02A 100%);
  box-shadow: 0 6px 15px rgba(242, 193, 78, 0.6);
  transform: translateY(-2px);
}

.page-original__btn-secondary {
  background: transparent;
  color: #FFD36B;
  border: 2px solid #F2C14E; /* Main color for border */
  box-shadow: 0 2px 5px rgba(242, 193, 78, 0.2);
}

.page-original__btn-secondary:hover {
  background: rgba(242, 193, 78, 0.1);
  color: #ffffff;
  border-color: #FFD36B;
  box-shadow: 0 4px 10px rgba(242, 193, 78, 0.4);
  transform: translateY(-2px);
}

/* Section Titles */
.page-original__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #FFD36B;
  text-align: center;
  margin-bottom: 25px;
  padding-top: 40px;
  text-shadow: 0 0 5px rgba(255, 211, 107, 0.4);
}

.page-original__text-block {
  font-size: 1.1em;
  color: #FFF6D6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Dark Section Background */
.page-original__dark-section {
  background-color: #111111; /* Card BG color for sections */
  padding: 60px 0;
}

/* About Section */
.page-original__about-section {
  padding: 60px 0;
}

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

.page-original__about-item {
  background-color: #111111; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border color */
  transition: transform 0.3s ease;
}

.page-original__about-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.page-original__about-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 211, 107, 0.5)); /* Subtle glow */
  min-width: 200px; /* Enforce min image size */
  min-height: 200px;
}

.page-original__about-item-title {
  font-size: 1.6em;
  color: #FFD36B;
  margin-bottom: 15px;
}

.page-original__about-item-text {
  color: #FFF6D6;
  font-size: 1em;
}

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

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

.page-original__category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #111111;
  padding: 15px 20px;
  border-radius: 8px;
  text-decoration: none;
  color: #FFF6D6;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid #3A2A12;
  min-width: 120px; /* Ensure a decent size for category cards */
}

.page-original__category-card:hover {
  background-color: rgba(242, 193, 78, 0.2);
  color: #FFD36B;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(255, 211, 107, 0.3);
}

.page-original__category-icon {
  width: 30px; /* Allowed small size for category icons */
  height: 30px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 3px rgba(255, 211, 107, 0.5));
}

.page-original__category-name {
  font-size: 1em;
}

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