:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --background-color: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
}

.page-blog-manclub-official-features {
    background-color: var(--background-color);
    color: var(--text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-blog-manclub-official-features__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0; /* body already handles header offset, only small top padding needed */
    background-color: var(--deep-green);
    overflow: hidden;
}

.page-blog-manclub-official-features__hero-image-wrapper {
    width: 100%;
    max-height: 675px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-blog-manclub-official-features__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Ensure minimum size */
}

.page-blog-manclub-official-features__hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    margin-top: -100px; /* Overlap slightly with image for visual flow, but text is below */
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.page-blog-manclub-official-features__main-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--gold-color);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.page-blog-manclub-official-features__description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-manclub-official-features__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-blog-manclub-official-features__btn-primary,
.page-blog-manclub-official-features__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
}

.page-blog-manclub-official-features__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-manclub-official-features__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

.page-blog-manclub-official-features__btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-blog-manclub-official-features__btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--background-color);
    transform: translateY(-3px);
}

.page-blog-manclub-official-features__section {
    padding: 60px 20px;
    background-color: var(--background-color);
}

.page-blog-manclub-official-features__container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-blog-manclub-official-features__section-title {
    font-size: 2.5rem;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-blog-manclub-official-features p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.page-blog-manclub-official-features__image-content {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    min-height: 200px;
}

.page-blog-manclub-official-features__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-manclub-official-features__feature-card,
.page-blog-manclub-official-features__step-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    color: var(--text-main);
}

.page-blog-manclub-official-features__feature-card:hover,
.page-blog-manclub-official-features__step-card:hover {
    transform: translateY(-5px);
}

.page-blog-manclub-official-features__feature-icon {
    width: 100%;
    height: auto;
    max-width: 250px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
    border-radius: 8px;
}

.page-blog-manclub-official-features__feature-title,
.page-blog-manclub-official-features__advantage-title,
.page-blog-manclub-official-features__step-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-manclub-official-features__advantage-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-blog-manclub-official-features__advantage-item:last-child {
    margin-bottom: 0;
}

.page-blog-manclub-official-features__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-blog-manclub-official-features__step-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: var(--button-gradient);
    color: var(--text-main);
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-manclub-official-features__faq-section {
    background-color: var(--deep-green);
}

.page-blog-manclub-official-features__faq-list {
    margin-top: 30px;
}

.page-blog-manclub-official-features__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-main);
}

.page-blog-manclub-official-features__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
    list-style: none;
}

.page-blog-manclub-official-features__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-manclub-official-features__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    color: var(--gold-color);
    transition: transform 0.3s ease;
}

.page-blog-manclub-official-features__faq-item[open] .page-blog-manclub-official-features__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-manclub-official-features__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.page-blog-manclub-official-features__conclusion-section {
    text-align: center;
    padding-bottom: 80px;
}

.page-blog-manclub-official-features__cta-buttons--bottom {
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-manclub-official-features__hero-content {
        margin-top: -60px;
        padding: 30px;
    }
    .page-blog-manclub-official-features__main-title {
        font-size: clamp(1.8rem, 5vw, 2.8rem);
    }
    .page-blog-manclub-official-features__section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .page-blog-manclub-official-features__hero-section {
        padding: 10px 0 40px 0;
    }
    .page-blog-manclub-official-features__hero-content {
        margin-top: -40px;
        padding: 20px;
        max-width: 90%;
    }
    .page-blog-manclub-official-features__main-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }
    .page-blog-manclub-official-features__description {
        font-size: 1rem;
    }
    .page-blog-manclub-official-features__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    .page-blog-manclub-official-features__btn-primary,
    .page-blog-manclub-official-features__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .page-blog-manclub-official-features__section {
        padding: 40px 15px;
    }
    .page-blog-manclub-official-features__container {
        padding: 0 10px;
    }
    .page-blog-manclub-official-features__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .page-blog-manclub-official-features p {
        font-size: 0.95rem;
    }

    /* Mobile image responsive adaptation */
    .page-blog-manclub-official-features img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }
    .page-blog-manclub-official-features__section,
    .page-blog-manclub-official-features__card,
    .page-blog-manclub-official-features__container,
    .page-blog-manclub-official-features__feature-card,
    .page-blog-manclub-official-features__step-card,
    .page-blog-manclub-official-features__advantage-item,
    .page-blog-manclub-official-features__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .page-blog-manclub-official-features__hero-image-wrapper {
        padding: 0;
    }
    .page-blog-manclub-official-features__hero-image {
        width: 100%;
        height: auto;
    }

    .page-blog-manclub-official-features__feature-grid,
    .page-blog-manclub-official-features__guide-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-blog-manclub-official-features__feature-icon {
        max-width: 80%;
    }
    .page-blog-manclub-official-features__faq-question {
        font-size: 1.1rem;
        padding: 15px;
    }
    .page-blog-manclub-official-features__faq-answer {
        padding: 0 15px 15px 15px;
    }
    .page-blog-manclub-official-features__video-section {
        padding-top: 10px !important;
    }
}

@media (max-width: 480px) {
    .page-blog-manclub-official-features__hero-content {
        margin-top: -20px;
        padding: 15px;
    }
    .page-blog-manclub-official-features__main-title {
        font-size: clamp(1.2rem, 7vw, 1.8rem);
    }
    .page-blog-manclub-official-features__section-title {
        font-size: 1.5rem;
    }
    .page-blog-manclub-official-features__feature-title,
    .page-blog-manclub-official-features__advantage-title,
    .page-blog-manclub-official-features__step-title {
        font-size: 1.4rem;
    }
}