:root {
  --winph-primary-color: #F2C14E;
  --winph-secondary-color: #FFD36B;
  --winph-card-bg: #111111;
  --winph-background-color: #0A0A0A;
  --winph-text-main: #FFF6D6;
  --winph-border-color: #3A2A12;
  --winph-glow-color: #FFD36B;
  --winph-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-arcade {
  font-family: 'Arial', sans-serif;
  color: var(--winph-text-main); /* Light text on dark body background */
  background-color: var(--winph-background-color);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.page-arcade__dark-section {
  background-color: var(--winph-card-bg);
  color: var(--winph-text-main);
}

.page-arcade__section-title {
  font-size: 2.8em;
  color: var(--winph-primary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-arcade__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: rgba(255, 246, 214, 0.8);
}

/* Hero Section */
.page-arcade__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, relying on body for header offset */
  min-height: 600px;
  overflow: hidden;
  text-align: center;
}

.page-arcade__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-arcade__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.page-arcade__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  box-sizing: border-box;
}

.page-arcade__hero-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Using clamp for H1 */
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.page-arcade__hero-description {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Buttons */
.page-arcade__btn-primary,
.page-arcade__btn-secondary,
.page-arcade__btn-play,
.page-arcade__btn-download,
.page-arcade__btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}