/* style/blog-vb777-new-player-guide.css */

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

.page-blog-vb777-new-player-guide {
    color: var(--text-main-color); /* Light text for dark body background */
    background-color: var(--bg-dark-color);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-blog-vb777-new-player-guide__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
    background-color: var(--bg-dark-color);
}

.page-blog-vb777-new-player-guide__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Adjust based on typical screen sizes */
    overflow: hidden;
}

.page-blog-vb777-new-player-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 675px; /* Limit height to prevent overly tall hero on desktop */
}

.page-blog-vb777-new-player-guide__hero-content-wrapper {
    max-width: 900px;
    margin: 40px auto 0 auto;
    padding: 0 20px;
    text-align: center;
}

.page-blog-vb777-new-player-guide__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size for H1 */
    color: var(--text-main-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-blog-vb777-new-player-guide__hero-description {
    font-size: 1.1em;
    color: var(--text-secondary-color);
    margin-bottom: 30px;
}

.page-blog-vb777-new-player-guide__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.page-blog-vb777-new-player-guide__btn-primary,
.page-blog-vb777-new-player-guide__btn-secondary,
.page-blog-vb777-new-player-guide a[class*="button"],
.page-blog-vb777-new-player-guide a[class*="btn"] {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-blog-vb777-new-player-guide__btn-primary {
    background: var(--button-gradient);
    color: #ffffff; /* Button text always white for primary */
    border: none;
}

.page-blog-vb777-new-player-guide__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-vb777-new-player-guide__btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-blog-vb777-new-player-guide__btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.page-blog-vb777-new-player-guide__btn-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 300px; /* Limit width for centered buttons */
}

.page-blog-vb777-new-player-guide__btn-large {
    min-width: 200px;
    padding: 18px 35px;
    font-size: 1.1em;
}

.page-blog-vb777-new-player-guide__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
}

.page-blog-vb777-new-player-guide__dark-bg {
    background-color: var(--bg-dark-color);
    color: var(--text-main-color);
}

.page-blog-vb777-new-player-guide__light-bg {
    background-color: #ffffff;
    color: #333333; /* Dark text for light background */
}

.page-blog-vb777-new-player-guide__dark-section {
    background-color: var(--deep-green-color);
    color: var(--text-main-color);
}

.page-blog-vb777-new-player-guide__section-title {
    font-size: 2.5em;
    color: var(--text-main-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-blog-vb777-new-player-guide__light-bg .page-blog-vb777-new-player-guide__section-title {
    color: #000000;
}

.page-blog-vb777-new-player-guide__sub-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 35px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-blog-vb777-new-player-guide__light-bg .page-blog-vb777-new-player-guide__sub-title {
    color: var(--deep-green-color);
}

.page-blog-vb777-new-player-guide__paragraph {
    font-size: 1.05em;
    margin-bottom: 15px;
    color: inherit;
}

.page-blog-vb777-new-player-guide__list {
    list-style: disc inside;
    margin-bottom: 15px;
    padding-left: 20px;
}

.page-blog-vb777-new-player-guide__ordered-list {
    list-style: decimal inside;
    margin-bottom: 15px;
    padding-left: 20px;
}

.page-blog-vb777-new-player-guide__list-item {
    margin-bottom: 8px;
    color: inherit;
}

.page-blog-vb777-new-player-guide__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
    border-radius: 8px;
    object-fit: cover;
}

.page-blog-vb777-new-player-guide__cta-buttons--horizontal {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-blog-vb777-new-player-guide__faq-list {
    margin-top: 40px;
}

.page-blog-vb777-new-player-guide__faq-item {
    background-color: var(--bg-card-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-vb777-new-player-guide__light-bg .page-blog-vb777-new-player-guide__faq-item {
    background-color: #f8f8f8;
    border-color: #e0e0e0;
}

.page-blog-vb777-new-player-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-weight: bold;
    color: var(--text-main-color);
    font-size: 1.1em;
    background-color: var(--bg-card-color);
    user-select: none;
}

.page-blog-vb777-new-player-guide__light-bg .page-blog-vb777-new-player-guide__faq-question {
    color: #333333;
    background-color: #f0f0f0;
}

.page-blog-vb777-new-player-guide__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--primary-color);
}

.page-blog-vb777-new-player-guide__faq-item[open] .page-blog-vb777-new-player-guide__faq-toggle {
    content: '−';
}

.page-blog-vb777-new-player-guide__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1em;
    color: var(--text-secondary-color);
    line-height: 1.6;
}

.page-blog-vb777-new-player-guide__light-bg .page-blog-vb777-new-player-guide__faq-answer {
    color: #555555;
}

.page-blog-vb777-new-player-guide__faq-item details > summary {
    list-style: none;
}

.page-blog-vb777-new-player-guide__faq-item details > summary::-webkit-details-marker {
    display: none;
}

.page-blog-vb777-new-player-guide__text-center {
    text-align: center;
}

.page-blog-vb777-new-player-guide__cta-section {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--bg-dark-color);
    color: var(--text-main-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-vb777-new-player-guide__hero-content-wrapper {
        max-width: 768px;
    }
    .page-blog-vb777-new-player-guide__main-title {
        font-size: clamp(1.8em, 5vw, 2.8em);
    }
    .page-blog-vb777-new-player-guide__section-title {
        font-size: 2em;
    }
    .page-blog-vb777-new-player-guide__sub-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-blog-vb777-new-player-guide__hero-section {
        padding-bottom: 40px;
    }
    .page-blog-vb777-new-player-guide__main-title {
        font-size: clamp(1.5em, 6vw, 2.2em);
    }
    .page-blog-vb777-new-player-guide__hero-description {
        font-size: 1em;
    }
    .page-blog-vb777-new-player-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-blog-vb777-new-player-guide__btn-primary,
    .page-blog-vb777-new-player-guide__btn-secondary,
    .page-blog-vb777-new-player-guide a[class*="button"],
    .page-blog-vb777-new-player-guide a[class*="btn"] {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        font-size: 1em;
    }
    .page-blog-vb777-new-player-guide__content-area {
        padding: 40px 15px;
    }
    .page-blog-vb777-new-player-guide__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-blog-vb777-new-player-guide__sub-title {
        font-size: 1.4em;
        margin-top: 25px;
    }
    .page-blog-vb777-new-player-guide__paragraph,
    .page-blog-vb777-new-player-guide__list-item {
        font-size: 0.95em;
    }

    /* Images responsive for mobile */
    .page-blog-vb777-new-player-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Image containers responsive for mobile */
    .page-blog-vb777-new-player-guide__hero-image-wrapper,
    .page-blog-vb777-new-player-guide__container,
    .page-blog-vb777-new-player-guide__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-vb777-new-player-guide__hero-content-wrapper {
        padding: 0 15px;
    }

    /* Video section top padding for mobile */
    .page-blog-vb777-new-player-guide__video-section {
        padding-top: 10px !important;
    }

    /* Video responsive for mobile */
    .page-blog-vb777-new-player-guide video,
    .page-blog-vb777-new-player-guide__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Video containers responsive for mobile */
    .page-blog-vb777-new-player-guide__video-section,
    .page-blog-vb777-new-player-guide__video-container,
    .page-blog-vb777-new-player-guide__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
}