/* style/promotions.css */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --button-register-bg: #C30808;
  --button-login-bg: #C30808;
  --button-login-register-text: #FFFF00;
  --background-color: #FFFFFF;
  --border-color: #e0e0e0;
}

.page-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-color);
}

/* Hero Section */
.page-promotions__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);
  background: linear-gradient(135deg, var(--primary-color), #004d2b);
  color: var(--text-light);
  overflow: hidden;
}

.page-promotions__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-promotions__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-promotions__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-promotions__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  font-weight: bold;
  color: var(--text-light);
}

.page-promotions__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: rgba(255, 255, 255, 0.9);
}

/* General Section Styling */
.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-promotions__section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: var(--text-dark);
}

/* Light and Dark Backgrounds */
.page-promotions__light-bg {
  background-color: var(--background-color);
  color: var(--text-dark);
}

.page-promotions__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-promotions__dark-bg .page-promotions__section-title {
  color: var(--secondary-color);
}

.page-promotions__dark-bg .page-promotions__section-intro {
  color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-promotions__btn-primary {
  background: var(--button-login-bg);
  color: var(--button-login-register-text);
}

.page-promotions__btn-primary:hover {
  background: #a30707;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn-secondary {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 12px 25px;
  font-size: 1em;
  border-radius: 4px;
}

.page-promotions__btn-secondary:hover {
  background: #004d2b;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-promotions__btn-register {
  background: var(--button-register-bg);
  color: var(--button-login-register-text);
}

.page-promotions__btn-register:hover {
  background: #a30707;
}

.page-promotions__btn-login {
  background: var(--button-login-bg);
  color: var(--button-login-register-text);
}

.page-promotions__btn-login:hover {
  background: #a30707;
}

/* Card Grid */
.page-promotions__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-promotions__card {
  background: var(--secondary-color);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: var(--text-dark);
}

.page-promotions__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-promotions__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promotions__card-title {
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__card-title a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-promotions__card-title a:hover {
  text-decoration: underline;
}

.page-promotions__card-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Game Offers Section */
.page-promotions__tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 10px;
}

.page-promotions__tab-button {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1em;
  transition: all 0.3s ease;
}

.page-promotions__tab-button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.page-promotions__tab-button.active {
  background: var(--secondary-color);
  color: var(--primary-color);
  font-weight: bold;
  border-color: var(--secondary-color);
}

.page-promotions__tab-content {
  display: none;
  padding: 20px 0;
}

.page-promotions__tab-content.active {
  display: block;
}

.page-promotions__game-offer-card {
  display: flex;
  background: var(--secondary-color);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.page-promotions__game-offer-image {
  width: 40%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-promotions__game-offer-details {
  width: 60%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-promotions__game-offer-details h3 {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 15px;
}

.page-promotions__game-offer-details p {
  margin-bottom: 20px;
  font-size: 1.1em;
}

/* Guide Section */
.page-promotions__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-promotions__step-item {
  background: var(--secondary-color);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-dark);
}

.page-promotions__step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-promotions__step-item h3 {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-promotions__step-item p {
  font-size: 0.95em;
  color: #555;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-promotions__cta-block {
  text-align: center;
  margin-top: 60px;
  padding: 30px;
  background: linear-gradient(90deg, #f0f0f0, #e0e0e0);
  border-radius: 10px;
}

.page-promotions__cta-block p {
  font-size: 1.2em;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Security and Support Section */
.page-promotions__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-promotions__info-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  color: var(--text-light);
}

.page-promotions__info-item h3 {
  font-size: 1.4em;
  color: var(--secondary-color);
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-promotions__info-item p {
  font-size: 0.95em;
  color: rgba(255, 255, 255, 0.8);
}

.page-promotions__info-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
  /* filter: brightness(1.2); */ /* Removed filter to strictly comply with}