/* style/resources-best-guide-to-link-vao-bong.css */

:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --text-on-dark: #FFFFFF;
    --text-on-light: #333333;
    --register-btn-bg: #C30808;
    --login-btn-bg: #C30808;
    --register-login-text: #FFFF00;
    --body-bg: #000000; /* From shared.css */
}

.page-resources-best-guide-to-link-vao-bong {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-on-dark); /* Default text color for dark body background */
    background-color: var(--body-bg);
}

.page-resources-best-guide-to-link-vao-bong__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 40px;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    text-align: center;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    overflow: hidden;
}

.page-resources-best-guide-to-link-vao-bong__hero-content {
    max-width: 900px;
    margin-bottom: 30px;
    z-index: 1;
}

.page-resources-best-guide-to-link-vao-bong__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    line-height: 1.2;
}

.page-resources-best-guide-to-link-vao-bong__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.page-resources-best-guide-to-link-vao-bong__hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-resources-best-guide-to-link-vao-bong__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15; /* Subtle background image */
    z-index: 0;
}

.page-resources-best-guide-to-link-vao-bong__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-resources-best-guide-to-link-vao-bong__btn-primary,
.page-resources-best-guide-to-link-vao-bong__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.page-resources-best-guide-to-link-vao-bong__btn-primary {
    background-color: var(--register-btn-bg);
    color: var(--register-login-text);
    border: 2px solid var(--register-btn-bg);
}

.page-resources-best-guide-to-link-vao-bong__btn-primary:hover {
    background-color: darken(var(--register-btn-bg), 10%);
    border-color: darken(var(--register-btn-bg), 10%);
}

.page-resources-best-guide-to-link-vao-bong__btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-resources-best-guide-to-link-vao-bong__btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.page-resources-best-guide-to-link-vao-bong__btn-center {
    display: block;
    margin: 40px auto 0;
    text-align: center;
}

.page-resources-best-guide-to-link-vao-bong__content-section {
    padding: 60px 0;
    background-color: var(--body-bg);
    color: var(--text-on-dark);
}

.page-resources-best-guide-to-link-vao-bong__dark-bg {
    background-color: var(--primary-color);
    color: var(--text-on-dark);
}

.page-resources-best-guide-to-link-vao-bong__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-resources-best-guide-to-link-vao-bong__section-title {
    font-size: 2.5em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-resources-best-guide-to-link-vao-bong__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--register-login-text);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-resources-best-guide-to-link-vao-bong__subsection-title {
    font-size: 1.8em;
    color: var(--register-login-text);
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-resources-best-guide-to-link-vao-bong__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-resources-best-guide-to-link-vao-bong__paragraph strong {
    color: var(--register-login-text);
}

.page-resources-best-guide-to-link-vao-bong__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-resources-best-guide-to-link-vao-bong__list-item {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border-left: 5px solid var(--register-login-text);
}

.page-resources-best-guide-to-link-vao-bong__list-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-best-guide-to-link-vao-bong__list-title {
    font-size: 1.3em;
    color: var(--register-login-text);
    margin-top: 0;
    margin-bottom: 10px;
}

.page-resources-best-guide-to-link-vao-bong__list-item p {
    font-size: 1em;
    color: var(--text-on-dark);
    margin-bottom: 0;
}

.page-resources-best-guide-to-link-vao-bong__numbered-list {
    list-style: decimal;
    padding-left: 25px;
    margin-bottom: 30px;
}

.page-resources-best-guide-to-link-vao-bong__numbered-list .page-resources-best-guide-to-link-vao-bong__list-item {
    background-color: transparent;
    border-left: none;
    padding: 0;
    margin-bottom: 15px;
}

.page-resources-best-guide-to-link-vao-bong__numbered-list .page-resources-best-guide-to-link-vao-bong__list-item:hover {
    transform: none;
    background-color: transparent;
}

.page-resources-best-guide-to-link-vao-bong__content-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-best-guide-to-link-vao-bong__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-resources-best-guide-to-link-vao-bong__feature-card {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    border-bottom: 4px solid var(--register-login-text);
}

.page-resources-best-guide-to-link-vao-bong__feature-card:hover {
    transform: translateY(-8px);
    background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-best-guide-to-link-vao-bong__feature-icon {
    width: 100%;
    height: auto;
    max-width: 120px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
}

.page-resources-best-guide-to-link-vao-bong__feature-title {
    font-size: 1.4em;
    color: var(--register-login-text);
    margin-bottom: 15px;
}

.page-resources-best-guide-to-link-vao-bong__feature-description {
    font-size: 0.95em;
    color: var(--text-on-dark);
}

.page-resources-best-guide-to-link-vao-bong__video-section {
    padding: 60px 0;
    background-color: var(--body-bg);
    color: var(--text-on-dark);
    text-align: center;
}

.page-resources-best-guide-to-link-vao-bong__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 0 auto 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-resources-best-guide-to-link-vao-bong__video-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.page-resources-best-guide-to-link-vao-bong__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.page-resources-best-guide-to-link-vao-bong__video-caption {
    font-style: italic;
    color: var(--text-on-dark);
    font-size: 1em;
}

.page-resources-best-guide-to-link-vao-bong__faq-list {
    margin-top: 40px;
}

.page-resources-best-guide-to-link-vao-bong__faq-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-resources-best-guide-to-link-vao-bong__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--register-login-text);
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease;
}

.page-resources-best-guide-to-link-vao-bong__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

.page-resources-best-guide-to-link-vao-bong__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-resources-best-guide-to-link-vao-bong__faq-item.active .page-resources-best-guide-to-link-vao-bong__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-best-guide-to-link-vao-bong__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-on-dark);
    font-size: 1.05em;
    line-height: 1.7;
}

.page-resources-best-guide-to-link-vao-bong__faq-item.active .page-resources-best-guide-to-link-vao-bong__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 20px 20px;
}

.page-resources-best-guide-to-link-vao-bong__faq-answer p {
    margin-bottom: 0;
}

.page-resources-best-guide-to-link-vao-bong__cta-section {
    text-align: center;
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--text-on-dark);
}

.page-resources-best-guide-to-link-vao-bong__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-resources-best-guide-to-link-vao-bong__hero-title {
        font-size: 2.8em;
    }
    .page-resources-best-guide-to-link-vao-bong__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-resources-best-guide-to-link-vao-bong__hero-section {
        padding: 60px 15px 30px;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-resources-best-guide-to-link-vao-bong__hero-title {
        font-size: 2em;
    }
    .page-resources-best-guide-to-link-vao-bong__hero-description {
        font-size: 1.1em;
    }
    .page-resources-best-guide-to-link-vao-bong__hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-best-guide-to-link-vao-bong__btn-primary,
    .page-resources-best-guide-to-link-vao-bong__btn-secondary {
        padding: 12px 20px;
        font-size: 0.9em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-resources-best-guide-to-link-vao-bong__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-resources-best-guide-to-link-vao-bong__subsection-title {
        font-size: 1.5em;
    }
    .page-resources-best-guide-to-link-vao-bong__paragraph,
    .page-resources-best-guide-to-link-vao-bong__list-item p,
    .page-resources-best-guide-to-link-vao-bong__feature-description,
    .page-resources-best-guide-to-link-vao-bong__video-caption,
    .page-resources-best-guide-to-link-vao-bong__faq-answer p {
        font-size: 1em;
    }
    .page-resources-best-guide-to-link-vao-bong__list-item {
        padding: 15px;
    }
    .page-resources-best-guide-to-link-vao-bong__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-resources-best-guide-to-link-vao-bong__feature-card {
        padding: 20px;
    }
    .page-resources-best-guide-to-link-vao-bong__content-image {
        margin: 30px auto;
    }
    .page-resources-best-guide-to-link-vao-bong__video-section {
        padding: 40px 0;
    }
    .page-resources-best-guide-to-link-vao-bong__video-wrapper {
        margin-bottom: 20px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-resources-best-guide-to-link-vao-bong__video-link {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-resources-best-guide-to-link-vao-bong__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-resources-best-guide-to-link-vao-bong__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-resources-best-guide-to-link-vao-bong img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-resources-best-guide-to-link-vao-bong__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-best-guide-to-link-vao-bong__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-resources-best-guide-to-link-vao-bong__faq-answer {
        padding: 0 15px;
    }
    .page-resources-best-guide-to-link-vao-bong__faq-item.active .page-resources-best-guide-to-link-vao-bong__faq-answer {
        padding: 15px 15px 15px;
    }
}

@media (max-width: 480px) {
    .page-resources-best-guide-to-link-vao-bong__hero-title {
        font-size: 1.8em;
    }
    .page-resources-best-guide-to-link-vao-bong__section-title {
        font-size: 1.5em;
    }
    .page-resources-best-guide-to-link-vao-bong__subsection-title {
        font-size: 1.3em;
    }
}