/* style/resources-onbet-registration-steps-guide.css */

/* Biến CSS */
:root {
    --onbet-primary-color: #0A2463;
    --onbet-secondary-color: #FFD700;
    --onbet-text-dark: #222;
    --onbet-text-light: #f8f8f8;
    --onbet-bg-light: #f4f7f6;
    --onbet-border-color: #e0e0e0;
}

/* Base styles for the specific page content */
.page-resources-onbet-registration-steps-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--onbet-text-dark);
    background-color: #fff;
}

/* Container for content width */
.page-resources-onbet-registration-steps-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-resources-onbet-registration-steps-guide__hero-section {
    background: linear-gradient(135deg, var(--onbet-primary-color) 0%, #1A3E7B 100%); /* Slightly lighter blue for gradient effect */
    color: var(--onbet-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-onbet-registration-steps-guide__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--onbet-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}

.page-resources-onbet-registration-steps-guide__subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: rgba(255, 255, 255, 0.9);
}

/* Call to Action Button */
.page-resources-onbet-registration-steps-guide__cta-button {
    display: inline-block;
    background-color: var(--onbet-secondary-color);
    color: var(--onbet-primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-onbet-registration-steps-guide__cta-button:hover {
    background-color: #FFC107; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-resources-onbet-registration-steps-guide__cta-button--center {
    display: block;
    margin: 30px auto;
    text-align: center;
}

.page-resources-onbet-registration-steps-guide__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
    margin-top: 20px;
}

.page-resources-onbet-registration-steps-guide__cta-button--large {
    padding: 20px 40px;
    font-size: 1.3em;
    margin-top: 40px;
}

/* Content Sections */
.page-resources-onbet-registration-steps-guide__content-section {
    padding: 60px 0;
}

.page-resources-onbet-registration-steps-guide__section-bg-light {
    background-color: var(--onbet-bg-light);
}

.page-resources-onbet-registration-steps-guide__section-bg-dark {
    background-color: var(--onbet-primary-color);
    color: var(--onbet-text-light);
}

.page-resources-onbet-registration-steps-guide__section-title {
    font-size: 2.5em;
    color: var(--onbet-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-onbet-registration-steps-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--onbet-secondary-color);
    border-radius: 2px;
}

.page-resources-onbet-registration-steps-guide__section-title--white {
    color: var(--onbet-text-light);
}

.page-resources-onbet-registration-steps-guide__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-resources-onbet-registration-steps-guide__text-block--white {
    color: rgba(255, 255, 255, 0.9);
}

.page-resources-onbet-registration-steps-guide__container--center-text {
    text-align: center;
}

/* Feature List */
.page-resources-onbet-registration-steps-guide__feature-list,
.page-resources-onbet-registration-steps-guide__info-list,
.page-resources-onbet-registration-steps-guide__app-download-list,
.page-resources-onbet-registration-steps-guide__promo-list,
.page-resources-onbet-registration-steps-guide__important-notes-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-resources-onbet-registration-steps-guide__feature-list li,
.page-resources-onbet-registration-steps-guide__info-list li,
.page-resources-onbet-registration-steps-guide__app-download-list li,
.page-resources-onbet-registration-steps-guide__promo-list li,
.page-resources-onbet-registration-steps-guide__important-notes-list li {
    padding: 10px 0;
    font-size: 1.05em;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.page-resources-onbet-registration-steps-guide__feature-list li strong {
    color: var(--onbet-primary-color);
}

.page-resources-onbet-registration-steps-guide__icon {
    color: var(--onbet-secondary-color);
    font-size: 1.3em;
    line-height: 1.6;
    flex-shrink: 0;
}

.page-resources-onbet-registration-steps-guide__icon--check::before {
    content: '✔';
}
.page-resources-onbet-registration-steps-guide__icon--apple::before {
    content: '';
    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', 'Segoe UI Symbol', 'Android Emoji', 'EmojiSymbols'; /* Fallback for Apple icon */
}
.page-resources-onbet-registration-steps-guide__icon--android::before {
    content: '🤖'; /* Android robot emoji */
    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', 'Segoe UI Symbol', 'Android Emoji', 'EmojiSymbols';
}

/* Step Cards */
.page-resources-onbet-registration-steps-guide__step-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 30px;
    border-left: 5px solid var(--onbet-secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-onbet-registration-steps-guide__step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-resources-onbet-registration-steps-guide__step-title {
    font-size: 1.8em;
    color: var(--onbet-primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.page-resources-onbet-registration-steps-guide__step-number {
    background-color: var(--onbet-primary-color);
    color: var(--onbet-text-light);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    font-weight: bold;
    flex-shrink: 0;
}

.page-resources-onbet-registration-steps-guide__ordered-list {
    list-style: decimal;
    padding-left: 25px;
    font-size: 1.1em;
    margin-bottom: 30px;
}

.page-resources-onbet-registration-steps-guide__ordered-list li {
    margin-bottom: 10px;
}

/* Image Styling */
.page-resources-onbet-registration-steps-guide__image-wrapper {
    margin: 30px 0;
    text-align: center;
}

.page-resources-onbet-registration-steps-guide__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-onbet-registration-steps-guide__image--full-width {
    width: 100%;
}

.page-resources-onbet-registration-steps-guide__image-wrapper--small .page-resources-onbet-registration-steps-guide__image {
    max-width: 600px;
}

/* FAQ Section */
.page-resources-onbet-registration-steps-guide__faq {
    margin-top: 40px;
}

.page-resources-onbet-registration-steps-guide__faq-item {
    background-color: #fff;
    border: 1px solid var(--onbet-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-resources-onbet-registration-steps-guide__faq-question {
    padding: 18px 25px;
    font-size: 1.2em;
    color: var(--onbet-primary-color);
    cursor: pointer;
    margin: 0;
    position: relative;
    background-color: #fcfcfc;
    transition: background-color 0.3s ease;
}

.page-resources-onbet-registration-steps-guide__faq-question:hover {
    background-color: #f0f0f0;
}

.page-resources-onbet-registration-steps-guide__faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: var(--onbet-secondary-color);
    transition: transform 0.3s ease;
}

.page-resources-onbet-registration-steps-guide__faq-item.active .page-resources-onbet-registration-steps-guide__faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-resources-onbet-registration-steps-guide__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1.05em;
    color: var(--onbet-text-dark);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-resources-onbet-registration-steps-guide__faq-item.active .page-resources-onbet-registration-steps-guide__faq-answer {
    max-height: 200px; /* Adjust as needed for content */
    padding-top: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-onbet-registration-steps-guide__main-title {
        font-size: 2.5em;
    }

    .page-resources-onbet-registration-steps-guide__subtitle {
        font-size: 1.1em;
    }

    .page-resources-onbet-registration-steps-guide__section-title {
        font-size: 2em;
    }

    .page-resources-onbet-registration-steps-guide__step-title {
        font-size: 1.5em;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .page-resources-onbet-registration-steps-guide__step-number {
        margin-bottom: 10px;
    }

    .page-resources-onbet-registration-steps-guide__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-resources-onbet-registration-steps-guide__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-resources-onbet-registration-steps-guide__hero-section {
        padding: 60px 0;
    }

    .page-resources-onbet-registration-steps-guide__content-section {
        padding: 40px 0;
    }

    .page-resources-onbet-registration-steps-guide__faq-question,
    .page-resources-onbet-registration-steps-guide__faq-answer {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-resources-onbet-registration-steps-guide__faq-question::after {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .page-resources-onbet-registration-steps-guide__main-title {
        font-size: 2em;
    }

    .page-resources-onbet-registration-steps-guide__subtitle {
        font-size: 1em;
    }

    .page-resources-onbet-registration-steps-guide__section-title {
        font-size: 1.8em;
    }

    .page-resources-onbet-registration-steps-guide__step-title {
        font-size: 1.3em;
    }

    .page-resources-onbet-registration-steps-guide__cta-button {
        font-size: 0.9em;
        padding: 10px 20px;
    }
}