/* style/promotions.css */

:root {
    --g6bet-green-main: #11A84E;
    --g6bet-green-accent: #22C768;
    --g6bet-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --g6bet-card-bg: #11271B;
    --g6bet-background: #08160F;
    --g6bet-text-main: #F2FFF6;
    --g6bet-text-secondary: #A7D9B8;
    --g6bet-border: #2E7A4E;
    --g6bet-glow: #57E38D;
    --g6bet-gold: #F2C14E;
    --g6bet-divider: #1E3A2A;
    --g6bet-deep-green: #0A4B2C;
}

.page-promotions {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--g6bet-text-main); /* Default text color for dark background */
    background-color: var(--g6bet-background); /* Should be overridden by shared.css body, but fallback */
}

.page-promotions__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 20px 60px 20px; /* Small top padding, more bottom padding */
    overflow: hidden;
    background-color: var(--g6bet-background);
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Limit height for hero image */
    overflow: hidden;
}

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

.page-promotions__hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin-top: 40px;
    color: var(--g6bet-text-main);
}

.page-promotions__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--g6bet-gold);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-promotions__hero-description {
    font-size: 1.15rem;
    color: var(--g6bet-text-secondary);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions__intro-section {
    background-color: var(--g6bet-background);
    color: var(--g6bet-text-main);
}

.page-promotions__offer-types {
    background-color: var(--g6bet-deep-green);
    color: var(--g6bet-text-main);
}

.page-promotions__guide-section {
    background-color: var(--g6bet-background);
    color: var(--g6bet-text-main);
}

.page-promotions__tips-section {
    background-color: var(--g6bet-deep-green);
    color: var(--g6bet-text-main);
}

.page-promotions__cta-section {
    background-color: var(--g6bet-background);
    color: var(--g6bet-text-main);
}

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

.page-promotions__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--g6bet-gold);
    margin-bottom: 20px;
    font-weight: 700;
}

.page-promotions__section-subtitle {
    font-size: 1.2rem;
    color: var(--g6bet-text-secondary);
    margin-bottom: 40px;
}

.page-promotions__text-block {
    font-size: 1.1rem;
    color: var(--g6bet-text-main);
    margin-bottom: 20px;
    text-align: left;
}

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

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

.page-promotions__card {
    background-color: var(--g6bet-card-bg);
    border: 1px solid var(--g6bet-border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions__card-title {
    font-size: 1.6rem;
    color: var(--g6bet-gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-promotions__card-description {
    font-size: 1rem;
    color: var(--g6bet-text-secondary);
    margin-bottom: 25px;
    flex-grow: 1;
    text-align: left;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.page-promotions__btn-primary {
    background: var(--g6bet-button-gradient);
    color: var(--g6bet-text-main);
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

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

.page-promotions__btn-secondary {
    background: transparent;
    color: var(--g6bet-gold);
    border: 2px solid var(--g6bet-gold);
    margin-left: 20px;
}

.page-promotions__btn-secondary:hover {
    background: var(--g6bet-gold);
    color: var(--g6bet-background);
    transform: translateY(-2px);
}

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

.page-promotions__inline-link:hover {
    color: var(--g6bet-gold);
    text-decoration: underline;
}

.page-promotions__steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.page-promotions__step-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    background-color: var(--g6bet-card-bg);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--g6bet-border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-number {
    background: var(--g6bet-button-gradient);
    color: var(--g6bet-text-main);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

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

.page-promotions__step-title {
    font-size: 1.4rem;
    color: var(--g6bet-gold);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-promotions__step-description {
    font-size: 1rem;
    color: var(--g6bet-text-secondary);
}

.page-promotions__sub-section-title {
    font-size: 1.8rem;
    color: var(--g6bet-gold);
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: 600;
}

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

.page-promotions__list-item {
    font-size: 1.1rem;
    color: var(--g6bet-text-main);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-promotions__list-item::before {
    content: '•';
    color: var(--g6bet-glow);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1;
}

.page-promotions__list-icon {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
}

.page-promotions__list-icon-img {
    
    
    margin-right: 15px;
    vertical-align: middle;
    border-radius: 8px; /* Ensure images are not tiny icons */
    min- /* Enforce minimum size */
    min-
    max-width: 100%; /* Ensure responsiveness */
    height: auto;
}

.page-promotions__list-icon .page-promotions__list-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-left: 0; /* No default bullet */
}

.page-promotions__list-icon .page-promotions__list-item::before {
    content: none;
}

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

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

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--g6bet-text-main);
    cursor: pointer;
    background-color: var(--g6bet-card-bg);
    border-bottom: 1px solid var(--g6bet-divider);
    transition: background-color 0.3s ease;
    list-style: none; /* For details summary */
}

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

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

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

.page-promotions__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--g6bet-glow);
}

.page-promotions__faq-item[open] .page-promotions__faq-question {
    border-bottom: 1px solid var(--g6bet-divider);
}

.page-promotions__faq-answer {
    padding: 20px 25px;
    font-size: 1rem;
    color: var(--g6bet-text-secondary);
    background-color: var(--g6bet-card-bg);
}

.page-promotions__faq-answer p {
    margin-bottom: 0;
}

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

/* --- Responsive Design --- */

/* Tablet */
@media (max-width: 1024px) {
    .page-promotions__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }

    .page-promotions__hero-description {
        font-size: 1.05rem;
    }

    .page-promotions__section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }

    .page-promotions__grid-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .page-promotions__card {
        padding: 25px;
    }

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

    .page-promotions__card-description {
        font-size: 0.95rem;
    }

    .page-promotions__btn-primary,
    .page-promotions__btn-secondary {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .page-promotions__step-item {
        padding: 20px;
    }

    .page-promotions__step-number {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
        margin-right: 15px;
    }

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

    .page-promotions__faq-question {
        padding: 18px 20px;
        font-size: 1.1rem;
    }

    .page-promotions__faq-toggle {
        font-size: 1.6rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .page-promotions {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-promotions__hero-section {
        padding: 10px 15px 40px 15px;
    }

    .page-promotions__hero-content {
        margin-top: 30px;
    }

    .page-promotions__main-title {
        font-size: clamp(2rem, 7vw, 2.5rem);
        margin-bottom: 15px;
    }

    .page-promotions__hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }

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

    .page-promotions__container {
        padding-left: 0px;
        padding-right: 0px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-promotions__section-title {
        font-size: clamp(1.6rem, 6vw, 2rem);
        margin-bottom: 15px;
    }

    .page-promotions__section-subtitle {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }

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

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

    .page-promotions__card {
        padding: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-promotions__card-image {
        height: 180px;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }

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

    .page-promotions__card-description {
        font-size: 0.9rem;
    }

    .page-promotions__btn-primary,
    .page-promotions__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 15px;
        font-size: 1rem;
        margin-left: 0;
    }

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

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

    .page-promotions__step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .page-promotions__step-title {
        font-size: 1.2rem;
    }

    .page-promotions__step-description {
        font-size: 0.95rem;
    }

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

    .page-promotions__list-item {
        font-size: 1rem;
        padding-left: 0;
    }

    .page-promotions__list-item::before {
        left: auto;
        right: auto;
        top: 0;
        transform: translateX(-50%);
    }

    .page-promotions__list-icon .page-promotions__list-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .page-promotions__list-icon-img {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .page-promotions__faq-question {
        padding: 15px 18px;
        font-size: 1rem;
    }

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

    .page-promotions__faq-answer {
        padding: 15px 18px;
        font-size: 0.95rem;
    }

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

    .page-promotions__hero-image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-promotions__section, .page-promotions__card, .page-promotions__container, .page-promotions__hero-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Ensure no overflow */
    }
    .page-promotions__hero-section {
        padding-left: 0px;
        padding-right: 0px;
    }
    .page-promotions__hero-image-wrapper {
        padding-left: 0px;
        padding-right: 0px;
    }

    .page-promotions__video-section {
        padding-top: 10px !important;
    }

    .page-promotions__cta-buttons {
        flex-wrap: wrap !important;
        gap: 10px;
        padding-left: 0;
        padding-right: 0;
    }
    .page-promotions__btn-primary, .page-promotions__btn-secondary {
        padding-left: 15px;
        padding-right: 15px;
    }
}