/* Base styles for the page */
.page-blog-chien-thuat-choi-game-vp88 {
    font-family: 'Arial', sans-serif;
    color: #FFF3E6; /* Text Main */
    background-color: #0D0E12; /* Body background */
    line-height: 1.6;
}

.page-blog-chien-thuat-choi-game-vp88__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-chien-thuat-choi-game-vp88__hero-section {
    padding-top: 10px; /* Small top padding as shared.css handles body padding */
    padding-bottom: 60px;
    background-color: #0D0E12;
}

.page-blog-chien-thuat-choi-game-vp88__hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px 15px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-blog-chien-thuat-choi-game-vp88__hero-content {
    flex: 1 1 50%;
    max-width: 50%;
    color: #FFF3E6;
}

.page-blog-chien-thuat-choi-game-vp88__main-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFB04D; /* Glow for main title */
}

.page-blog-chien-thuat-choi-game-vp88__intro-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #FFF3E6;
}

.page-blog-chien-thuat-choi-game-vp88__cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-blog-chien-thuat-choi-game-vp88__cta-button {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box; /* Important for responsive buttons */
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-blog-chien-thuat-choi-game-vp88__btn-primary {
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button color */
    color: #ffffff;
    border: none;
}

.page-blog-chien-thuat-choi-game-vp88__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-blog-chien-thuat-choi-game-vp88__btn-secondary {
    background: transparent;
    color: #FF8C1A; /* Primary color */
    border: 2px solid #FF8C1A; /* Border color */
}

.page-blog-chien-thuat-choi-game-vp88__btn-secondary:hover {
    background-color: #FF8C1A;
    color: #ffffff;
    transform: translateY(-2px);
}

.page-blog-chien-thuat-choi-game-vp88__hero-image {
    flex: 1 1 40%;
    text-align: center;
}

.page-blog-chien-thuat-choi-game-vp88__hero-main-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

/* Guide/Content Section */
.page-blog-chien-thuat-choi-game-vp88__guide-section {
    padding: 60px 0;
    background-color: #0D0E12;
}

.page-blog-chien-thuat-choi-game-vp88__section-heading {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 30px;
    color: #FF8C1A; /* Primary color */
    text-align: center;
}

.page-blog-chien-thuat-choi-game-vp88__sub-heading {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #FFA53A; /* Auxiliary color */
}

.page-blog-chien-thuat-choi-game-vp88__text-block {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #FFF3E6;
}

.page-blog-chien-thuat-choi-game-vp88__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px auto;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

/* Strategy Cards Grid */
.page-blog-chien-thuat-choi-game-vp88__strategy-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-blog-chien-thuat-choi-game-vp88__strategy-card {
    background-color: #17191F; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    color: #FFF3E6;
}

.page-blog-chien-thuat-choi-game-vp88__strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-chien-thuat-choi-game-vp88__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

.page-blog-chien-thuat-choi-game-vp88__card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFA53A;
    padding: 15px 20px 10px;
}

.page-blog-chien-thuat-choi-game-vp88__card-text {
    font-size: 0.95rem;
    color: #FFF3E6;
    padding: 0 20px 20px;
    flex-grow: 1; /* Ensures text block takes available space */
}

/* Bottom CTA Buttons */
.page-blog-chien-thuat-choi-game-vp88__cta-buttons--bottom {
    margin-top: 50px;
    justify-content: center;
}

/* FAQ Section */
.page-blog-chien-thuat-choi-game-vp88__faq-section {
    padding: 60px 0;
    background-color: #17191F; /* Card BG */
}

.page-blog-chien-thuat-choi-game-vp88__faq-list {
    margin-top: 40px;
}

.page-blog-chien-thuat-choi-game-vp88__faq-item {
    background-color: #0D0E12; /* Body background */
    border: 1px solid #A84F0C; /* Border color */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #FFF3E6;
}

.page-blog-chien-thuat-choi-game-vp88__faq-item summary {
    display: block; /* For details/summary semantic */
    cursor: pointer;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFA53A;
    position: relative;
    list-style: none; /* Hide default marker */
    -webkit-tap-highlight-color: transparent; /* Prevent tap highlight on mobile */
}

.page-blog-chien-thuat-choi-game-vp88__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-blog-chien-thuat-choi-game-vp88__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-blog-chien-thuat-choi-game-vp88__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: #FF8C1A;
}

.page-blog-chien-thuat-choi-game-vp88__faq-answer {
    padding: 0 20px 20px;
    font-size: 1rem;
    color: #FFF3E6;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-chien-thuat-choi-game-vp88__hero-container {
        flex-direction: column;
        text-align: center;
    }
    .page-blog-chien-thuat-choi-game-vp88__hero-content {
        max-width: 100%;
        flex: none;
    }
    .page-blog-chien-thuat-choi-game-vp88__hero-image {
        flex: none;
        width: 100%;
    }
    .page-blog-chien-thuat-choi-game-vp88__main-title,
    .page-blog-chien-thuat-choi-game-vp88__section-heading {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-blog-chien-thuat-choi-game-vp88__sub-heading {
        font-size: clamp(1.2rem, 3vw, 1.6rem);
    }
}

@media (max-width: 768px) {
    /* HERO Section */
    .page-blog-chien-thuat-choi-game-vp88__hero-section {
        padding-top: 10px !important; /* Enforce small top padding */
        padding-bottom: 40px;
    }
    .page-blog-chien-thuat-choi-game-vp88__hero-container {
        padding: 30px 15px;
        gap: 20px;
    }
    .page-blog-chien-thuat-choi-game-vp88__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 15px;
        text-align: center;
    }
    .page-blog-chien-thuat-choi-game-vp88__intro-text {
        font-size: 1rem;
        margin-bottom: 25px;
        text-align: center;
    }
    .page-blog-chien-thuat-choi-game-vp88__cta-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-chien-thuat-choi-game-vp88__cta-button {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-blog-chien-thuat-choi-game-vp88__hero-main-img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px !important; /* Ensure min size on mobile */
        min-height: 200px !important;
    }

    /* Guide/Content Section */
    .page-blog-chien-thuat-choi-game-vp88__guide-section {
        padding: 40px 0;
    }
    .page-blog-chien-thuat-choi-game-vp88__section-heading {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 20px;
    }
    .page-blog-chien-thuat-choi-game-vp88__sub-heading {
        font-size: clamp(1.1rem, 4.5vw, 1.4rem);
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .page-blog-chien-thuat-choi-game-vp88__text-block {
        font-size: 0.95rem;
    }
    .page-blog-chien-thuat-choi-game-vp88__content-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin: 20px auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    /* Strategy Cards Grid */
    .page-blog-chien-thuat-choi-game-vp88__strategy-card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
        margin-bottom: 30px;
    }
    .page-blog-chien-thuat-choi-game-vp88__card-image {
        height: 180px; /* Adjust height for mobile cards */
        min-width: 200px !important;
        min-height: 180px !important;
    }
    .page-blog-chien-thuat-choi-game-vp88__card-title {
        font-size: 1.1rem;
        padding: 12px 15px 8px;
    }
    .page-blog-chien-thuat-choi-game-vp88__card-text {
        font-size: 0.9rem;
        padding: 0 15px 15px;
    }

    /* Bottom CTA Buttons */
    .page-blog-chien-thuat-choi-game-vp88__cta-buttons--bottom {
        margin-top: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* FAQ Section */
    .page-blog-chien-thuat-choi-game-vp88__faq-section {
        padding: 40px 0;
    }
    .page-blog-chien-thuat-choi-game-vp88__faq-list {
        margin-top: 30px;
    }
    .page-blog-chien-thuat-choi-game-vp88__faq-item summary {
        padding: 15px;
        font-size: 1rem;
    }
    .page-blog-chien-thuat-choi-game-vp88__faq-answer {
        padding: 0 15px 15px;
        font-size: 0.95rem;
    }

    /* General image and container responsiveness */
    .page-blog-chien-thuat-choi-game-vp88 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
        min-width: 200px !important; /* Global enforcement */
        min-height: 200px !important;
    }
    .page-blog-chien-thuat-choi-game-vp88__container,
    .page-blog-chien-thuat-choi-game-vp88__content-area {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden; /* Prevent horizontal scroll */
    }
}