/* style/blog-how-to-safely-efficiently-use-77ball.css */
/* body đã padding-top: var(--header-offset)；trang này không được viết lại biến đó */
.page-blog-how-to-safely-efficiently-use-77ball {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main-color, #F2FFF6); /* Default text color for dark background */
    background-color: var(--background-color, #08160F); /* Defined in custom palette */
}

.page-blog-how-to-safely-efficiently-use-77ball__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-how-to-safely-efficiently-use-77ball__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image first, then content */
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    box-sizing: border-box;
}

.page-blog-how-to-safely-efficiently-use-77ball__hero-image {
    width: 100%;
    height: auto;
    max-height: 600px; /* Limit height for hero image */
    object-fit: cover;
    display: block;
    margin-bottom: 30px; /* Space between image and content */
}

.page-blog-how-to-safely-efficiently-use-77ball__hero-content {
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
    color: var(--text-main-color, #F2FFF6);
}

.page-blog-how-to-safely-efficiently-use-77ball__hero-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive H1 font size */
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--text-main-color, #F2FFF6);
    max-width: 100%; /* Ensure H1 doesn't overflow */
}

.page-blog-how-to-safely-efficiently-use-77ball__hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-secondary-color, #A7D9B8);
}

.page-blog-how-to-safely-efficiently-use-77ball__cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* General Section Styling */
.page-blog-how-to-safely-efficiently-use-77ball__content-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--divider-color, #1E3A2A);
}

.page-blog-how-to-safely-efficiently-use-77ball__content-section:last-of-type {
    border-bottom: none;
}

.page-blog-how-to-safely-efficiently-use-77ball__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main-color, #F2FFF6);
    text-align: center;
    margin-bottom: 40px;
}

.page-blog-how-to-safely-efficiently-use-77ball p {
    margin-bottom: 1em;
    color: var(--text-secondary-color, #A7D9B8);
}

.page-blog-how-to-safely-efficiently-use-77ball ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 1em;
    color: var(--text-secondary-color, #A7D9B8);
}

.page-blog-how-to-safely-efficiently-use-77ball li {
    margin-bottom: 0.5em;
    color: var(--text-secondary-color, #A7D9B8);
}

.page-blog-how-to-safely-efficiently-use-77ball strong {
    color: var(--text-main-color, #F2FFF6);
}

/* Buttons */
.page-blog-how-to-safely-efficiently-use-77ball__btn-primary,
.page-blog-how-to-safely-efficiently-use-77ball__btn-secondary,
.page-blog-how-to-safely-efficiently-use-77ball__btn-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons are responsive */
}

.page-blog-how-to-safely-efficiently-use-77ball__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.3);
}

.page-blog-how-to-safely-efficiently-use-77ball__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.4);
}

.page-blog-how-to-safely-efficiently-use-77ball__btn-secondary {
    background-color: transparent;
    color: var(--main-color, #11A84E);
    border: 2px solid var(--main-color, #11A84E);
}

.page-blog-how-to-safely-efficiently-use-77ball__btn-secondary:hover {
    background-color: var(--main-color, #11A84E);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(17, 168, 78, 0.3);
}

.page-blog-how-to-safely-efficiently-use-77ball__btn-small {
    padding: 8px 15px;
    font-size: 0.9em;
    background-color: var(--deep-green-color, #0A4B2C);
    color: var(--text-secondary-color, #A7D9B8);
    border: 1px solid var(--border-color, #2E7A4E);
    border-radius: 5px;
}

.page-blog-how-to-safely-efficiently-use-77ball__btn-small:hover {
    background-color: var(--main-color, #11A84E);
    color: #ffffff;
    border-color: var(--main-color, #11A84E);
}


/* Card Styling */
.page-blog-how-to-safely-efficiently-use-77ball__step-card {
    background-color: var(--card-bg-color, #11271B); /* Card BG from palette */
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--text-secondary-color, #A7D9B8);
}

.page-blog-how-to-safely-efficiently-use-77ball__card-image {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-blog-how-to-safely-efficiently-use-77ball__card-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-main-color, #F2FFF6);
}

.page-blog-how-to-safely-efficiently-use-77ball__guide-steps,
.page-blog-how-to-safely-efficiently-use-77ball__financial-guide,
.page-blog-how-to-safely-efficiently-use-77ball__games-promotions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-blog-how-to-safely-efficiently-use-77ball__game-category,
.page-blog-how-to-safely-efficiently-use-77ball__promotion-area {
    background-color: var(--card-bg-color, #11271B);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: var(--text-secondary-color, #A7D9B8);
}

.page-blog-how-to-safely-efficiently-use-77ball__game-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

/* FAQ Section */
.page-blog-how-to-safely-efficiently-use-77ball__faq-section {
    padding: 60px 0;
}

.page-blog-how-to-safely-efficiently-use-77ball__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-how-to-safely-efficiently-use-77ball__faq-item {
    background-color: var(--card-bg-color, #11271B);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: var(--text-secondary-color, #A7D9B8);
}

.page-blog-how-to-safely-efficiently-use-77ball__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-main-color, #F2FFF6);
    border-bottom: 1px solid var(--divider-color, #1E3A2A);
}

.page-blog-how-to-safely-efficiently-use-77ball__faq-item[open] .page-blog-how-to-safely-efficiently-use-77ball__faq-question {
    border-bottom: none;
}

.page-blog-how-to-safely-efficiently-use-77ball__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-how-to-safely-efficiently-use-77ball__faq-question::marker {
    display: none;
}

.page-blog-how-to-safely-efficiently-use-77ball__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-blog-how-to-safely-efficiently-use-77ball__faq-item[open] .page-blog-how-to-safely-efficiently-use-77ball__faq-toggle {
    transform: rotate(45deg); /* Change to X or rotate */
}

.page-blog-how-to-safely-efficiently-use-77ball__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1rem;
    color: var(--text-secondary-color, #A7D9B8);
}

/* Conclusion Section */
.page-blog-how-to-safely-efficiently-use-77ball__conclusion {
    text-align: center;
    padding-bottom: 80px;
}

.page-blog-how-to-safely-efficiently-use-77ball__cta-final {
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-blog-how-to-safely-efficiently-use-77ball__hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-blog-how-to-safely-efficiently-use-77ball__section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .page-blog-how-to-safely-efficiently-use-77ball__hero-section {
        padding-bottom: 40px;
    }
    .page-blog-how-to-safely-efficiently-use-77ball__hero-image {
        max-height: 400px;
    }
    .page-blog-how-to-safely-efficiently-use-77ball__hero-content {
        padding: 0 15px;
    }
    .page-blog-how-to-safely-efficiently-use-77ball__hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-blog-how-to-safely-efficiently-use-77ball__hero-description {
        font-size: 1rem;
    }
    .page-blog-how-to-safely-efficiently-use-77ball__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-blog-how-to-safely-efficiently-use-77ball__btn-primary,
    .page-blog-how-to-safely-efficiently-use-77ball__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 15px;
    }

    .page-blog-how-to-safely-efficiently-use-77ball__content-section {
        padding: 40px 0;
    }
    .page-blog-how-to-safely-efficiently-use-77ball__container {
        padding: 0 15px;
    }
    .page-blog-how-to-safely-efficiently-use-77ball__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    /* Images responsiveness */
    .page-blog-how-to-safely-efficiently-use-77ball img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-how-to-safely-efficiently-use-77ball__step-card,
    .page-blog-how-to-safely-efficiently-use-77ball__game-category,
    .page-blog-how-to-safely-efficiently-use-77ball__promotion-area,
    .page-blog-how-to-safely-efficiently-use-77ball__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        margin-left: auto;
        margin-right: auto;
    }
    .page-blog-how-to-safely-efficiently-use-77ball__guide-steps,
    .page-blog-how-to-safely-efficiently-use-77ball__financial-guide,
    .page-blog-how-to-safely-efficiently-use-77ball__games-promotions {
        grid-template-columns: 1fr; /* Stack cards vertically */
        gap: 20px;
    }
    .page-blog-how-to-safely-efficiently-use-77ball__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-blog-how-to-safely-efficiently-use-77ball__faq-answer {
        padding: 10px 20px 15px;
    }
    .page-blog-how-to-safely-efficiently-use-77ball__game-links {
        justify-content: center;
    }
}