/* style/player-community-points-rewards.css */
.page-player-community-points-rewards {
    font-family: 'Arial', sans-serif;
    color: #F5F5F5; /* Light text on dark background */
    background-color: #1A202C;
}

.page-player-community-points-rewards__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-player-community-points-rewards__hero-section {
    background: linear-gradient(135deg, #1A202C, #3A4750);
    padding: 100px 0;
    text-align: center;
    color: #F5F5F5;
    position: relative;
    overflow: hidden;
}

.page-player-community-points-rewards__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
    line-height: 1.2;
}

.page-player-community-points-rewards__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.page-player-community-points-rewards__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Auxiliary color */
    color: #1A202C; /* Dark text on auxiliary background */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-player-community-points-rewards__cta-button:hover {
    background-color: #e5c100; /* Slightly darker auxiliary */
    transform: translateY(-3px);
}

.page-player-community-points-rewards__cta-button--small {
    padding: 12px 25px;
    font-size: 1em;
}

.page-player-community-points-rewards__content-section {
    padding: 80px 0;
    background-color: #1A202C;
}

.page-player-community-points-rewards__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-player-community-points-rewards__sub-section-title {
    font-size: 2em;
    color: #FFD700;
    margin-top: 60px;
    margin-bottom: 30px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-player-community-points-rewards__text-block {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-player-community-points-rewards__text-block .highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-player-community-points-rewards__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-player-community-points-rewards__list li {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
    color: #E0E0E0;
}

.page-player-community-points-rewards__list li::before {
    content: '★';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    top: 0;
}

.page-player-community-points-rewards__numbered-list {
    list-style: decimal;
    padding-left: 20px;
    margin-bottom: 30px;
}

.page-player-community-points-rewards__numbered-list li {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #E0E0E0;
}

.page-player-community-points-rewards__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-player-community-points-rewards__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.page-player-community-points-rewards__image:hover {
    transform: scale(1.02);
}

.page-player-community-points-rewards__image--app {
    max-width: 400px;
    margin-bottom: 30px;
}

.page-player-community-points-rewards__app-download-section {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background-color: #2D3748;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-player-community-points-rewards__faq-container {
    margin-top: 50px;
}

.page-player-community-points-rewards__faq-item {
    background-color: #2D3748;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-player-community-points-rewards__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-player-community-points-rewards__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-player-community-points-rewards__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-player-community-points-rewards__faq-answer {
    font-size: 1.1em;
    line-height: 1.7;
    color: #B0B0B0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.page-player-community-points-rewards__faq-answer.open {
    max-height: 200px; /* Adjust as needed */
}

.page-player-community-points-rewards a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-player-community-points-rewards a:hover {
    color: #e5c100;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-player-community-points-rewards__hero-title {
        font-size: 2.5em;
    }
    .page-player-community-points-rewards__hero-subtitle {
        font-size: 1.1em;
    }
    .page-player-community-points-rewards__section-title {
        font-size: 2em;
    }
    .page-player-community-points-rewards__sub-section-title {
        font-size: 1.5em;
    }
    .page-player-community-points-rewards__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-player-community-points-rewards__text-block, .page-player-community-points-rewards__list li, .page-player-community-points-rewards__numbered-list li, .page-player-community-points-rewards__faq-question, .page-player-community-points-rewards__faq-answer {
        font-size: 1em;
    }
    .page-player-community-points-rewards__hero-section {
        padding: 60px 0;
    }
    .page-player-community-points-rewards__content-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-player-community-points-rewards__hero-title {
        font-size: 2em;
    }
    .page-player-community-points-rewards__hero-subtitle {
        font-size: 1em;
    }
    .page-player-community-points-rewards__section-title {
        font-size: 1.8em;
    }
    .page-player-community-points-rewards__sub-section-title {
        font-size: 1.3em;
    }
    .page-player-community-points-rewards__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-player-community-points-rewards__faq-question {
        font-size: 1.1em;
    }
    .page-player-community-points-rewards__faq-answer {
        font-size: 0.9em;
    }
}