/* style/slot-games.css */

/* Custom properties for colors */
:root {
  --primary-color: #017439; /* Dark Green */
  --secondary-color: #FFFFFF; /* White */
  --register-button-bg: #C30808; /* Red for Register/Login */
  --register-login-font: #FFFF00; /* Yellow for Register/Login text */
  --text-dark: #333333;
  --text-light: #ffffff;
  --border-light: #e0e0e0;
  --background-light: #f9f9f9;
}

/* Base styles for the page content */
.page-slot-games {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark); /* Default text color for light backgrounds */
  background-color: var(--secondary-color); /* White background for the main content area */
}

/* Container for sections */
.page-slot-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Section titles */
.page-slot-games__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-slot-games__section-title--white {
  color: var(--text-light);
}

/* Text blocks */
.page-slot-games__text-block {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-slot-games__text-block--white {
  color: var(--text-light);
}

.page-slot-games__link-inline {
  color: var(--register-login-font); /* Yellow for inline links in dark sections */
  text-decoration: underline;
  font-weight: bold;
}