/* style/newbie-guide-claim-promotions.css */
.page-newbie-guide-claim-promotions {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-newbie-guide-claim-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-newbie-guide-claim-promotions__hero {
    background: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Darker blue gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-newbie-guide-claim-promotions__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 204, 0, 0.1);
    border-radius: 50%;
    animation: float1 10s infinite ease-in-out;
}

.page-newbie-guide-claim-promotions__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(255, 204, 0, 0.15);
    border-radius: 50%;
    animation: float2 12s infinite ease-in-out;
}

@keyframes float1 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
    100% { transform: translate(0, 0); }
}

@keyframes float2 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -20px); }
    100% { transform: translate(0, 0); }
}

.page-newbie-guide-claim-promotions__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFCC00; /* Golden yellow for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-newbie-guide-claim-promotions__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-newbie-guide-claim-promotions__keyword {
    color: #FFCC00;
    font-weight: bold;
}

.page-newbie-guide-claim-promotions__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-newbie-guide-claim-promotions__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-newbie-guide-claim-promotions__btn--primary {
    background-color: #FFCC00; /* Golden yellow */
    color: #003366; /* Deep blue */
    border: 2px solid #FFCC00;
}

.page-newbie-guide-claim-promotions__btn--primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    transform: translateY(-3px);
}

.page-newbie-guide-claim-promotions__btn--secondary {
    background-color: transparent;
    color: #FFCC00; /* Golden yellow */
    border: 2px solid #FFCC00;
}

.page-newbie-guide-claim-promotions__btn--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-3px);
}

.page-newbie-guide-claim-promotions__section {
    padding: 60px 0;
}

.page-newbie-guide-claim-promotions__section:nth-child(even) {
    background-color: #e9eef2; /* Light blue-grey for contrast */
}

.page-newbie-guide-claim-promotions__section-title {
    font-size: 2.5em;
    color: #003366; /* Deep blue */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-newbie-guide-claim-promotions__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00;
    border-radius: 2px;
}

.page-newbie-guide-claim-promotions__description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #555;
}

.page-newbie-guide-claim-promotions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-newbie-guide-claim-promotions__feature-card,
.page-newbie-guide-claim-promotions__promo-card,
.page-newbie-guide-claim-promotions__step-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-newbie-guide-claim-promotions__feature-card:hover,
.page-newbie-guide-claim-promotions__promo-card:hover,
.page-newbie-guide-claim-promotions__step-card:hover {
    transform: translateY(-10px);
}

.page-newbie-guide-claim-promotions__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-newbie-guide-claim-promotions__promo-image,
.page-newbie-guide-claim-promotions__step-image {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 5px;
}

.page-newbie-guide-claim-promotions__card-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-newbie-guide-claim-promotions__feature-card p,
.page-newbie-guide-claim-promotions__promo-card p {
    color: #666;
}

.page-newbie-guide-claim-promotions__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-newbie-guide-claim-promotions__btn--download-app {
    background-color: #003366;
    color: #FFCC00;
    border: 2px solid #003366;
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 0.95em;
}

.page-newbie-guide-claim-promotions__btn--download-app:hover {
    background-color: #004080;
    border-color: #004080;
    color: #fff;
}

.page-newbie-guide-claim-promotions__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    counter-reset: step-counter;
}

.page-newbie-guide-claim-promotions__step-card {
    position: relative;
    padding-top: 60px; /* Space for step number */
}

.page-newbie-guide-claim-promotions__step-number {
    counter-increment: step-counter;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFCC00; /* Golden yellow */
    color: #003366; /* Deep blue */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    border: 3px solid #003366;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-newbie-guide-claim-promotions__btn--step {
    background-color: #003366;
    color: #FFCC00;
    border: 1px solid #003366;
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 0.9em;
}

.page-newbie-guide-claim-promotions__btn--step:hover {
    background-color: #004080;
    border-color: #004080;
    color: #fff;
}

.page-newbie-guide-claim-promotions__list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto 30px auto;
    text-align: left;
}

.page-newbie-guide-claim-promotions__list li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-left: 5px solid #FFCC00;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    color: #444;
    font-size: 1.05em;
}

.page-newbie-guide-claim-promotions__list li strong {
    color: #003366;
}

.page-newbie-guide-claim-promotions__list--numbered {
    counter-reset: list-item;
}

.page-newbie-guide-claim-promotions__list--numbered li {
    position: relative;
    padding-left: 50px;
    border-left: none;
}

.page-newbie-guide-claim-promotions__list--numbered li::before {
    counter-increment: list-item;
    content: counter(list-item) ".";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #003366;
    color: #FFCC00;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9em;
}

.page-newbie-guide-claim-promotions__illustration {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-newbie-guide-claim-promotions__accordion {
    max-width: 900px;
    margin: 0 auto;
}

.page-newbie-guide-claim-promotions__accordion-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.page-newbie-guide-claim-promotions__accordion-header {
    background-color: #003366;
    color: #fff;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.15em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-newbie-guide-claim-promotions__accordion-header:hover {
    background-color: #004080;
}

.page-newbie-guide-claim-promotions__accordion-header::after {
    content: '\2b'; /* Plus sign */
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-newbie-guide-claim-promotions__accordion-header.active::after {
    content: '\2212'; /* Minus sign */
    transform: rotate(180deg);
}

.page-newbie-guide-claim-promotions__accordion-content {
    padding: 0 25px;
    background-color: #fdfdfd;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #555;
}

.page-newbie-guide-claim-promotions__accordion-content p {
    padding: 15px 0;
    margin: 0;
}

.page-newbie-guide-claim-promotions__accordion-content .page-newbie-guide-claim-promotions__btn--download-app {
    margin-left: 0;
    margin-bottom: 15px;
}

.page-newbie-guide-claim-promotions__btn--cta-final {
    background-color: #FFCC00;
    color: #003366;
    border: 2px solid #FFCC00;
    margin-top: 30px;
}

.page-newbie-guide-claim-promotions__btn--cta-final:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-newbie-guide-claim-promotions__title {
        font-size: 2.8em;
    }
    .page-newbie-guide-claim-promotions__section-title {
        font-size: 2em;
    }
    .page-newbie-guide-claim-promotions__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-newbie-guide-claim-promotions__btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .page-newbie-guide-claim-promotions__hero {
        padding: 60px 0;
    }
    .page-newbie-guide-claim-promotions__title {
        font-size: 2.2em;
    }
    .page-newbie-guide-claim-promotions__subtitle {
        font-size: 1.1em;
    }
    .page-newbie-guide-claim-promotions__section {
        padding: 40px 0;
    }
    .page-newbie-guide-claim-promotions__section-title {
        font-size: 1.8em;
    }
    .page-newbie-guide-claim-promotions__description {
        font-size: 1em;
    }
    .page-newbie-guide-claim-promotions__grid,
    .page-newbie-guide-claim-promotions__promo-grid,
    .page-newbie-guide-claim-promotions__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-newbie-guide-claim-promotions__step-card {
        padding-top: 40px;
    }
    .page-newbie-guide-claim-promotions__step-number {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }
    .page-newbie-guide-claim-promotions__list li {
        padding: 15px 20px;
        font-size: 1em;
    }
    .page-newbie-guide-claim-promotions__list--numbered li {
        padding-left: 45px;
    }
    .page-newbie-guide-claim-promotions__list--numbered li::before {
        width: 25px;
        height: 25px;
        font-size: 0.8em;
        left: 10px;
    }
    .page-newbie-guide-claim-promotions__accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-newbie-guide-claim-promotions__accordion-content {
        padding: 0 20px;
    }
}