/* style/casino.css */

/* Custom Colors */
:root {
  --kinggame-primary: #F2C14E;
  --kinggame-secondary: #FFD36B;
  --kinggame-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  --kinggame-card-bg: #111111;
  --kinggame-background: #0A0A0A;
  --kinggame-text-main: #FFF6D6;
  --kinggame-border: #3A2A12;
  --kinggame-glow: #FFD36B;
  /* Assuming body background is dark based on design style */
  --page-bg-is-dark: 1; /* For internal logic, if needed */
}

.page-casino {
  font-family: Arial, sans-serif;
  color: var(--kinggame-text-main); /* Light text for dark background */
  background-color: var(--kinggame-background); /* Dark background */
  line-height: 1.6;
  padding-bottom: 60px; /* Space for footer */
}

/* Hero Section */
.page-casino__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image above content */
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  overflow: hidden;
  min-height: 600px;
}