/* style/resources-2024-vn-casino-top-games.css */

:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-color-dark-bg: #FFFFFF;
  --text-color-light-bg: #333333;
  --background-dark: #1a1a2e; /* From shared.css body background */
  --btn-register-bg: #C30808;
  --btn-login-bg: #C30808;
  --btn-register-login-text: #FFFF00;
}

.page-resources-2024-vn-casino-top-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark-bg); /* Default text color for the page, as body is dark */
  background-color: var(--background-dark);
}

.page-resources-2024-vn-casino-top-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-2024-vn-casino-top-games__hero-section {
  position: relative;
  padding: 100px 0;
  padding-top: calc(var(--header-offset, 120px) + 60px); /* Adjust for header offset */
  text-align: center;
  background: var(--primary-color);
  color: var(--text-color-dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.page-resources-2024-vn-casino-top-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--text-color-dark-bg);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-2024-vn-casino-top-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-2024-vn-casino-top-games__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-2024-vn-casino-top-games__btn-primary,
.page-resources-2024-vn-casino-top-games__btn-secondary,
.page-resources-2024-vn-casino-top-games__btn-register,
.page-resources-2024-vn-casino-top-games__btn-login {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
}

.page-resources-2024-vn-casino-top-games__btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}

.page-resources-2024-vn-casino-top-games__btn-primary:hover {
  background-color: #005a2e; /* Darken primary color */
  border-color: #005a2e;
}

.page-resources-2024-vn-casino-top-games__btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-resources-2024-vn-casino-top-games__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-resources-2024-vn-casino-top-games__btn-register {
  background-color: var(--btn-register-bg);
  color: var(--btn-register-login-text);
  border: 2px solid var(--btn-register-bg);
}

.page-resources-2024-vn-casino-top-games__btn-register:hover {
  background-color: #a00606; /* Darken register color */
  border-color: #a00606;
}

.page-resources-2024-vn-casino-top-games__btn-login {
  background-color: var(--btn-login-bg);
  color: var(--btn-register-login-text);
  border: 2px solid var(--btn-login-bg);
}

.page-resources-2024-vn-casino-top-games__btn-login:hover {
  background-color: #a00606; /* Darken login color */
  border-color: #a00606;
}

.page-resources-2024-vn-casino-top-games__video-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--background-dark);
  color: var(--text-color-dark-bg);
}