/* style/promotions-daily-check-in.css */

.page-promotions-daily-check-in {
    font-family: 'Arial', sans-serif;
    color: #F7FAFC; /* Light text on dark background */
    background-color: #1A202C; /* Main dark background */
}

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

.page-promotions-daily-check-in__container--center {
    text-align: center;
}

.page-promotions-daily-check-in__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a0f0f 100%); /* Dark gradient for hero */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #E53E3E;
}

.page-promotions-daily-check-in__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract_pattern,dark_red,geometric]');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.page-promotions-daily-check-in__hero .page-promotions-daily-check-in__container {
    position: relative;
    z-index: 1;
}

.page-promotions-daily-check-in__title {
    font-size: 3.5em;
    color: #F7FAFC;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-daily-check-in__subtitle {
    font-size: 1.5em;
    color: #CBD5E0; /* Lighter grey for contrast */
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-daily-check-in__cta-button {
    display: inline-block;
    background-color: #E53E3E; /* Accent red */
    color: #F7FAFC;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 5px 15px rgba(229, 62, 62, 0.4);
}

.page-promotions-daily-check-in__cta-button:hover {
    background-color: #c53030; /* Darker red on hover */
    transform: translateY(-3px);
}

.page-promotions-daily-check-in__cta-button--small {
    padding: 12px 25px;
    font-size: 1.1em;
}

.page-promotions-daily-check-in__cta-button--large {
    padding: 18px 35px;
    font-size: 1.3em;
}

.page-promotions-daily-check-in__cta-button--secondary {
    background-color: #2D3748; /* Darker grey for secondary */
    margin-left: 20px;
    box-shadow: 0 5px 15px rgba(45, 55, 72, 0.4);
}

.page-promotions-daily-check-in__cta-button--secondary:hover {
    background-color: #1A202C; /* Even darker on hover */
}

.page-promotions-daily-check-in__section {
    padding: 80px 0;
    background-color: #1A202C;
    border-bottom: 1px solid #2D3748;
}

.page-promotions-daily-check-in__section:nth-of-type(even) {
    background-color: #2D3748; /* Slightly lighter dark for alternating sections */
}

.page-promotions-daily-check-in__section-title {
    font-size: 2.8em;
    color: #F7FAFC;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

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

.page-promotions-daily-check-in__text {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #CBD5E0;
    text-align: justify;
}

.page-promotions-daily-check-in__text a {
    color: #E53E3E;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-daily-check-in__text a:hover {
    text-decoration: underline;
}

.text-highlight {
    color: #E53E3E;
    font-weight: bold;
}

.page-promotions-daily-check-in__image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions-daily-check-in__image--large {
    max-width: 1000px;
}

.page-promotions-daily-check-in__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-promotions-daily-check-in__list li {
    background-color: #2D3748;
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #E53E3E;
}

.page-promotions-daily-check-in__list-title {
    font-size: 1.8em;
    color: #F7FAFC;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.page-promotions-daily-check-in__rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-promotions-daily-check-in__reward-item {
    background-color: #2D3748;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #E53E3E;
    transition: transform 0.3s ease;
}

.page-promotions-daily-check-in__reward-item:hover {
    transform: translateY(-10px);
}

.page-promotions-daily-check-in__reward-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(229, 62, 62, 0.6));
}

.page-promotions-daily-check-in__reward-title {
    font-size: 1.5em;
    color: #F7FAFC;
    margin-bottom: 10px;
}

.page-promotions-daily-check-in__reward-desc {
    font-size: 1em;
    color: #CBD5E0;
    line-height: 1.6;
}

.page-promotions-daily-check-in__note {
    margin-top: 40px;
    padding: 20px;
    background-color: #1A202C;
    border-left: 5px solid #E53E3E;
    border-radius: 5px;
    font-style: italic;
}

.page-promotions-daily-check-in__feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-promotions-daily-check-in__feature-list li {
    background-color: #2D3748;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-right: 3px solid #E53E3E;
}

.page-promotions-daily-check-in__accordion {
    margin-top: 40px;
}

.page-promotions-daily-check-in__accordion-item {
    background-color: #2D3748;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-check-in__accordion-header {
    background-color: #E53E3E; /* Accent red for header */
    color: #F7FAFC;
    padding: 20px 30px;
    width: 100%;
    text-align: left;
    font-size: 1.3em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-promotions-daily-check-in__accordion-header:hover {
    background-color: #c53030;
}

.page-promotions-daily-check-in__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-promotions-daily-check-in__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-daily-check-in__accordion-content {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #1A202C;
}

.page-promotions-daily-check-in__accordion-content p {
    padding: 20px 0;
    margin: 0;
    color: #CBD5E0;
}

.page-promotions-daily-check-in__button-group {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-daily-check-in__title {
        font-size: 2.8em;
    }
    .page-promotions-daily-check-in__subtitle {
        font-size: 1.3em;
    }
    .page-promotions-daily-check-in__section-title {
        font-size: 2.2em;
    }
    .page-promotions-daily-check-in__rewards-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-promotions-daily-check-in__feature-list {
        grid-template-columns: 1fr;
    }
    .page-promotions-daily-check-in__button-group {
        flex-direction: column;
        align-items: center;
    }
    .page-promotions-daily-check-in__cta-button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .page-promotions-daily-check-in__hero {
        padding: 80px 0;
    }
    .page-promotions-daily-check-in__title {
        font-size: 2.2em;
    }
    .page-promotions-daily-check-in__subtitle {
        font-size: 1.1em;
    }
    .page-promotions-daily-check-in__section {
        padding: 60px 0;
    }
    .page-promotions-daily-check-in__section-title {
        font-size: 1.8em;
    }
    .page-promotions-daily-check-in__text {
        font-size: 1em;
    }
    .page-promotions-daily-check-in__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-daily-check-in__list li,
    .page-promotions-daily-check-in__reward-item,
    .page-promotions-daily-check-in__feature-list li {
        padding: 20px;
    }
    .page-promotions-daily-check-in__list-title,
    .page-promotions-daily-check-in__reward-title {
        font-size: 1.4em;
    }
    .page-promotions-daily-check-in__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-promotions-daily-check-in__hero {
        padding: 60px 0;
    }
    .page-promotions-daily-check-in__title {
        font-size: 1.8em;
    }
    .page-promotions-daily-check-in__subtitle {
        font-size: 0.9em;
    }
    .page-promotions-daily-check-in__section {
        padding: 40px 0;
    }
    .page-promotions-daily-check-in__section-title {
        font-size: 1.5em;
    }
    .page-promotions-daily-check-in__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-promotions-daily-check-in__cta-button--secondary {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-promotions-daily-check-in__rewards-grid {
        grid-template-columns: 1fr;
    }
}