/* style/promotions.css */
:root {
  --primary-color: #0A2463;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #121212;
  --bg-medium: #FFD700;
  --bg-light: #f5f5f5;
  --border-color: #333333;
}

.page-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Body background is dark #121212 */
  background-color: var(--bg-dark);
  padding-top: 0; /* Handled by specific section padding */
}

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  padding: 120px 20px 80px; /* Adjusted for fixed header desktop */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, #061536 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 12px;
}

.page-promotions__main-title {
  font-size: 3.2em;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.page-promotions__hero-description {
  font-size: 1.3em;
  color: #e0e0e0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 18px 40px;
  background: var(--secondary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.page-promotions__cta-button:hover {
  background: #ffc400;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__cta-button--secondary {
  background: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--secondary-color);
}

.page-promotions__cta-button--secondary:hover {
  background: #061536;
  border-color: #ffc400;
}

.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-promotions__description-intro, .page-promotions__description {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-promotions__card-image {
  max-width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-promotions__card-title {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promotions__card-text {
  font-size: 1em;
  color: #c0c0c0;
  margin-bottom: 30px;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 30px;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid var(--secondary-color);
  cursor: pointer;
}

.page-promotions__card-button:hover {
  background: #061536;
  transform: translateY(-2px);
  border-color: #ffc400;
}

.page-promotions__disclaimer {
  font-size: 0.9em;
  color: #888888;
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.page-promotions__daily-bonuses-section {
  background-color: var(--bg-medium);
  color: var(--text-dark);
  padding: 80px 20px;
  box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions__daily-bonuses-section .page-promotions__section-title {
  color: var(--primary-color);
}

.page-promotions__daily-bonuses-section .page-promotions__description {
  color: var(--text-dark);
}

.page-promotions__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-promotions__promo-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__promo-icon {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--secondary-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-promotions__promo-content {
  flex-grow: 1;
}

.page-promotions__promo-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promotions__promo-text {
  font-size: 1em;
  color: var(--text-dark);
}

.page-promotions__game-specific-bonuses-section {
  padding: 80px 20px;
  background-color: var(--bg-dark);
}

.page-promotions__game-promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__game-promo-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__game-promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-promotions__game-promo-image {
  max-width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-promotions__game-promo-title {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promotions__game-promo-text {
  font-size: 1em;
  color: #c0c0c0;
  margin-bottom: 30px;
  flex-grow: 1;
}

.page-promotions__game-promo-button {
  display: inline-block;
  padding: 12px 25px;
  background: var(--secondary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 30px;
  font-size: 1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions__game-promo-button:hover {
  background: #ffc400;
  transform: translateY(-2px);
}

.page-promotions__vip-program-section {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 80px 20px;
  box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__vip-program-section .page-promotions__section-title {
  color: var(--secondary-color);
}

.page-promotions__vip-program-section .page-promotions__description {
  color: #e0e0e0;
}

.page-promotions__vip-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions__vip-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.page-promotions__vip-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.page-promotions__vip-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-promotions__vip-title {
  font-size: 1.6em;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.page-promotions__vip-text {
  font-size: 1em;
  color: #c0c0c0;
}

.page-promotions__terms-section {
  padding: 80px 20px;
  background-color: var(--bg-dark);
}

.page-promotions__terms-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions__terms-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__terms-title {
  font-size: 1.6em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-promotions__terms-text {
  font-size: 1em;
  color: #c0c0c0;
}

.page-promotions__final-cta-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(45deg, #061536 0%, var(--primary-color) 100%);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__final-cta-section .page-promotions__section-title {
  color: var(--secondary-color);
}

.page-promotions__final-cta-section .page-promotions__description {
  color: #e0e0e0;
  margin-bottom: 50px;
}

.page-promotions__inline-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promotions__inline-link:hover {
  color: #ffc400;
  text-decoration: underline;
}

.page-promotions__highlight-text {
  color: var(--secondary-color);
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: 2.8em;
  }

  .page-promotions__hero-description {
    font-size: 1.2em;
  }

  .page-promotions__section-title {
    font-size: 2.2em;
  }

  .page-promotions__promo-icon {
    width: 100px;
    height: 100px;
  }

  .page-promotions__promo-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 100px 15px 60px; /* Adjusted for fixed header mobile */
  }

  .page-promotions__hero-container {
    padding: 30px 15px;
  }

  .page-promotions__main-title {
    font-size: 2.2em;
  }

  .page-promotions__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-promotions__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__container {
    padding: 40px 15px;
  }

  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-promotions__description-intro, .page-promotions__description {
    font-size: 0.95em;
    margin-bottom: 40px;
  }

  .page-promotions__card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__card {
    padding: 25px;
  }

  .page-promotions__card-image {
    height: 200px;
  }

  .page-promotions__card-title {
    font-size: 1.5em;
  }

  .page-promotions__card-text {
    font-size: 0.95em;
  }

  .page-promotions__card-button {
    font-size: 0.9em;
    padding: 10px 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__promo-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
  }

  .page-promotions__promo-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 15px;
  }

  .page-promotions__promo-title {
    font-size: 1.4em;
  }

  .page-promotions__promo-text {
    font-size: 0.95em;
  }

  .page-promotions__game-promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__game-promo-card {
    padding: 25px;
  }

  .page-promotions__game-promo-image {
    height: 180px;
  }

  .page-promotions__game-promo-title {
    font-size: 1.5em;
  }

  .page-promotions__game-promo-button {
    font-size: 0.9em;
    padding: 10px 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__vip-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__vip-item {
    padding: 25px;
  }

  .page-promotions__vip-title {
    font-size: 1.4em;
  }

  .page-promotions__terms-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__terms-title {
    font-size: 1.4em;
  }

  /* Ensure all images are responsive */
  .page-promotions img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions__card-image,
  .page-promotions__promo-icon,
  .page-promotions__game-promo-image,
  .page-promotions__vip-icon {
    max-width: 100% !important;
    width: auto !important; /* Allow auto width for icons, but max-width 100% */
    box-sizing: border-box !important;
    height: auto !important; /* Ensure height adjusts */
  }

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

  .page-promotions__game-promo-image {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
  }

  .page-promotions__promo-icon,
  .page-promotions__vip-icon {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .page-promotions__cta-buttons,
  .page-promotions__card-button-container,
  .page-promotions__game-promo-button-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .page-promotions__cta-button,
  .page-promotions__card-button,
  .page-promotions__game-promo-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
}

@media (max-width: 480px) {
  .page-promotions__main-title {
    font-size: 1.8em;
  }

  .page-promotions__section-title {
    font-size: 1.6em;
  }

  .page-promotions__hero-section {
    padding-top: 80px; /* Further adjustment for smaller mobile screens */
  }

  .page-promotions__hero-container {
    padding: 20px 10px;
  }

  .page-promotions__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }

  .page-promotions__card-title {
    font-size: 1.3em;
  }

  .page-promotions__promo-title {
    font-size: 1.2em;
  }

  .page-promotions__promo-icon {
    width: 80px;
    height: 80px;
  }

  .page-promotions__game-promo-title {
    font-size: 1.3em;
  }

  .page-promotions__vip-title,
  .page-promotions__terms-title {
    font-size: 1.3em;
  }
}