/* style/resources-okbet-account-security.css */
.page-resources-okbet-account-security {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light background */
    background-color: #FFFFFF;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-resources-okbet-account-security__hero-section {
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
    text-align: center;
    background-color: #000000; /* Dark background for hero */
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-resources-okbet-account-security__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.page-resources-okbet-account-security__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-resources-okbet-account-security__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-resources-okbet-account-security__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FCBC45; /* Login button color for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-okbet-account-security__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-resources-okbet-account-security__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-resources-okbet-account-security__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-resources-okbet-account-security__button--register {
    background-color: #FFFFFF; /* Register color */
    color: #000000;
    border: 2px solid #FFFFFF;
}

.page-resources-okbet-account-security__button--register:hover {
    background-color: transparent;
    color: #FFFFFF;
    transform: translateY(-3px);
}

.page-resources-okbet-account-security__button--login {
    background-color: #FCBC45; /* Login color */
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-resources-okbet-account-security__button--login:hover {
    background-color: #e0a53b;
    transform: translateY(-3px);
}

.page-resources-okbet-account-security__content-area {
    max-width: 800px; /* Content width for readability */
    margin: 0 auto;
    padding: 40px 20px;
}

.page-resources-okbet-account-security__article {
    background-color: #FFFFFF;
    padding: 0;
    border-radius: 8px;
}

.page-resources-okbet-account-security__article-heading {
    font-size: 2em;
    color: #000000;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FCBC45;
    padding-bottom: 10px;
}

.page-resources-okbet-account-security__article-paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.7;
}

.page-resources-okbet-account-security__article-list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-resources-okbet-account-security__article-list-item {
    margin-bottom: 10px;
}

.page-resources-okbet-account-security__article-image {
    display: block;
    margin: 30px auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

.page-resources-okbet-account-security__inline-link {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

.page-resources-okbet-account-security__inline-link:hover {
    text-decoration: underline;
}

.page-resources-okbet-account-security__cta-section {
    background-color: #000000;
    color: #FFFFFF;
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    margin-top: 50px;
}

.page-resources-okbet-account-security__cta-title {
    font-size: 2.2em;
    margin-bottom: 15px;
    color: #FCBC45;
}

.page-resources-okbet-account-security__cta-description {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.page-resources-okbet-account-security__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-resources-okbet-account-security__back-link {
    margin-top: 40px;
    text-align: center;
    font-size: 1.1em;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .page-resources-okbet-account-security {
        padding-top: var(--header-offset, 80px);
    }

    .page-resources-okbet-account-security__hero-title {
        font-size: 2em;
    }

    .page-resources-okbet-account-security__hero-description {
        font-size: 1em;
    }

    .page-resources-okbet-account-security__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-resources-okbet-account-security__button {
        width: 80%;
        max-width: 300px;
        font-size: 1em;
        padding: 12px 25px;
    }

    .page-resources-okbet-account-security__content-area {
        padding: 20px 15px;
    }

    .page-resources-okbet-account-security__article-heading {
        font-size: 1.6em;
    }

    .page-resources-okbet-account-security__article-paragraph,
    .page-resources-okbet-account-security__article-list {
        font-size: 0.95em;
    }

    .page-resources-okbet-account-security__article-image {
        max-width: 100%;
        height: auto;
    }

    .page-resources-okbet-account-security__cta-title {
        font-size: 1.8em;
    }

    .page-resources-okbet-account-security__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-resources-okbet-account-security__hero-title {
        font-size: 1.6em;
    }

    .page-resources-okbet-account-security__button {
        width: 100%;
    }

    .page-resources-okbet-account-security__article-heading {
        font-size: 1.4em;
    }
}