/* style/promotions.css */
:root {
  --oxbet-green-main: #11A84E;
  --oxbet-green-secondary: #22C768;
  --oxbet-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --oxbet-bg-dark: #08160F;
  --oxbet-card-bg: #11271B;
  --oxbet-text-main: #F2FFF6;
  --oxbet-text-secondary: #A7D9B8;
  --oxbet-border: #2E7A4E;
  --oxbet-glow: #57E38D;
  --oxbet-gold: #F2C14E;
  --oxbet-divider: #1E3A2A;
  --oxbet-deep-green: #0A4B2C;
}

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

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

.page-promotions__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--oxbet-gold);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-promotions__text-block {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--oxbet-text-secondary);
}

/* Hero Section */
.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  background-color: var(--oxbet-deep-green);
}

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

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-promotions__main-title {
  font-size: clamp(32px, 5vw, 56px); /* Use clamp for H1 */
  color: var(--oxbet-gold);
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 1px;
}

.page-promotions__hero-description {
  font-size: 19px;
  color: var(--oxbet-text-main);
  margin-bottom: 30px;
  line-height: 1.8;
}

.page-promotions__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary {
  background: var(--oxbet-btn-gradient);
  color: var(--oxbet-text-main);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-promotions__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
  opacity: 0.9;
}

.page-promotions__btn-secondary {
  background-color: transparent;
  color: var(--oxbet-gold);
  border: 2px solid var(--oxbet-gold);
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.2);
}

.page-promotions__btn-secondary:hover {
  transform: translateY(-3px);
  background-color: var(--oxbet-gold);
  color: var(--oxbet-bg-dark);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.4);
}

/* Overview Section */
.page-promotions__overview-section {
  background-color: var(--oxbet-bg-dark);
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Promotions Grid */
.page-promotions__types-section {
  background-color: var(--oxbet-deep-green);
  padding-top: 60px;
  padding-bottom: 60px;
}

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

.page-promotions__card {
  background-color: var(--oxbet-card-bg);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--oxbet-border);
  color: var(--oxbet-text-main);
}

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

.page-promotions__card-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  display: block;
}

.page-promotions__card-title {
  font-size: 24px;
  color: var(--oxbet-gold);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__card-text {
  font-size: 16px;
  color: var(--oxbet-text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-promotions__card-button {
  display: inline-block;
  background: var(--oxbet-btn-gradient);
  color: var(--oxbet-text-main);
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 10px rgba(42, 209, 111, 0.3);
}

.page-promotions__card-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* How To Claim Section */
.page-promotions__how-to-claim-section {
  background-color: var(--oxbet-bg-dark);
  padding-top: 60px;
  padding-bottom: 60px;
}

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

.page-promotions__step-card {
  background-color: var(--oxbet-card-bg);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--oxbet-border);
  color: var(--oxbet-text-main);
}

.page-promotions__step-number {
  width: 60px;
  height: 60px;
  background-color: var(--oxbet-gold);
  color: var(--oxbet-bg-dark);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  font-weight: bold;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 10px rgba(242, 193, 78, 0.4);
}

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

.page-promotions__step-text {
  font-size: 16px;
  color: var(--oxbet-text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Terms Section */
.page-promotions__terms-section {
  background-color: var(--oxbet-deep-green);
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
}

.page-promotions__terms-list li {
  background-color: var(--oxbet-card-bg);
  border-left: 4px solid var(--oxbet-gold);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 16px;
  color: var(--oxbet-text-secondary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-promotions__faq-section {
  background-color: var(--oxbet-bg-dark);
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-promotions__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
  color: var(--oxbet-text-main);
  cursor: pointer;
  background-color: var(--oxbet-card-bg);
  transition: background-color 0.3s ease;
  position: relative;
}

.page-promotions__faq-question::-webkit-details-marker, /* Hide default marker for Chrome/Safari */
.page-promotions__faq-question::marker { /* Hide default marker for Firefox */
  display: none;
}

.page-promotions__faq-question:hover {
  background-color: var(--oxbet-deep-green);
}

.page-promotions__faq-qtext {
  flex-grow: 1;
  color: var(--oxbet-gold);
}

.page-promotions__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: var(--oxbet-gold);
}

.page-promotions__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 16px;
  color: var(--oxbet-text-secondary);
  line-height: 1.7;
}

/* CTA Bottom Section */
.page-promotions__cta-bottom-section {
  background-color: var(--oxbet-deep-green);
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-content {
    max-width: 700px;
  }
  .page-promotions__promotions-grid,
  .page-promotions__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions__container {
    padding: 30px 15px;
  }

  .page-promotions__section-title {
    font-size: 32px;
    margin-bottom: 25px;
  }

  .page-promotions__main-title {
    font-size: 38px;
  }

  .page-promotions__hero-description {
    font-size: 17px;
  }

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
  }

  .page-promotions__promotions-grid,
  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .page-promotions__card-title {
    font-size: 20px;
  }

  .page-promotions__step-title {
    font-size: 20px;
  }

  .page-promotions__terms-list li {
    font-size: 15px;
    padding: 12px 15px;
  }

  .page-promotions__faq-question {
    font-size: 16px;
    padding: 15px;
  }

  .page-promotions__faq-answer {
    font-size: 15px;
    padding: 0 15px 15px 15px;
  }

  /* Mobile image responsiveness */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__hero-image-wrapper,
  .page-promotions__cta-buttons,
  .page-promotions__promotions-grid,
  .page-promotions__steps-grid,
  .page-promotions__faq-list,
  .page-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-promotions__hero-section {
    padding-top: 10px !important;
    padding-left: 0;
    padding-right: 0;
  }
  .page-promotions__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__text-block {
    padding-left: 0;
    padding-right: 0;
  }
  .page-promotions__terms-section .page-promotions__text-block {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__terms-list {
    padding-left: 0;
    padding-right: 0;
  }
}