/* style/promotions-how-to-claim-use-bonus.css */

/* Base styles for the page */
.page-promotions-how-to-claim-use-bonus {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-promotions-how-to-claim-use-bonus__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-promotions-how-to-claim-use-bonus__section-title {
    font-size: 2.5em;
    color: #007bff; /* Main color */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions-how-to-claim-use-bonus__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffc107; /* Accent color */
    border-radius: 2px;
}

.page-promotions-how-to-claim-use-bonus__hero-section {
    background: linear-gradient(135deg, #007bff, #0056b3); /* Darker blue for gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-how-to-claim-use-bonus__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 193, 7, 0.1); /* Light accent */
    border-radius: 50%;
    animation: page-promotions-how-to-claim-use-bonus__pulse 5s infinite ease-in-out;
}

.page-promotions-how-to-claim-use-bonus__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(0, 123, 255, 0.1); /* Light main color */
    border-radius: 50%;
    animation: page-promotions-how-to-claim-use-bonus__pulse 5s infinite ease-in-out reverse;
}

@keyframes page-promotions-how-to-claim-use-bonus__pulse {
    0% { transform: scale(0.8); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.8); opacity: 0.7; }
}

.page-promotions-how-to-claim-use-bonus__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

.page-promotions-how-to-claim-use-bonus__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-promotions-how-to-claim-use-bonus__btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-promotions-how-to-claim-use-bonus__btn--primary {
    background-color: #ffc107; /* Accent color */
    color: #000000; /* High contrast for text */
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-promotions-how-to-claim-use-bonus__btn--primary:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.page-promotions-how-to-claim-use-bonus__btn--secondary {
    background-color: #007bff; /* Main color */
    color: #ffffff;
    border: 2px solid #007bff;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.page-promotions-how-to-claim-use-bonus__btn--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.5);
}

.page-promotions-how-to-claim-use-bonus__content-section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-promotions-how-to-claim-use-bonus__content-section:nth-of-type(odd) {
    background-color: #f0f8ff; /* Lighter blue tint */
}

.page-promotions-how-to-claim-use-bonus__intro p {
    font-size: 1.1em;
    text-align: justify;
    margin-bottom: 15px;
    color: #555;
}

.page-promotions-how-to-claim-use-bonus__text-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-how-to-claim-use-bonus__text-link:hover {
    text-decoration: underline;
    color: #0056b3;
}

.page-promotions-how-to-claim-use-bonus__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-how-to-claim-use-bonus__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #007bff;
}

.page-promotions-how-to-claim-use-bonus__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.page-promotions-how-to-claim-use-bonus__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-promotions-how-to-claim-use-bonus__feature-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-promotions-how-to-claim-use-bonus__feature-item p {
    color: #666;
    font-size: 0.95em;
}

.page-promotions-how-to-claim-use-bonus__step-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-promotions-how-to-claim-use-bonus__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.07);
    border-left: 5px solid #ffc107;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-promotions-how-to-claim-use-bonus__step-title {
    font-size: 1.8em;
    color: #007bff;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-promotions-how-to-claim-use-bonus__step-item p {
    color: #555;
    font-size: 1.05em;
    text-align: justify;
}

.page-promotions-how-to-claim-use-bonus__step-item ul {
    list-style-type: disc;
    margin-left: 20px;
    color: #555;
}

.page-promotions-how-to-claim-use-bonus__step-item li {
    margin-bottom: 8px;
}

.page-promotions-how-to-claim-use-bonus__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page-promotions-how-to-claim-use-bonus__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions-how-to-claim-use-bonus__list li {
    background-color: #fff;
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border-left: 4px solid #007bff;
}

.page-promotions-how-to-claim-use-bonus__list-title {
    font-size: 1.4em;
    color: #007bff;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-promotions-how-to-claim-use-bonus__list li p {
    color: #666;
    font-size: 1em;
    text-align: justify;
}

.page-promotions-how-to-claim-use-bonus__list--styled li {
    border-left: 4px solid #ffc107;
}

.page-promotions-how-to-claim-use-bonus__image-full-width {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page-promotions-how-to-claim-use-bonus__faq-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-promotions-how-to-claim-use-bonus__faq-question {
    font-size: 1.3em;
    color: #007bff;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions-how-to-claim-use-bonus__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #ffc107;
    transition: transform 0.3s ease;
}

.page-promotions-how-to-claim-use-bonus__faq-item.active .page-promotions-how-to-claim-use-bonus__faq-question::after {
    transform: rotate(45deg);
}

.page-promotions-how-to-claim-use-bonus__faq-answer {
    font-size: 1em;
    color: #666;
    display: none;
    margin-top: 10px;
    padding-left: 10px;
    border-left: 3px solid #ffc107;
}

.page-promotions-how-to-claim-use-bonus__faq-item.active .page-promotions-how-to-claim-use-bonus__faq-answer {
    display: block;
}

.page-promotions-how-to-claim-use-bonus__cta-section {
    background: linear-gradient(135deg, #007bff, #0056b3); /* Main color gradient */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    border-radius: 8px;
    margin-top: 50px;
    margin-bottom: 50px;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.page-promotions-how-to-claim-use-bonus__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-promotions-how-to-claim-use-bonus__cta-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions-how-to-claim-use-bonus__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-how-to-claim-use-bonus__hero-subtitle {
        font-size: 1.3em;
    }
    .page-promotions-how-to-claim-use-bonus__section-title {
        font-size: 2em;
    }
    .page-promotions-how-to-claim-use-bonus__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions-how-to-claim-use-bonus__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-how-to-claim-use-bonus__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-how-to-claim-use-bonus__section-title {
        font-size: 1.8em;
    }
    .page-promotions-how-to-claim-use-bonus__feature-item {
        padding: 20px;
    }
    .page-promotions-how-to-claim-use-bonus__step-item {
        padding: 20px;
    }
    .page-promotions-how-to-claim-use-bonus__step-title {
        font-size: 1.5em;
    }
    .page-promotions-how-to-claim-use-bonus__cta-title {
        font-size: 2.2em;
    }
    .page-promotions-how-to-claim-use-bonus__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 576px) {
    .page-promotions-how-to-claim-use-bonus__hero-section {
        padding: 60px 0;
    }
    .page-promotions-how-to-claim-use-bonus__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-how-to-claim-use-bonus__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-how-to-claim-use-bonus__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-how-to-claim-use-bonus__section-title {
        font-size: 1.5em;
    }
    .page-promotions-how-to-claim-use-bonus__grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-how-to-claim-use-bonus__step-title {
        font-size: 1.3em;
    }
    .page-promotions-how-to-claim-use-bonus__cta-title {
        font-size: 1.5em;
    }
    .page-promotions-how-to-claim-use-bonus__cta-description {
        font-size: 0.95em;
    }
}