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

.page-promotions-first-deposit-bonus {
    font-family: Arial, sans-serif;
    color: var(--text-main); /* Default text color for the page content */
    background-color: var(--background-color-body); /* Set body background based on custom colors */
}

.page-promotions-first-deposit-bonus__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-promotions-first-deposit-bonus__section {
    padding: 60px 0;
    text-align: center;
}

.page-promotions-first-deposit-bonus__section-title {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--text-main);
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.page-promotions-first-deposit-bonus__paragraph {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-promotions-first-deposit-bonus__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px 0; /* Small top padding, larger bottom for content */
    overflow: hidden;
    background-color: var(--deep-green);
}

.page-promotions-first-deposit-bonus__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 675px;
    filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-promotions-first-deposit-bonus__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 20px;
    box-sizing: border-box;
}

.page-promotions-first-deposit-bonus__main-title {
    font-size: clamp(36px, 5vw, 60px);
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.1;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.page-promotions-first-deposit-bonus__hero-description {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-main);
    margin-bottom: 30px;
    line-height: 1.5;
    text-shadow: 0 0 5px rgba(0,0,0,0.3);
}

/* Buttons */
.page-promotions-first-deposit-bonus__btn-primary,
.page-promotions-first-deposit-bonus__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
}

.page-promotions-first-deposit-bonus__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.page-promotions-first-deposit-bonus__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    opacity: 0.9;
}

.page-promotions-first-deposit-bonus__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-promotions-first-deposit-bonus__btn-secondary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

/* How-to-Claim Section */
.page-promotions-first-deposit-bonus__how-to-claim {
    background-color: var(--background-color-body);
}

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

.page-promotions-first-deposit-bonus__step-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    border: 1px solid var(--divider-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promotions-first-deposit-bonus__step-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions-first-deposit-bonus__step-title {
    font-size: 24px;
    color: var(--text-main);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-first-deposit-bonus__step-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* Terms & Conditions Section */
.page-promotions-first-deposit-bonus__terms-conditions {
    background-color: var(--deep-green);
}

.page-promotions-first-deposit-bonus__terms-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-first-deposit-bonus__list-item {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-promotions-first-deposit-bonus__list-item strong {
    color: var(--text-main);
}

/* Applicable Games Section */
.page-promotions-first-deposit-bonus__applicable-games {
    background-color: var(--background-color-body);
}

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

.page-promotions-first-deposit-bonus__game-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-main);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid var(--divider-color);
    display: flex;
    flex-direction: column;
}

.page-promotions-first-deposit-bonus__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.page-promotions-first-deposit-bonus__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-promotions-first-deposit-bonus__game-title {
    font-size: 22px;
    margin: 15px 15px 10px 15px;
    color: var(--gold-color);
    font-weight: bold;
}

.page-promotions-first-deposit-bonus__game-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
    padding: 0 15px 20px 15px;
    flex-grow: 1;
}

/* Optimization Tips Section */
.page-promotions-first-deposit-bonus__optimization-tips {
    background-color: var(--deep-green);
}

.page-promotions-first-deposit-bonus__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section */
.page-promotions-first-deposit-bonus__faq {
    background-color: var(--background-color-body);
}

.page-promotions-first-deposit-bonus__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-promotions-first-deposit-bonus__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--divider-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promotions-first-deposit-bonus__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
    color: var(--text-main);
    cursor: pointer;
    background-color: rgba(0,0,0,0.1);
    border-bottom: 1px solid var(--divider-color);
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-promotions-first-deposit-bonus__faq-question::-webkit-details-marker {
    display: none;
}

.page-promotions-first-deposit-bonus__faq-question:hover {
    background-color: rgba(0,0,0,0.2);
}

.page-promotions-first-deposit-bonus__faq-qtext {
    flex-grow: 1;
}

.page-promotions-first-deposit-bonus__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-left: 15px;
}

.page-promotions-first-deposit-bonus__faq-answer {
    padding: 15px 20px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Call to Action Section */
.page-promotions-first-deposit-bonus__call-to-action {
    padding-bottom: 80px;
    background-color: var(--deep-green);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions-first-deposit-bonus__hero-content {
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .page-promotions-first-deposit-bonus__section {
        padding: 40px 0;
    }

    .page-promotions-first-deposit-bonus__container {
        padding: 0 15px; /* Apply padding to container */
        width: 100% !important; /* Ensure container fills width */
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-promotions-first-deposit-bonus__section-title {
        font-size: 28px;
    }

    .page-promotions-first-deposit-bonus__paragraph {
        font-size: 15px;
    }

    .page-promotions-first-deposit-bonus__hero-section {
        padding-bottom: 40px;
    }

    .page-promotions-first-deposit-bonus__hero-content {
        max-width: 90%;
        padding: 15px;
    }

    .page-promotions-first-deposit-bonus__main-title {
        font-size: 32px;
    }

    .page-promotions-first-deposit-bonus__hero-description {
        font-size: 16px;
    }

    .page-promotions-first-deposit-bonus__btn-primary,
    .page-promotions-first-deposit-bonus__btn-secondary {
        font-size: 16px;
        padding: 12px 25px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-bottom: 10px;
    }

    .page-promotions-first-deposit-bonus__steps-grid,
    .page-promotions-first-deposit-bonus__games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-promotions-first-deposit-bonus__step-card,
    .page-promotions-first-deposit-bonus__game-card {
        padding: 20px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-promotions-first-deposit-bonus__step-title,
    .page-promotions-first-deposit-bonus__game-title {
        font-size: 20px;
    }

    .page-promotions-first-deposit-bonus__list-item {
        font-size: 15px;
        padding: 15px;
    }

    .page-promotions-first-deposit-bonus__faq-question {
        font-size: 16px;
        padding: 15px;
    }

    .page-promotions-first-deposit-bonus__faq-answer {
        font-size: 15px;
        padding: 10px 15px;
    }

    /* Image, Video, Container Responsive Rules */
    .page-promotions-first-deposit-bonus img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-promotions-first-deposit-bonus video,
    .page-promotions-first-deposit-bonus__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-promotions-first-deposit-bonus__hero-section,
    .page-promotions-first-deposit-bonus__introduction .page-promotions-first-deposit-bonus__container,
    .page-promotions-first-deposit-bonus__how-to-claim .page-promotions-first-deposit-bonus__container,
    .page-promotions-first-deposit-bonus__terms-conditions .page-promotions-first-deposit-bonus__container,
    .page-promotions-first-deposit-bonus__applicable-games .page-promotions-first-deposit-bonus__container,
    .page-promotions-first-deposit-bonus__optimization-tips .page-promotions-first-deposit-bonus__container,
    .page-promotions-first-deposit-bonus__faq .page-promotions-first-deposit-bonus__container,
    .page-promotions-first-deposit-bonus__call-to-action .page-promotions-first-deposit-bonus__container,
    .page-promotions-first-deposit-bonus__video-section,
    .page-promotions-first-deposit-bonus__video-container,
    .page-promotions-first-deposit-bonus__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow: hidden !important;
    }

    .page-promotions-first-deposit-bonus__video-section {
        padding-top: 10px !important; /* body already handles --header-offset */
    }
    .page-promotions-first-deposit-bonus__cta-buttons {
        display: flex;
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .page-promotions-first-deposit-bonus__main-title {
        font-size: 28px;
    }
    .page-promotions-first-deposit-bonus__hero-description {
        font-size: 15px;
    }
}