/* style/resources-game-guides-xwinner-io.css */

:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-color-dark: #333333;
  --text-color-light: #FFFFFF;
  --button-register-bg: #C30808;
  --button-login-bg: #C30808;
  --button-text-yellow: #FFFF00;
  --background-white: #FFFFFF;
  --border-color: #e0e0e0;
}

.page-resources-game-guides-xwinner-io {
  font-family: 'Arial', sans-serif;
  color: var(--text-color-dark); /* Default text color for light background */
  background-color: var(--background-white);
  line-height: 1.6;
}

/* --- Hero Section --- */
.page-resources-game-guides-xwinner-io__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color) 50%, var(--secondary-color));
  color: var(--text-color-light);
}

.page-resources-game-guides-xwinner-io__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-resources-game-guides-xwinner-io__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-game-guides-xwinner-io__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}