.page-zowin-community-events-rewards {
    font-family: Arial, sans-serif;
    color: #E0E0E0;
    background-color: #0F1D33; /* Darker background to ensure contrast with elements */
}

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

/* Hero Section */
.page-zowin-community-events-rewards__hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #FFFFFF;
}

.page-zowin-community-events-rewards__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-zowin-community-events-rewards__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 43, 76, 0.8), rgba(255, 215, 0, 0.4)); /* Blend main and accent colors */
    z-index: 2;
}

.page-zowin-community-events-rewards__hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 20px;
}

.page-zowin-community-events-rewards__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Accent color for main title */
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-zowin-community-events-rewards__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #FFFFFF;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* General Section Styles */
.page-zowin-community-events-rewards__section {
    padding: 60px 0;
    background-color: #1A2B4C; /* Main brand color for sections */
    margin-bottom: 20px; /* Space between sections */
    border-radius: 8px;
}

.page-zowin-community-events-rewards__section:nth-child(even) {
    background-color: #0F1D33; /* Alternate background for visual separation */
}

.page-zowin-community-events-rewards__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Accent color for section titles */
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

.page-zowin-community-events-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-zowin-community-events-rewards__section-description {
    font-size: 1.1em;
    color: #E0E0E0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* Buttons */
.page-zowin-community-events-rewards__btn {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-zowin-community-events-rewards__btn--primary {
    background-color: #FFD700; /* Accent color */
    color: #1A2B4C; /* Main color for text */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-zowin-community-events-rewards__btn--primary:hover {
    background-color: #E6C200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-zowin-community-events-rewards__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(26, 43, 76, 0.4);
}

.page-zowin-community-events-rewards__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2B4C;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* Benefits Grid */
.page-zowin-community-events-rewards__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-zowin-community-events-rewards__benefit-item {
    background-color: #2A3B5C; /* Slightly lighter shade of main color */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    color: #E0E0E0;
}

.page-zowin-community-events-rewards__benefit-item:hover {
    transform: translateY(-5px);
    background-color: #3A4C6D;
}

.page-zowin-community-events-rewards__benefit-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-zowin-community-events-rewards__benefit-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-zowin-community-events-rewards__benefit-text {
    font-size: 1em;
    line-height: 1.6;
}

/* Activity Cards */
.page-zowin-community-events-rewards__activity-card {
    display: flex;
    align-items: center;
    background-color: #2A3B5C;
    border-radius: 10px;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    color: #E0E0E0;
}

.page-zowin-community-events-rewards__activity-card:last-child {
    margin-bottom: 0;
}

.page-zowin-community-events-rewards__activity-image {
    width: 40%;
    height: 300px;
    object-fit: cover;
}

.page-zowin-community-events-rewards__activity-content {
    width: 60%;
    padding: 30px;
}

.page-zowin-community-events-rewards__activity-card--reversed {
    flex-direction: row-reverse;
}

.page-zowin-community-events-rewards__activity-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-zowin-community-events-rewards__activity-content p {
    line-height: 1.7;
    font-size: 1.05em;
}

/* Rewards Grid */
.page-zowin-community-events-rewards__rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-zowin-community-events-rewards__reward-item {
    background-color: #2A3B5C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: #E0E0E0;
}

.page-zowin-community-events-rewards__reward-icon {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.page-zowin-community-events-rewards__reward-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    text-align: center;
}

.page-zowin-community-events-rewards__reward-item ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-zowin-community-events-rewards__reward-item li {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 1em;
    position: relative;
    padding-left: 25px;
}

.page-zowin-community-events-rewards__reward-item li::before {
    content: '✓';
    color: #FFD700;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* How-To List */
.page-zowin-community-events-rewards__how-to-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.page-zowin-community-events-rewards__how-to-list li {
    background-color: #2A3B5C;
    margin-bottom: 15px;
    padding: 20px 30px;
    border-radius: 8px;
    font-size: 1.2em;
    color: #E0E0E0;
    position: relative;
    padding-left: 60px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-zowin-community-events-rewards__how-to-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFD700;
    color: #1A2B4C;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1em;
}

.page-zowin-community-events-rewards__how-to-list li strong {
    color: #FFD700;
}

/* Responsibility List */
.page-zowin-community-events-rewards__responsibility-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.page-zowin-community-events-rewards__responsibility-list li {
    background-color: #2A3B5C;
    margin-bottom: 15px;
    padding: 20px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #E0E0E0;
    position: relative;
    padding-left: 50px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-zowin-community-events-rewards__responsibility-list li::before {
    content: '★';
    color: #FFD700;
    font-weight: bold;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
}

.page-zowin-community-events-rewards__responsibility-list li strong {
    color: #FFD700;
}

/* Call to Action Section */
.page-zowin-community-events-rewards__section--cta {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #1A2B4C, #0F1D33);
}

.page-zowin-community-events-rewards__cta-buttons {
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-zowin-community-events-rewards__hero {
        height: 500px;
    }

    .page-zowin-community-events-rewards__hero-title {
        font-size: 2.8em;
    }

    .page-zowin-community-events-rewards__hero-subtitle {
        font-size: 1.2em;
    }

    .page-zowin-community-events-rewards__section-title {
        font-size: 2em;
    }

    .page-zowin-community-events-rewards__activity-card {
        flex-direction: column;
    }

    .page-zowin-community-events-rewards__activity-card--reversed {
        flex-direction: column;
    }

    .page-zowin-community-events-rewards__activity-image,
    .page-zowin-community-events-rewards__activity-content {
        width: 100%;
    }

    .page-zowin-community-events-rewards__activity-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .page-zowin-community-events-rewards__hero {
        height: 400px;
    }

    .page-zowin-community-events-rewards__hero-title {
        font-size: 2.2em;
    }

    .page-zowin-community-events-rewards__hero-subtitle {
        font-size: 1em;
    }

    .page-zowin-community-events-rewards__section {
        padding: 40px 0;
    }

    .page-zowin-community-events-rewards__section-title {
        font-size: 1.8em;
    }

    .page-zowin-community-events-rewards__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-zowin-community-events-rewards__benefits-grid,
    .page-zowin-community-events-rewards__rewards-grid {
        grid-template-columns: 1fr;
    }

    .page-zowin-community-events-rewards__benefit-item,
    .page-zowin-community-events-rewards__reward-item {
        padding: 20px;
    }

    .page-zowin-community-events-rewards__activity-content {
        padding: 20px;
    }

    .page-zowin-community-events-rewards__activity-title {
        font-size: 1.6em;
    }

    .page-zowin-community-events-rewards__how-to-list li,
    .page-zowin-community-events-rewards__responsibility-list li {
        font-size: 1em;
        padding: 15px 20px 15px 50px;
    }

    .page-zowin-community-events-rewards__how-to-list li::before,
    .page-zowin-community-events-rewards__responsibility-list li::before {
        left: 15px;
        width: 25px;
        height: 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-zowin-community-events-rewards__hero-title {
        font-size: 1.8em;
    }

    .page-zowin-community-events-rewards__hero-subtitle {
        font-size: 0.9em;
    }

    .page-zowin-community-events-rewards__section-title {
        font-size: 1.5em;
    }

    .page-zowin-community-events-rewards__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-zowin-community-events-rewards__benefit-title {
        font-size: 1.3em;
    }
    .page-zowin-community-events-rewards__activity-title {
        font-size: 1.4em;
    }
    .page-zowin-community-events-rewards__reward-title {
        font-size: 1.5em;
    }
}