/* style/blog-bot88-tool-secret-weapon.css */

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

.page-blog-bot88-tool-secret-weapon {
    background-color: var(--background-color-page); /* Page specific background */
    color: var(--text-main); /* Default text color for the page */
}

.page-blog-bot88-tool-secret-weapon__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    text-align: center;
    overflow: hidden;
    background: var(--background-color-page);
}

.page-blog-bot88-tool-secret-weapon__hero-image {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    margin-bottom: 30px;
}

.page-blog-bot88-tool-secret-weapon__hero-content {
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
    color: var(--text-main);
}

.page-blog-bot88-tool-secret-weapon__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-main);
}

.page-blog-bot88-tool-secret-weapon__hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.page-blog-bot88-tool-secret-weapon__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-blog-bot88-tool-secret-weapon__btn-primary,
.page-blog-bot88-tool-secret-weapon__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow long words to break */
    max-width: 100%;
}

.page-blog-bot88-tool-secret-weapon__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
}

.page-blog-bot88-tool-secret-weapon__btn-primary:hover {
    box-shadow: 0 0 15px var(--glow-color);
    transform: translateY(-2px);
}

.page-blog-bot88-tool-secret-weapon__btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-blog-bot88-tool-secret-weapon__btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 0 10px rgba(17, 168, 78, 0.5);
}

.page-blog-bot88-tool-secret-weapon__section {
    padding: 80px 20px;
    text-align: center;
}

.page-blog-bot88-tool-secret-weapon__dark-bg {
    background-color: var(--background-color-page);
    color: var(--text-main);
}

.page-blog-bot88-tool-secret-weapon__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-blog-bot88-tool-secret-weapon__section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 50px;
    font-weight: 700;
    color: inherit;
}

.page-blog-bot88-tool-secret-weapon__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%; /* Ensure width 100% for flex child */
    box-sizing: border-box;
}

.page-blog-bot88-tool-secret-weapon__content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-blog-bot88-tool-secret-weapon__card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
}

.page-blog-bot88-tool-secret-weapon__card-title {
    font-size: 1.7rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-blog-bot88-tool-secret-weapon__card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.page-blog-bot88-tool-secret-weapon__list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    color: var(--text-secondary);
}

.page-blog-bot88-tool-secret-weapon__list-item-strong {
    color: var(--text-main);
}

.page-blog-bot88-tool-secret-weapon__list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-blog-bot88-tool-secret-weapon__list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.page-blog-bot88-tool-secret-weapon__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    margin-top: 50px;
    object-fit: cover;
}

.page-blog-bot88-tool-secret-weapon__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-blog-bot88-tool-secret-weapon__feature-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-blog-bot88-tool-secret-weapon__feature-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-blog-bot88-tool-secret-weapon__feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-blog-bot88-tool-secret-weapon__feature-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    flex-grow: 1;
}

.page-blog-bot88-tool-secret-weapon__card-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--gold-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-blog-bot88-tool-secret-weapon__card-link:hover {
    color: var(--glow-color);
}

.page-blog-bot88-tool-secret-weapon__content-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    text-align: left;
}

.page-blog-bot88-tool-secret-weapon__text-block {
    flex: 1;
}

.page-blog-bot88-tool-secret-weapon__sub-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333333;
    text-align: left;
}

.page-blog-bot88-tool-secret-weapon__paragraph {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #333333;
    text-align: left;
}

.page-blog-bot88-tool-secret-weapon__image-right {
    flex: 0 0 500px;
    height: 375px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.page-blog-bot88-tool-secret-weapon__testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-blog-bot88-tool-secret-weapon__testimonial-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    color: #333333;
}

.page-blog-bot88-tool-secret-weapon__testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555555;
}

.page-blog-bot88-tool-secret-weapon__testimonial-author {
    font-weight: 600;
    color: #333333;
}

.page-blog-bot88-tool-secret-weapon__cta-block {
    background-color: var(--deep-green);
    padding: 40px;
    border-radius: 10px;
    margin-top: 80px;
    color: var(--text-main);
}

.page-blog-bot88-tool-secret-weapon__cta-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--gold-color);
}

.page-blog-bot88-tool-secret-weapon__cta-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.page-blog-bot88-tool-secret-weapon__process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-blog-bot88-tool-secret-weapon__process-step {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
}

.page-blog-bot88-tool-secret-weapon__process-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-blog-bot88-tool-secret-weapon__process-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    flex-grow: 1;
}

.page-blog-bot88-tool-secret-weapon__faq-list {
    margin-top: 50px;
    text-align: left;
}

.page-blog-bot88-tool-secret-weapon__faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    color: #333333;
}

.page-blog-bot88-tool-secret-weapon__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    background-color: #f9f9f9;
    color: #333333;
    list-style: none; /* For details/summary */
}

.page-blog-bot88-tool-secret-weapon__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-bot88-tool-secret-weapon__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-blog-bot88-tool-secret-weapon__faq-item[open] .page-blog-bot88-tool-secret-weapon__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-bot88-tool-secret-weapon__faq-answer {
    padding: 0 20px 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: #555555;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-bot88-tool-secret-weapon__hero-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }

    .page-blog-bot88-tool-secret-weapon__hero-description {
        font-size: 1.1rem;
    }

    .page-blog-bot88-tool-secret-weapon__section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }

    .page-blog-bot88-tool-secret-weapon__content-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .page-blog-bot88-tool-secret-weapon__image-right {
        flex: none;
        width: 100%;
        max-width: 600px;
        height: auto;
        margin: 0 auto;
    }

    .page-blog-bot88-tool-secret-weapon__text-block {
        text-align: center;
    }

    .page-blog-bot88-tool-secret-weapon__sub-title,
    .page-blog-bot88-tool-secret-weapon__paragraph {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-blog-bot88-tool-secret-weapon__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }

    .page-blog-bot88-tool-secret-weapon__hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .page-blog-bot88-tool-secret-weapon__hero-description {
        font-size: 1rem;
    }

    .page-blog-bot88-tool-secret-weapon__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .page-blog-bot88-tool-secret-weapon__btn-primary,
    .page-blog-bot88-tool-secret-weapon__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .page-blog-bot88-tool-secret-weapon__section {
        padding: 50px 15px;
    }

    .page-blog-bot88-tool-secret-weapon__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 30px;
    }

    .page-blog-bot88-tool-secret-weapon__container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-bot88-tool-secret-weapon__content-grid,
    .page-blog-bot88-tool-secret-weapon__feature-grid,
    .page-blog-bot88-tool-secret-weapon__testimonials-grid,
    .page-blog-bot88-tool-secret-weapon__process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-bot88-tool-secret-weapon__card,
    .page-blog-bot88-tool-secret-weapon__feature-card,
    .page-blog-bot88-tool-secret-weapon__testimonial-card,
    .page-blog-bot88-tool-secret-weapon__process-step {
        padding: 20px;
    }

    .page-blog-bot88-tool-secret-weapon__card-title,
    .page-blog-bot88-tool-secret-weapon__feature-title,
    .page-blog-bot88-tool-secret-weapon__sub-title,
    .page-blog-bot88-tool-secret-weapon__cta-title,
    .page-blog-bot88-tool-secret-weapon__process-title {
        font-size: 1.4rem;
    }

    .page-blog-bot88-tool-secret-weapon__card-text,
    .page-blog-bot88-tool-secret-weapon__feature-text,
    .page-blog-bot88-tool-secret-weapon__paragraph,
    .page-blog-bot88-tool-secret-weapon__testimonial-text,
    .page-blog-bot88-tool-secret-weapon__cta-text,
    .page-blog-bot88-tool-secret-weapon__process-text,
    .page-blog-bot88-tool-secret-weapon__faq-answer {
        font-size: 0.95rem;
    }

    .page-blog-bot88-tool-secret-weapon__image-full-width,
    .page-blog-bot88-tool-secret-weapon__image-right,
    .page-blog-bot88-tool-secret-weapon__feature-image,
    .page-blog-bot88-tool-secret-weapon__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }

    .page-blog-bot88-tool-secret-weapon__faq-question {
        font-size: 1rem;
        padding: 15px;
    }

    .page-blog-bot88-tool-secret-weapon__faq-answer {
        padding: 0 15px 15px;
    }

    .page-blog-bot88-tool-secret-weapon__cta-block {
        padding: 30px 20px;
    }
}