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

.page-blog-why-77ball-is-top-choice {
    color: var(--color-text-main); /* Light text for dark background */
    background-color: var(--color-background);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-blog-why-77ball-is-top-choice__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-why-77ball-is-top-choice__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0 60px 0; /* Small top padding, more bottom padding */
    text-align: center;
    overflow: hidden;
}

.page-blog-why-77ball-is-top-choice__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit hero image height */
    overflow: hidden;
    margin-bottom: 20px;
}

.page-blog-why-77ball-is-top-choice__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Ensure minimum size */
}

.page-blog-why-77ball-is-top-choice__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.page-blog-why-77ball-is-top-choice__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Use clamp for H1 */
    color: var(--color-gold);
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-blog-why-77ball-is-top-choice__hero-description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
}

.page-blog-why-77ball-is-top-choice__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-blog-why-77ball-is-top-choice__cta-buttons--center {
    margin-top: 40px;
}

.page-blog-why-77ball-is-top-choice__btn-primary,
.page-blog-why-77ball-is-top-choice__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
}

.page-blog-why-77ball-is-top-choice__btn-primary {
    background: var(--color-button-gradient);
    color: #ffffff;
    border: 2px solid var(--color-primary);
}

.page-blog-why-77ball-is-top-choice__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-why-77ball-is-top-choice__btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.page-blog-why-77ball-is-top-choice__btn-secondary:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-why-77ball-is-top-choice__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--color-divider);
}

.page-blog-why-77ball-is-top-choice__section:last-of-type {
    border-bottom: none;
}

.page-blog-why-77ball-is-top-choice__section-title {
    font-size: 2.2rem;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

.page-blog-why-77ball-is-top-choice__text-block {
    font-size: 1.05rem;
    color: var(--color-text-main);
    margin-bottom: 20px;
    text-align: justify;
}

.page-blog-why-77ball-is-top-choice__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-blog-why-77ball-is-top-choice__card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 450px; /* Ensure cards have some height for content */
}

.page-blog-why-77ball-is-top-choice__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-why-77ball-is-top-choice__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-blog-why-77ball-is-top-choice__card-title {
    font-size: 1.4rem;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.page-blog-why-77ball-is-top-choice__card-description {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-blog-why-77ball-is-top-choice__card-link {
    display: inline-block;
    margin-top: auto;
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.page-blog-why-77ball-is-top-choice__card-link:hover {
    background-color: var(--color-secondary);
}

.page-blog-why-77ball-is-top-choice__feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-blog-why-77ball-is-top-choice__feature-item {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-blog-why-77ball-is-top-choice__feature-title {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.page-blog-why-77ball-is-top-choice__feature-description {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: 15px;
    text-align: justify;
}

.page-blog-why-77ball-is-top-choice__feature-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 15px;
    min-width: 200px;
    min-height: 200px;
}

.page-blog-why-77ball-is-top-choice__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-blog-why-77ball-is-top-choice__faq-section {
    padding: 60px 0;
}

.page-blog-why-77ball-is-top-choice__faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.page-blog-why-77ball-is-top-choice__faq-item {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    list-style: none;
}

.page-blog-why-77ball-is-top-choice__faq-item summary {
    list-style: none;
}

.page-blog-why-77ball-is-top-choice__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-blog-why-77ball-is-top-choice__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15rem;
    font-weight: bold;
    color: var(--color-gold);
    cursor: pointer;
    background-color: var(--color-deep-green);
    border-radius: 8px;
}

.page-blog-why-77ball-is-top-choice__faq-question:hover {
    background-color: var(--color-primary);
}

.page-blog-why-77ball-is-top-choice__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-blog-why-77ball-is-top-choice__faq-item[open] .page-blog-why-77ball-is-top-choice__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-why-77ball-is-top-choice__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1rem;
    color: var(--color-text-secondary);
    background-color: var(--color-card-bg);
    border-top: 1px solid var(--color-border);
}

.page-blog-why-77ball-is-top-choice__conclusion .page-blog-why-77ball-is-top-choice__text-block {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-why-77ball-is-top-choice__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-blog-why-77ball-is-top-choice__section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .page-blog-why-77ball-is-top-choice__container {
        padding: 0 15px;
    }

    .page-blog-why-77ball-is-top-choice__hero-section {
        padding: 10px 0 40px 0;
    }

    .page-blog-why-77ball-is-top-choice__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 10px;
    }

    .page-blog-why-77ball-is-top-choice__hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-blog-why-77ball-is-top-choice__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px; /* Limit button group width on mobile */
        margin: 0 auto;
    }

    .page-blog-why-77ball-is-top-choice__btn-primary,
    .page-blog-why-77ball-is-top-choice__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
    }

    .page-blog-why-77ball-is-top-choice__section {
        padding: 40px 0;
    }

    .page-blog-why-77ball-is-top-choice__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .page-blog-why-77ball-is-top-choice__text-block,
    .page-blog-why-77ball-is-top-choice__card-description,
    .page-blog-why-77ball-is-top-choice__feature-description,
    .page-blog-why-77ball-is-top-choice__faq-answer p {
        font-size: 0.95rem;
    }

    .page-blog-why-77ball-is-top-choice__card {
        padding: 20px;
        min-height: auto;
    }

    .page-blog-why-77ball-is-top-choice__card-image,
    .page-blog-why-77ball-is-top-choice__feature-image,
    .page-blog-why-77ball-is-top-choice__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    .page-blog-why-77ball-is-top-choice__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    /* Ensure all image containers are responsive */
    .page-blog-why-77ball-is-top-choice__hero-image-wrapper,
    .page-blog-why-77ball-is-top-choice__card,
    .page-blog-why-77ball-is-top-choice__feature-item,
    .page-blog-why-77ball-is-top-choice__guide-steps,
    .page-blog-why-77ball-is-top-choice__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden;
    }

    /* Specific padding for containers */
    .page-blog-why-77ball-is-top-choice__hero-content,
    .page-blog-why-77ball-is-top-choice__container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* Content area images CSS size lower bound (not by class name, but by scope) */
.page-blog-why-77ball-is-top-choice img {
    min-width: 200px;
    min-height: 200px;
}