/* style/promotions-daily-weekly-offers.css */

.page-promotions-daily-weekly-offers {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Default text color on dark backgrounds */
    background-color: #0A244A; /* Main background color */
    line-height: 1.6;
}

.page-promotions-daily-weekly-offers__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-promotions-daily-weekly-offers__hero {
    background: linear-gradient(135deg, #0A244A 0%, #1A3C63 100%); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-daily-weekly-offers__hero-title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-promotions-daily-weekly-offers__hero-description {
    font-size: 1.2em;
    color: #E0E0E0; /* Lighter text for description */
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-daily-weekly-offers__hero-image-wrapper {
    margin: 40px auto;
    max-width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-weekly-offers__hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* General Section Styling */
.page-promotions-daily-weekly-offers__section {
    padding: 60px 0;
    text-align: center;
    background-color: #0A244A; /* Default dark blue background */
    color: #FFFFFF;
}

.page-promotions-daily-weekly-offers__section:nth-of-type(even) {
    background-color: #1A3C63; /* Slightly lighter blue for alternating sections */
}

.page-promotions-daily-weekly-offers__section-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions-daily-weekly-offers__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-promotions-daily-weekly-offers__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-daily-weekly-offers__list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 800px;
    text-align: left;
}

.page-promotions-daily-weekly-offers__list li {
    background-color: #1A3C63;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #E0E0E0;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-weekly-offers__list li strong {
    color: #FFD700;
    margin-right: 10px;
}

.page-promotions-daily-weekly-offers__list li::before {
    content: '⭐'; /* Unicode star or similar icon */
    margin-right: 10px;
    color: #FFD700;
    font-size: 1.2em;
    line-height: 1;
}

.page-promotions-daily-weekly-offers__numbered-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 800px;
    text-align: left;
    counter-reset: list-counter;
}

.page-promotions-daily-weekly-offers__numbered-list li {
    background-color: #1A3C63;
    margin-bottom: 10px;
    padding: 15px 20px 15px 50px; /* Adjust padding for counter */
    border-radius: 8px;
    font-size: 1.1em;
    color: #E0E0E0;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-weekly-offers__numbered-list li::before {
    counter-increment: list-counter;
    content: counter(list-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFD700;
    color: #0A244A;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 0.9em;
}

.page-promotions-daily-weekly-offers__link {
    color: #FFD700; /* Gold for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions-daily-weekly-offers__link:hover {
    color: #FFF;
    text-decoration: underline;
}

/* Buttons */
.page-promotions-daily-weekly-offers__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    margin: 10px;
}

.page-promotions-daily-weekly-offers__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A244A; /* Dark blue text on gold */
}

.page-promotions-daily-weekly-offers__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-weekly-offers__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text for secondary */
    border: 2px solid #FFD700;
}

.page-promotions-daily-weekly-offers__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A244A;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-weekly-offers__cta-buttons {
    margin-top: 40px;
}

/* Offer Cards */
.page-promotions-daily-weekly-offers__offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-promotions-daily-weekly-offers__offer-card {
    background-color: #0A244A; /* Darker background for cards */
    border: 1px solid #FFD700;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-promotions-daily-weekly-offers__offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.page-promotions-daily-weekly-offers__offer-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #FFD700;
}

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

.page-promotions-daily-weekly-offers__offer-description {
    font-size: 1em;
    color: #E0E0E0;
    flex-grow: 1; /* Make description take up available space */
}

/* Responsible Gaming */
.page-promotions-daily-weekly-offers__safety .page-promotions-daily-weekly-offers__paragraph {
    font-size: 1.1em;
    line-height: 1.8;
}

.page-promotions-daily-weekly-offers__image-centered {
    margin: 40px auto;
    max-width: 800px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-weekly-offers__responsive-image {
    width: 100%;
    height: auto;
    display: block;
}

/* FAQ Section */
.page-promotions-daily-weekly-offers__faq {
    background-color: #0A244A;
}

.page-promotions-daily-weekly-offers__faq-item {
    background-color: #1A3C63;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-daily-weekly-offers__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    padding: 20px 25px;
    margin: 0;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-promotions-daily-weekly-offers__faq-question:hover {
    background-color: #2a4c73;
}

.page-promotions-daily-weekly-offers__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-promotions-daily-weekly-offers__faq-item.active .page-promotions-daily-weekly-offers__faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-daily-weekly-offers__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #E0E0E0;
    font-size: 1.1em;
}

.page-promotions-daily-weekly-offers__faq-item.active .page-promotions-daily-weekly-offers__faq-answer {
    max-height: 500px; /* Arbitrary large value to allow content to expand */
    padding-bottom: 20px;
}

.page-promotions-daily-weekly-offers__faq-answer p {
    margin: 0;
    padding-top: 10px;
}

/* Conclusion Section */
.page-promotions-daily-weekly-offers__conclusion {
    background-color: #1A3C63;
    padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-daily-weekly-offers__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-daily-weekly-offers__section-title {
        font-size: 2em;
    }
    .page-promotions-daily-weekly-offers__offers-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions-daily-weekly-offers__hero {
        padding: 60px 0;
    }
    .page-promotions-daily-weekly-offers__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-daily-weekly-offers__hero-description {
        font-size: 1em;
    }
    .page-promotions-daily-weekly-offers__section {
        padding: 40px 0;
    }
    .page-promotions-daily-weekly-offers__section-title {
        font-size: 1.8em;
    }
    .page-promotions-daily-weekly-offers__offer-card {
        padding: 20px;
    }
    .page-promotions-daily-weekly-offers__offer-title {
        font-size: 1.5em;
    }
    .page-promotions-daily-weekly-offers__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-promotions-daily-weekly-offers__faq-answer {
        font-size: 1em;
        padding: 0 20px 15px;
    }
}

@media (max-width: 480px) {
    .page-promotions-daily-weekly-offers__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-daily-weekly-offers__btn {
        padding: 12px 20px;
        font-size: 1em;
        margin: 5px;
    }
    .page-promotions-daily-weekly-offers__offers-grid {
        grid-template-columns: 1fr;
    }
}