/* style/arcade.css */

/* Custom CSS Variables for easier management */
:root {
  --main-color: #F2C14E;
  --aux-color: #FFD36B;
  --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  --card-bg-color: #111111;
  --bg-color: #0A0A0A;
  --text-main-color: #FFF6D6;
  --border-color: #3A2A12;
  --glow-color: #FFD36B;
}

/* Base styles for the arcade page, matching dark background and light text */
.page-arcade {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main-color);
  background-color: var(--bg-color);
}

/* Ensure body padding-top is handled by shared.css for fixed header */
/* No padding-top: var(--header-offset) here to avoid double spacing */

.page-arcade__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image on top, text below */
  align-items: center;
  justify-content: center;
  min-height: 500px;
  text-align: center;
  padding: 20px; /* Small padding, body handles overall header offset */
  box-sizing: border-box;
  background-color: var(--bg-color);
}

.page-arcade__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width */
  margin-bottom: 30px; /* Space between image and text */
}

.page-arcade__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-arcade__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-arcade__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size for H1 */
  font-weight: 700;
  color: var(--text-main-color);
  margin-bottom: 15px;
  line-height: 1.2;
}