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

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

/* Hero Section Styling */
.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; /* Rely on body padding-top for header offset */
    background-color: var(--site-bg);
    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;
    width: 100%;
}

.page-promotions__hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.page-promotions__hero-image img:hover {
    transform: scale(1.02);
}

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

.page-promotions__hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--primary-color);
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 140, 26, 0.7);
}

.page-promotions__hero-content p {
    font-size: 1.15rem;
    color: var(--text-main);
    max-width: 800px;
    margin: 0 auto 30px auto;
}

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

.page-promotions__cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 30px var(--glow-color);
}

.page-promotions__cta-button--large {
    padding: 18px 50px;
    font-size: 1.35rem;
}

/* General Section Styling */
.page-promotions__section {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--site-bg);
}

.page-promotions__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 140, 26, 0.5);
}

.page-promotions__section-description {
    font-size: 1.05rem;
    color: var(--text-main);
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

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

.page-promotions__card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 15px var(--glow-color);
}

.page-promotions__card-title {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__card p {
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.5;
}

/* Promo Item Styling */
.page-promotions__promo-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    text-align: left;
}

.page-promotions__promo-item--reverse {
    flex-direction: row-reverse;
}

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

.page-promotions__promo-image-wrapper {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

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

.page-promotions__promo-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions__promo-content p {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 15px;
}

.page-promotions__promo-content ul,
.page-promotions__promo-content ol {
    list-style-position: inside;
    margin-bottom: 15px;
    padding-left: 20px;
    color: var(--text-main);
}

.page-promotions__promo-content ul li,
.page-promotions__promo-content ol li {
    margin-bottom: 8px;
    font-size: 1rem;
}

.page-promotions__btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-promotions__btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Claim Guide Section */
.page-promotions__claim-guide-section {
    background-color: var(--site-bg);
}

.page-promotions__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-promotions__steps-list li {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.page-promotions__steps-list li:hover {
    transform: translateY(-5px);
}

.page-promotions__steps-list h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__steps-list p {
    font-size: 1rem;
    color: var(--text-main);
}

/* Terms Section */
.page-promotions__terms-section {
    background-color: var(--deep-orange);
    color: #ffffff;
    padding: 80px 20px;
}

.page-promotions__terms-section .page-promotions__section-title {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-promotions__terms-section .page-promotions__section-description {
    color: #f0f0f0;
}

.page-promotions__text-block {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    max-width: 1000px;
    margin: 40px auto 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-promotions__text-block h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__text-block h3:first-child {
    margin-top: 0;
}

.page-promotions__text-block p {
    font-size: 1rem;
    color: #f0f0f0;
    margin-bottom: 15px;
}

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

.page-promotions__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

details.page-promotions__faq-item[open] {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6), 0 0 15px var(--glow-color);
    border-color: var(--primary-color);
}

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);
  font-weight: bold;
}

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);
  color: var(--primary-color);
}

.page-promotions__faq-qtext {
  flex: 1;
  font-size: 1.15rem;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main);
}

details.page-promotions__faq-item[open] .page-promotions__faq-qtext {
    color: var(--primary-color);
}

.page-promotions__faq-toggle {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

details.page-promotions__faq-item[open] .page-promotions__faq-toggle {
    transform: rotate(45deg);
}

details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 25px 25px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 0 0 12px 12px;
  color: var(--text-main);
  text-align: left;
}

.page-promotions__faq-answer p {
    font-size: 1rem;
    color: var(--text-main);
}

/* Benefits List */
.page-promotions__benefits-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 60px auto;
    max-width: 900px;
    text-align: left;
}

.page-promotions__benefits-list li {
    background-color: var(--card-bg);
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-size: 1.1rem;
    color: var(--text-main);
    transition: transform 0.2s ease;
}

.page-promotions__benefits-list li:hover {
    transform: translateX(5px);
}

.page-promotions__benefits-list li strong {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__promo-item {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .page-promotions__promo-item--reverse {
        flex-direction: column;
    }

    .page-promotions__promo-image-wrapper {
        margin-bottom: 30px;
    }

    .page-promotions__promo-item .page-promotions__btn-primary {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .page-promotions h1 {
        font-size: 2rem;
    }

    .page-promotions__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-promotions__hero-image img {
        border-radius: 8px;
    }

    .page-promotions__hero-content p {
        font-size: 1rem;
    }

    .page-promotions__cta-button,
    .page-promotions__cta-button--large {
        padding: 12px 30px;
        font-size: 1rem;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-promotions__section {
        padding: 50px 15px;
    }

    .page-promotions__section-title {
        font-size: 1.8rem;
    }

    .page-promotions__section-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

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

    .page-promotions__card {
        padding: 25px;
    }

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

    .page-promotions__promo-item {
        padding: 25px;
        gap: 25px;
        margin-bottom: 40px;
    }

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

    .page-promotions__promo-content p,
    .page-promotions__promo-content ul li,
    .page-promotions__promo-content ol li {
        font-size: 0.95rem;
    }

    .page-promotions__btn-primary {
        padding: 10px 25px;
        font-size: 0.95rem;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

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

    .page-promotions__steps-list li {
        padding: 25px;
    }

    .page-promotions__steps-list h3 {
        font-size: 1.2rem;
    }

    .page-promotions__terms-section .page-promotions__text-block {
        padding: 25px;
    }

    .page-promotions__text-block h3 {
        font-size: 1.3rem;
    }

    details.page-promotions__faq-item summary.page-promotions__faq-question {
        padding: 15px 20px;
    }

    .page-promotions__faq-qtext {
        font-size: 1rem;
    }

    .page-promotions__faq-toggle {
        font-size: 1.5rem;
        width: 25px;
    }

    details.page-promotions__faq-item .page-promotions__faq-answer {
        padding: 0 20px 20px;
    }

    .page-promotions__benefits-list li {
        font-size: 1rem;
        padding: 18px 20px;
    }

    /* Mobile image and button responsiveness */
    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container,
    .page-promotions__promo-item,
    .page-promotions__text-block,
    .page-promotions__faq-list,
    .page-promotions__benefits-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-promotions__hero-content .page-promotions__cta-button {
        margin-left: 0;
        margin-right: 0;
    }

    .page-promotions__cta-button,
    .page-promotions__btn-primary {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}