/* style/resources-gamvip-promotions-guide.css */

/* Variables for consistency */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #0d0d0d; /* Slightly lighter black than pure #000 for sections */
  --bg-light: #f8f9fa; /* Light background for contrast */
  --border-color: #444;
  --shadow-color: rgba(0, 0, 0, 0.3);
}

/* Base styles for the page content wrapper */
.page-resources-gamvip-promotions-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: #000; /* Inherited from body, but explicitly set for clarity */
  padding-bottom: 50px; /* General padding for bottom */
}