/* style/promotions.css */

.page-promotions {
    color: #FFF6D6; /* Text Main */
    background-color: #0A0A0A; /* Background */
    font-family: Arial, sans-serif;
}

.page-promotions__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 0 60px 0; /* Adjusted top padding */
    position: relative;
    overflow: hidden;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-width: 1920px;
    margin-bottom: 40px; /* Space between image and content */
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-promotions__hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
}

.page-promotions__main-title {
    font-size: 3.2em;
    font-weight: 700;
    line-height: 1.2;
    color: #F2C14E; /* Main color */
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-promotions__description {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFF6D6; /* Text Main */
}

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

.page-promotions__btn-primary,
.page-promotions__btn-secondary,
.page-promotions__card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    min-width: 180px;
    cursor: pointer;
    border: none;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111; /* Dark text for bright button */
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-promotions__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-promotions__btn-secondary {
    background: transparent;
    border: 2px solid #F2C14E; /* Main color */
    color: #FFF6D6; /* Text Main */
}

.page-promotions__btn-secondary:hover {
    background: #F2C14E; /* Main color */
    color: #111111; /* Dark text for bright button */
}

.page-promotions__section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-promotions__section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #F2C14E; /* Main color */
    margin-bottom: 25px;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-promotions__section-description {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #FFF6D6; /* Text Main */
}

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

.page-promotions__promotion-card {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-promotions__promotion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(242, 193, 78, 0.2);
}

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

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

.page-promotions__card-title {
    font-size: 1.4em;
    font-weight: 600;
    color: #FFD36B; /* Glow */
    margin-bottom: 15px;
    line-height: 1.4;
}

.page-promotions__card-title a {
    color: inherit;
    text-decoration: none;
}

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

.page-promotions__card-text {
    font-size: 0.95em;
    line-height: 1.6;
    color: #FFF6D6; /* Text Main */
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__card-button {
    margin-top: auto; /* Push button to bottom */
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111; /* Dark text for bright button */
    font-size: 0.95em;
    padding: 12px 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(242, 193, 78, 0.3);
}

.page-promotions__card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(242, 193, 78, 0.5);
}

.page-promotions__new-user-bonus .page-promotions__section-description,
.page-promotions__vip-program .page-promotions__section-description,
.page-promotions__game-promotions .page-promotions__section-description,
.page-promotions__how-to-claim .page-promotions__section-description {
    margin-bottom: 60px;
}

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

.page-promotions__bonus-item {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-promotions__bonus-item:hover {
    transform: translateY(-5px);
}

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

.page-promotions__bonus-title {
    font-size: 1.5em;
    font-weight: 600;
    color: #FFD36B; /* Glow */
    margin-bottom: 15px;
}

.page-promotions__bonus-text {
    font-size: 1em;
    line-height: 1.6;
    color: #FFF6D6; /* Text Main */
}

.page-promotions__cta-center {
    margin-top: 40px;
}

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

.page-promotions__vip-card {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-promotions__vip-card:hover {
    transform: translateY(-5px);
}

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

.page-promotions__vip-title {
    font-size: 1.5em;
    font-weight: 600;
    color: #FFD36B; /* Glow */
    margin-bottom: 15px;
}

.page-promotions__vip-text {
    font-size: 1em;
    line-height: 1.6;
    color: #FFF6D6; /* Text Main */
}

.page-promotions__game-promo-card {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__game-promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 22px rgba(242, 193, 78, 0.25);
}

.page-promotions__game-promo-image {
    width: 300px; /* Fixed width for desktop */
    height: 170px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.page-promotions__game-promo-content {
    text-align: left;
}

.page-promotions__game-promo-title {
    font-size: 1.8em;
    font-weight: 700;
    color: #F2C14E; /* Main color */
    margin-bottom: 15px;
}

.page-promotions__game-promo-text {
    font-size: 1em;
    line-height: 1.6;
    color: #FFF6D6; /* Text Main */
    margin-bottom: 25px;
}

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

.page-promotions__step-item {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    text-align: center;
}

.page-promotions__step-item:hover {
    transform: translateY(-5px);
}

.page-promotions__step-number {
    font-size: 2.5em;
    font-weight: 700;
    color: #F2C14E; /* Main color */
    margin-bottom: 15px;
}

.page-promotions__step-title {
    font-size: 1.4em;
    font-weight: 600;
    color: #FFD36B; /* Glow */
    margin-bottom: 15px;
}

.page-promotions__step-text {
    font-size: 1em;
    line-height: 1.6;
    color: #FFF6D6; /* Text Main */
}

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

.page-promotions__faq-item {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #FFF6D6; /* Text Main */
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    color: #F2C14E; /* Main color */
    background-color: rgba(242, 193, 78, 0.05);
    border-bottom: 1px solid #3A2A12;
    list-style: none;
}

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

.page-promotions__faq-question:hover {
    background-color: rgba(242, 193, 78, 0.1);
}

.page-promotions__faq-qtext {
    flex-grow: 1;
    margin-right: 15px;
}

.page-promotions__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

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

.page-promotions__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    line-height: 1.6;
    color: #FFF6D6; /* Text Main */
    background-color: #111111; /* Card BG */
}

.page-promotions__call-to-action {
    padding: 100px 20px;
    background-color: #111111; /* Card BG */
    border-top: 1px solid #3A2A12;
}

.page-promotions__call-to-action .page-promotions__section-title {
    font-size: 2.8em;
}

.page-promotions__call-to-action .page-promotions__section-description {
    margin-bottom: 40px;
}

/* General image and container responsiveness */
.page-promotions img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-promotions__section,
.page-promotions__promotion-card,
.page-promotions__bonus-item,
.page-promotions__vip-card,
.page-promotions__game-promo-card,
.page-promotions__step-item,
.page-promotions__faq-item {
  box-sizing: border-box;
}

/* Media Queries */
@media (max-width: 1024px) {
    .page-promotions__main-title {
        font-size: 2.8em;
    }
    .page-promotions__description {
        font-size: 1.1em;
    }
    .page-promotions__section-title {
        font-size: 2.2em;
    }
    .page-promotions__game-promo-card {
        flex-direction: column;
        text-align: center;
    }
    .page-promotions__game-promo-image {
        width: 100%;
        height: auto;
        max-width: 400px;
        margin: 0 auto 20px auto;
    }
    .page-promotions__game-promo-content {
        text-align: center;
    }
    .page-promotions__call-to-action .page-promotions__section-title {
        font-size: 2.4em;
    }
}

@media (max-width: 768px) {
    .page-promotions {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-promotions__hero-section {
        padding: 10px 0 40px 0;
    }
    .page-promotions__hero-image {
        object-fit: contain !important;
        aspect-ratio: unset !important;
        max-height: none !important;
    }
    .page-promotions__main-title {
        font-size: 2em;
        margin-bottom: 15px;
    }
    .page-promotions__description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-promotions__btn-primary,
    .page-promotions__btn-secondary,
    .page-promotions__card-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 15px 10px;
    }
    .page-promotions__section {
        padding: 50px 15px;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    .page-promotions__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-promotions__promotions-grid,
    .page-promotions__bonus-details,
    .page-promotions__vip-benefits,
    .page-promotions__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-promotions__card-image {
        height: 180px;
    }
    .page-promotions__card-content {
        padding: 20px;
    }
    .page-promotions__card-title {
        font-size: 1.2em;
    }
    .page-promotions__card-text {
        font-size: 0.9em;
    }
    .page-promotions__card-button {
        font-size: 0.9em;
        padding: 10px 15px;
    }
    .page-promotions__bonus-item,
    .page-promotions__vip-card,
    .page-promotions__step-item {
        padding: 25px;
    }
    .page-promotions__bonus-icon,
    .page-promotions__vip-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    .page-promotions__bonus-title,
    .page-promotions__vip-title {
        font-size: 1.3em;
    }
    .page-promotions__game-promo-card {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    .page-promotions__game-promo-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0 auto 15px auto;
    }
    .page-promotions__game-promo-title {
        font-size: 1.5em;
    }
    .page-promotions__game-promo-text {
        font-size: 0.95em;
        margin-bottom: 20px;
    }
    .page-promotions__step-number {
        font-size: 2em;
    }
    .page-promotions__step-title {
        font-size: 1.2em;
    }
    .page-promotions__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-promotions__faq-answer {
        padding: 15px 20px;
        font-size: 0.95em;
    }
    .page-promotions__call-to-action {
        padding: 60px 15px;
    }
    .page-promotions__call-to-action .page-promotions__section-title {
        font-size: 2em;
    }

    /* Ensure all images and containers are responsive */
    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-promotions__section,
    .page-promotions__promotion-card,
    .page-promotions__bonus-item,
    .page-promotions__vip-card,
    .page-promotions__game-promo-card,
    .page-promotions__step-item,
    .page-promotions__faq-item,
    .page-promotions__hero-content,
    .page-promotions__cta-buttons,
    .page-promotions__cta-center {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-promotions__hero-image-wrapper {
      padding-left: 0;
      padding-right: 0;
    }
    .page-promotions__cta-buttons {
      flex-wrap: wrap !important;
      gap: 10px;
    }
}