/* style/promotions-weekly-reload.css */

/* General Styles for this page */
.page-promotions-weekly-reload {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-promotions-weekly-reload__section {
    padding: 60px 0;
    text-align: center;
}

.page-promotions-weekly-reload__section:nth-child(even) {
    background-color: #e9ecef;
}

.page-promotions-weekly-reload__section-title {
    font-size: 2.5em;
    color: #0056b3; /* Darker blue for better contrast */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions-weekly-reload__section-description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-promotions-weekly-reload__hero {
    background: linear-gradient(135deg, #007bff, #28a745);
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-weekly-reload__hero-content {
    z-index: 1;
    max-width: 800px;
}

.page-promotions-weekly-reload__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.page-promotions-weekly-reload__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.page-promotions-weekly-reload__cta-button {
    display: inline-block;
    background-color: #ff8400; /* Complementary orange for strong CTA */
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-promotions-weekly-reload__cta-button:hover {
    background-color: #e67300; /* Darker orange on hover */
    transform: translateY(-2px);
}

.page-promotions-weekly-reload__hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.2;
}

.page-promotions-weekly-reload__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%) blur(3px);
    transform: scale(1.1);
}

/* How It Works Section */
.page-promotions-weekly-reload__how-it-works .page-promotions-weekly-reload__steps {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.page-promotions-weekly-reload__step-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-promotions-weekly-reload__step-item:hover {
    transform: translateY(-10px);
}

.page-promotions-weekly-reload__step-icon {
    width: 60px;
    height: 60px;
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin: 0 auto 20px auto;
}

.page-promotions-weekly-reload__step-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-promotions-weekly-reload__step-text {
    color: #666;
    margin-bottom: 20px;
}

.page-promotions-weekly-reload__step-button {
    display: inline-block;
    background-color: #28a745; /* Secondary brand color */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-promotions-weekly-reload__step-button:hover {
    background-color: #218838;
}

.page-promotions-weekly-reload__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Bonus Details Section */
.page-promotions-weekly-reload__bonus-details .page-promotions-weekly-reload__details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-promotions-weekly-reload__detail-item {
    background-color: #fff;
    border-left: 5px solid #007bff;
    padding: 25px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

.page-promotions-weekly-reload__detail-title {
    font-size: 1.3em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-promotions-weekly-reload__detail-text {
    color: #666;
}

.page-promotions-weekly-reload__details-image {
    max-width: 70%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* Terms & Conditions Section */
.page-promotions-weekly-reload__terms-conditions .page-promotions-weekly-reload__list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.page-promotions-weekly-reload__terms-conditions .page-promotions-weekly-reload__list li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 40px;
    color: #444;
}

.page-promotions-weekly-reload__terms-conditions .page-promotions-weekly-reload__list li::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 15px;
    top: 15px;
    font-size: 1.2em;
}

/* Why 90ok Section */
.page-promotions-weekly-reload__why-90ok {
    background-color: #f1f7fe;
}

.page-promotions-weekly-reload__why-90ok .page-promotions-weekly-reload__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-promotions-weekly-reload__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: box-shadow 0.3s ease;
}

.page-promotions-weekly-reload__feature-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions-weekly-reload__feature-title {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-promotions-weekly-reload__feature-text {
    color: #666;
}

.page-promotions-weekly-reload__why-90ok-image {
    max-width: 60%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    margin-top: 30px;
}

/* FAQ Section */
.page-promotions-weekly-reload__faq .page-promotions-weekly-reload__faq-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px 30px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-weekly-reload__faq-question {
    font-size: 1.2em;
    color: #007bff;
    cursor: pointer;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions-weekly-reload__faq-answer {
    color: #555;
    padding-left: 15px;
    border-left: 3px solid #28a745;
    margin-top: 10px;
}

/* Final CTA Section */
.page-promotions-weekly-reload__cta-final {
    background: linear-gradient(135deg, #0056b3, #007bff);
    color: #fff;
    padding: 80px 20px;
}

.page-promotions-weekly-reload__cta-final-content {
    max-width: 900px;
}

.page-promotions-weekly-reload__cta-final .page-promotions-weekly-reload__section-title {
    color: #fff;
    font-size: 2.8em;
}

.page-promotions-weekly-reload__cta-final .page-promotions-weekly-reload__section-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2em;
}

.page-promotions-weekly-reload__cta-button--large {
    padding: 18px 40px;
    font-size: 1.4em;
    background-color: #ff8400; /* Reusing strong CTA color */
}

.page-promotions-weekly-reload__cta-button--large:hover {
    background-color: #e67300;
}

.page-promotions-weekly-reload__small-text {
    font-size: 0.9em;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-weekly-reload__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-weekly-reload__hero-subtitle {
        font-size: 1.2em;
    }
    .page-promotions-weekly-reload__section-title {
        font-size: 2em;
    }
    .page-promotions-weekly-reload__how-it-works .page-promotions-weekly-reload__steps {
        flex-direction: column;
        align-items: center;
    }
    .page-promotions-weekly-reload__detail-item {
        border-left: none;
        border-bottom: 5px solid #007bff;
        padding-bottom: 20px;
    }
    .page-promotions-weekly-reload__details-image,
    .page-promotions-weekly-reload__why-90ok-image {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .page-promotions-weekly-reload__hero {
        padding: 80px 15px;
    }
    .page-promotions-weekly-reload__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-weekly-reload__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-weekly-reload__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-promotions-weekly-reload__section {
        padding: 40px 0;
    }
    .page-promotions-weekly-reload__section-title {
        font-size: 1.8em;
    }
    .page-promotions-weekly-reload__section-description {
        font-size: 1em;
    }
    .page-promotions-weekly-reload__step-item,
    .page-promotions-weekly-reload__detail-item,
    .page-promotions-weekly-reload__feature-item {
        min-width: unset;
        width: 100%;
    }
    .page-promotions-weekly-reload__cta-final .page-promotions-weekly-reload__section-title {
        font-size: 2.2em;
    }
    .page-promotions-weekly-reload__cta-button--large {
        padding: 15px 30px;
        font-size: 1.2em;
    }
    .page-promotions-weekly-reload__terms-conditions .page-promotions-weekly-reload__list li {
        padding-left: 20px;
        text-align: left;
    }
    .page-promotions-weekly-reload__terms-conditions .page-promotions-weekly-reload__list li::before {
        left: 0;
        top: 15px;
    }
}

@media (max-width: 480px) {
    .page-promotions-weekly-reload__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-weekly-reload__hero-subtitle {
        font-size: 0.9em;
    }
    .page-promotions-weekly-reload__section-title {
        font-size: 1.5em;
    }
    .page-promotions-weekly-reload__cta-final .page-promotions-weekly-reload__section-title {
        font-size: 1.8em;
    }
    .page-promotions-weekly-reload__cta-button--large {
        font-size: 1.1em;
        padding: 12px 25px;
    }
}