.page-onbet-login {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-onbet-login__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-onbet-login__hero-section {
    background: linear-gradient(135deg, #0A2463 0%, #2a4a83 100%); /* Dark blue gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-onbet-login__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for title */
    font-weight: bold;
    line-height: 1.2;
}

.page-onbet-login__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-onbet-login__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A2463; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFD700;
}

.page-onbet-login__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-onbet-login__cta-button--secondary {
    background-color: #0A2463;
    color: #FFD700;
    border-color: #FFD700;
}

.page-onbet-login__cta-button--secondary:hover {
    background-color: #1a3a73;
    color: #fff;
    border-color: #fff;
}

.page-onbet-login__cta-button--large {
    padding: 20px 40px;
    font-size: 1.3em;
    border-radius: 10px;
}

.page-onbet-login__text-link {
    color: #FFD700;
    text-decoration: underline;
    font-weight: bold;
}

.page-onbet-login__text-link:hover {
    color: #e6c200;
}

.page-onbet-login__hero-image {
    max-width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Content Section */
.page-onbet-login__content-section {
    padding: 60px 0;
    background-color: #fff;
}

.page-onbet-login__section-title {
    font-size: 2em;
    color: #0A2463; /* Dark blue for section titles */
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
    position: relative;
    padding-bottom: 10px;
}

.page-onbet-login__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    border-radius: 2px;
}

.page-onbet-login p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

.page-onbet-login__keyword {
    color: #0A2463;
    font-weight: bold;
}

.page-onbet-login__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-onbet-login__step-list, .page-onbet-login__problem-list, .page-onbet-login__security-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.page-onbet-login__step-list li, .page-onbet-login__problem-list li, .page-onbet-login__security-list li {
    background-color: #f0f4f8; /* Light blue-grey background for list items */
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.05em;
    color: #444;
    position: relative;
    padding-left: 60px; /* Space for step number */
}

.page-onbet-login__step-list li strong {
    color: #0A2463;
    font-size: 1.1em;
}

.page-onbet-login__step-list li::before {
    content: attr(data-step);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFD700; /* Gold step number */
    color: #0A2463;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1em;
}

.page-onbet-login__problem-list li::before, .page-onbet-login__security-list li::before {
    content: '•'; /* Bullet point for problems/security */
    position: absolute;
    left: 20px;
    top: 18px;
    color: #FFD700; /* Gold bullet */
    font-size: 1.5em;
    font-weight: bold;
}

.page-onbet-login__faq {
    margin-top: 40px;
}

.page-onbet-login__faq-item {
    background-color: #f0f4f8;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-onbet-login__faq-question {
    font-size: 1.2em;
    color: #0A2463;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-onbet-login__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5em;
    line-height: 1;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-onbet-login__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-onbet-login__faq-answer {
    font-size: 1.05em;
    color: #555;
    padding-top: 10px;
    border-top: 1px solid #e0e0e0;
    display: none; /* Hidden by default */
}

.page-onbet-login__faq-question.active + .page-onbet-login__faq-answer {
    display: block;
}

.page-onbet-login__related-pages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-onbet-login__related-item {
    background-color: #f0f4f8;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-onbet-login__related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-onbet-login__related-title {
    font-size: 1.4em;
    color: #0A2463;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-onbet-login__related-title a {
    color: #0A2463;
    text-decoration: none;
}

.page-onbet-login__related-title a:hover {
    text-decoration: underline;
}

.page-onbet-login__related-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
    text-align: left;
}

.page-onbet-login__button {
    display: inline-block;
    background-color: #0A2463; /* Dark blue button */
    color: #FFD700; /* Gold text */
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 1px solid #0A2463;
}

.page-onbet-login__button:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #0A2463; /* Dark blue text on hover */
    border-color: #FFD700;
}

.page-onbet-login__final-cta {
    text-align: center;
    padding: 50px 0;
    background-color: #0A2463;
    color: #fff;
    margin-top: 60px;
    border-radius: 10px;
}

.page-onbet-login__final-cta .page-onbet-login__section-title {
    color: #FFD700;
}

.page-onbet-login__final-cta .page-onbet-login__section-title::after {
    background-color: #fff;
}

.page-onbet-login__final-cta p {
    color: #e0e0e0;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-onbet-login__hero-title {
        font-size: 2em;
    }

    .page-onbet-login__hero-subtitle {
        font-size: 1em;
    }

    .page-onbet-login__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-onbet-login__section-title {
        font-size: 1.7em;
    }

    .page-onbet-login p, .page-onbet-login__step-list li, .page-onbet-login__faq-item, .page-onbet-login__related-description {
        font-size: 0.95em;
    }

    .page-onbet-login__step-list li {
        padding-left: 50px;
    }

    .page-onbet-login__step-list li::before {
        width: 25px;
        height: 25px;
        font-size: 1em;
        left: 15px;
    }

    .page-onbet-login__related-pages {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-onbet-login__hero-section {
        padding: 50px 0;
    }

    .page-onbet-login__hero-title {
        font-size: 1.8em;
    }

    .page-onbet-login__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-onbet-login__section-title {
        font-size: 1.5em;
    }

    .page-onbet-login__related-item {
        padding: 20px;
    }

    .page-onbet-login__faq-question {
        font-size: 1.1em;
    }
}