/* style/promotions-welcome-bonus.css */

/* Base styles for the page content */
.page-promotions-welcome-bonus {
    font-family: 'Arial', sans-serif;
    color: #e5dfd3; /* Light text on dark background for readability */
    background-color: #1A202C; /* Main brand dark background */
    line-height: 1.6;
}

.page-promotions-welcome-bonus__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-promotions-welcome-bonus__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a414e 100%); /* Gradient with main brand color */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-promotions-welcome-bonus__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Auxiliary color for emphasis */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-promotions-welcome-bonus__hero-subtitle {
    font-size: 1.5em;
    color: #e5dfd3;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-welcome-bonus__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Auxiliary color for CTA */
    color: #1A202C; /* Dark text on bright button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions-welcome-bonus__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-promotions-welcome-bonus__cta-button--large {
    padding: 20px 40px;
    font-size: 1.5em;
}

/* General Section Styles */
.page-promotions-welcome-bonus__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-promotions-welcome-bonus__section:last-of-type {
    border-bottom: none;
}

.page-promotions-welcome-bonus__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Auxiliary color for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-promotions-welcome-bonus__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e5dfd3;
}

.page-promotions-welcome-bonus__section ul,
.page-promotions-welcome-bonus__section ol {
    list-style-position: inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-promotions-welcome-bonus__section li {
    font-size: 1.05em;
    margin-bottom: 10px;
    color: #e5dfd3;
}

.page-promotions-welcome-bonus__section strong {
    color: #FFD700;
}

/* Bonus Details Section */
.page-promotions-welcome-bonus__bonus-item {
    background-color: #2a303d; /* Slightly lighter dark background */
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #FFD700;
}

.page-promotions-welcome-bonus__item-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

/* Feature Grid for 'Why Choose' section */
.page-promotions-welcome-bonus__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-welcome-bonus__feature-item {
    background-color: #2a303d;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-right: 3px solid #FFD700;
}

/* Images */
.page-promotions-welcome-bonus__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-welcome-bonus__image-left {
    float: left;
    width: 45%;
    margin-right: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-welcome-bonus__image-right {
    float: right;
    width: 45%;
    margin-left: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-welcome-bonus__section::after {
    content: '';
    display: table;
    clear: both;
}

/* Responsible Gaming Text */
.page-promotions-welcome-bonus__responsible-gaming {
    text-align: center;
    font-size: 0.9em;
    color: #767980; /* A slightly lighter dark grey for less emphasis */
    margin-top: 30px;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-welcome-bonus__hero-title {
        font-size: 2.8em;
    }

    .page-promotions-welcome-bonus__hero-subtitle {
        font-size: 1.3em;
    }

    .page-promotions-welcome-bonus__section-title {
        font-size: 2.2em;
    }

    .page-promotions-welcome-bonus__image-left,
    .page-promotions-welcome-bonus__image-right {
        float: none;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .page-promotions-welcome-bonus__hero {
        padding: 80px 0;
    }

    .page-promotions-welcome-bonus__hero-title {
        font-size: 2.2em;
    }

    .page-promotions-welcome-bonus__hero-subtitle {
        font-size: 1.1em;
    }

    .page-promotions-welcome-bonus__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }

    .page-promotions-welcome-bonus__cta-button--large {
        padding: 15px 30px;
        font-size: 1.2em;
    }

    .page-promotions-welcome-bonus__section {
        padding: 40px 0;
    }

    .page-promotions-welcome-bonus__section-title {
        font-size: 1.8em;
    }

    .page-promotions-welcome-bonus__bonus-item,
    .page-promotions-welcome-bonus__feature-item {
        padding: 20px;
    }

    .page-promotions-welcome-bonus__item-title {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .page-promotions-welcome-bonus__hero-title {
        font-size: 1.8em;
    }

    .page-promotions-welcome-bonus__hero-subtitle {
        font-size: 1em;
    }

    .page-promotions-welcome-bonus__section-title {
        font-size: 1.5em;
    }

    .page-promotions-welcome-bonus__section p,
    .page-promotions-welcome-bonus__section li {
        font-size: 0.95em;
    }
}