:root {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --card-bg-color: #17191F;
  --background-color: #0D0E12;
  --text-main-color: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange-color: #D96800;
  --button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
}

.page-promotions {
  font-family: 'Arial', sans-serif;
  color: var(--text-main-color); /* Main text color for the page */
  background-color: var(--background-color); /* Body background color */
  line-height: 1.6;
}

.page-promotions__section {
  padding: 60px 20px;
  text-align: center;
}

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

.page-promotions__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 25px;
  line-height: 1.2;
}

.page-promotions__section-text {
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--text-main-color);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
}

.page-promotions__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__cta-button--small {
  padding: 12px 30px;
  font-size: 16px;
}

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

.page-promotions__cta-button--secondary:hover {
  background: rgba(255, 140, 26, 0.1);
  color: #ffffff;
}

/* 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: 10px; /* Small top padding, main body padding handled by shared.css */
  overflow: hidden;
}

.page-promotions__hero-container {
  position: relative;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promotions__hero-image {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.page-promotions__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

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

.page-promotions__main-title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  color: var(--glow-color);
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 0 15px rgba(255, 176, 77, 0.6);
}

.page-promotions__hero-description {
  font-size: clamp(16px, 2vw, 24px);
  color: var(--text-main-color);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Introduction Section */
.page-promotions__introduction-section {
  background-color: var(--background-color);
}

/* Quick Links Section */
.page-promotions__quick-links-section {
  background-color: var(--card-bg-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.page-promotions__link-card {
  background: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text-main-color);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__link-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  border-color: var(--primary-color);
}

.page-promotions__link-icon {
  margin-bottom: 20px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 165, 58, 0.1);
}

.page-promotions__link-icon img {
  
  
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}

.page-promotions__link-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-promotions__link-description {
  font-size: 16px;
  color: var(--text-main-color);
  text-align: center;
}

/* Game Promotions Section */
.page-promotions__game-promotions-section {
  background-color: var(--background-color);
}

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

.page-promotions__game-card {
  background: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  display: block;
}

.page-promotions__game-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-promotions__game-description {
  font-size: 16px;
  color: var(--text-main-color);
  margin-bottom: 20px;
  padding: 0 15px;
}

/* Featured Promotions Section */
.page-promotions__featured-promotions-section {
  background-color: var(--card-bg-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.page-promotions__promo-card {
  background: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.page-promotions__promo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

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

.page-promotions__promo-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-promotions__promo-description {
  font-size: 16px;
  color: var(--text-main-color);
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-promotions__promo-date {
  font-size: 14px;
  color: #999;
  margin-top: auto;
  margin-bottom: 15px;
}

/* Security & Support Section */
.page-promotions__security-support-section {
  background-color: var(--background-color);
}

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

.page-promotions__feature-item {
  background: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__feature-item img {
  
  
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__feature-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-promotions__feature-description {
  font-size: 16px;
  color: var(--text-main-color);
}

.page-promotions__contact-cta {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* FAQ Section */
.page-promotions__faq-section {
  background-color: var(--background-color);
  color: var(--text-main-color);
}

.page-promotions__faq-list {
  margin-top: 40px;
  text-align: left;
}

details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

details.page-promotions__faq-item summary.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--text-main-color);
}

details.page-promotions__faq-item summary.page-promotions__faq-question::-webkit-details-marker {
  display: none;
}

details.page-promotions__faq-item summary.page-promotions__faq-question:hover {
  background: rgba(255, 140, 26, 0.1);
}

.page-promotions__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--primary-color);
}

.page-promotions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--glow-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 25px 20px;
  background: var(--background-color);
  border-top: 1px solid rgba(255, 140, 26, 0.2);
  border-radius: 0 0 10px 10px;
  color: var(--text-main-color);
}

.page-promotions__faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

/* Blog Section */
.page-promotions__blog-section {
  background-color: var(--card-bg-color);
  border-top: 1px solid var(--border-color);
}

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

.page-promotions__blog-card {
  background: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.page-promotions__blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

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

.page-promotions__blog-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.page-promotions__blog-title a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__blog-title a:hover {
  color: var(--glow-color);
}

.page-promotions__blog-excerpt {
  font-size: 15px;
  color: var(--text-main-color);
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-promotions__read-more {
  display: inline-block;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  margin-top: auto;
}

.page-promotions__read-more:hover {
  color: var(--glow-color);
}

.page-promotions__view-all {
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__section-title {
    font-size: 32px;
  }
  .page-promotions__section-text {
    font-size: 17px;
  }
  .page-promotions__hero-image img {
    border-radius: 8px;
  }
  .page-promotions__hero-description {
    font-size: 20px;
  }
  .page-promotions__link-grid, .page-promotions__game-grid, .page-promotions__promo-cards-grid, .page-promotions__feature-grid, .page-promotions__blog-grid {
    gap: 25px;
  }
  .page-promotions__link-title, .page-promotions__game-title, .page-promotions__feature-title, .page-promotions__promo-title {
    font-size: 20px;
  }
  .page-promotions__link-description, .page-promotions__game-description, .page-promotions__feature-description, .page-promotions__promo-description {
    font-size: 15px;
  }
  .page-promotions__faq-qtext {
    font-size: 17px;
  }
  .page-promotions__faq-answer p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__hero-image img {
    border-radius: 6px;
    margin-bottom: 20px;
  }
  .page-promotions__main-title {
    font-size: clamp(28px, 8vw, 48px);
    margin-bottom: 15px;
  }
  .page-promotions__hero-description {
    font-size: clamp(15px, 4vw, 18px);
    margin-bottom: 25px;
  }
  .page-promotions__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions__cta-button--small {
    padding: 10px 25px;
    font-size: 15px;
  }
  .page-promotions__contact-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__section {
    padding: 40px 15px;
  }
  .page-promotions__section-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .page-promotions__section-text {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .page-promotions__link-grid, .page-promotions__game-grid, .page-promotions__promo-cards-grid, .page-promotions__feature-grid, .page-promotions__blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__link-card, .page-promotions__game-card, .page-promotions__feature-item, .page-promotions__promo-card, .page-promotions__blog-card {
    padding: 20px;
  }
  .page-promotions__link-title, .page-promotions__game-title, .page-promotions__feature-title, .page-promotions__promo-title {
    font-size: 18px;
  }
  .page-promotions__link-description, .page-promotions__game-description, .page-promotions__feature-description, .page-promotions__promo-description {
    font-size: 14px;
  }
  .page-promotions__game-card img, .page-promotions__promo-card img, .page-promotions__blog-card img {
    
  }
  details.page-promotions__faq-item summary.page-promotions__faq-question {
    padding: 15px 20px;
  }
  .page-promotions__faq-qtext {
    font-size: 16px;
  }
  .page-promotions__faq-toggle {
    font-size: 22px;
  }
  details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 20px 15px;
  }
  .page-promotions__faq-answer p {
    font-size: 14px;
  }

  /* Image responsiveness for mobile */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__link-card,
  .page-promotions__game-card,
  .page-promotions__promo-card,
  .page-promotions__feature-item,
  .page-promotions__blog-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__hero-container {
    padding: 0;
  }
  .page-promotions__hero-content {
    padding: 0;
  }
  .page-promotions__link-icon {
    width: 80px;
    height: 80px;
  }
  .page-promotions__link-icon img {
    
    
  }
  .page-promotions__feature-item img {
    
    
  }
}

@media (max-width: 480px) {
  .page-promotions__section-title {
    font-size: 24px;
  }
  .page-promotions__hero-image img {
    border-radius: 4px;
  }
  .page-promotions__main-title {
    font-size: clamp(24px, 10vw, 36px);
  }
  .page-promotions__hero-description {
    font-size: clamp(14px, 5vw, 16px);
  }
  .page-promotions__cta-button {
    font-size: 15px;
    padding: 10px 25px;
  }
  .page-promotions__cta-button--small {
    font-size: 14px;
    padding: 8px 20px;
  }
  .page-promotions__link-title, .page-promotions__game-title, .page-promotions__feature-title, .page-promotions__promo-title {
    font-size: 17px;
  }
  .page-promotions__link-description, .page-promotions__game-description, .page-promotions__feature-description, .page-promotions__promo-description {
    font-size: 13px;
  }
  .page-promotions__game-card img, .page-promotions__promo-card img, .page-promotions__blog-card img {
    
  }
  .page-promotions__faq-qtext {
    font-size: 15px;
  }
  .page-promotions__faq-answer p {
    font-size: 13px;
  }
}