/* style/arcade.css */

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

.page-arcade {
  font-family: Arial, sans-serif;
  color: var(--okplay-text-main); /* Default text color for the page */
  background-color: var(--okplay-background);
}

.page-arcade__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.page-arcade__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
  box-sizing: border-box;
}

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