/* style/resources-ok88-login-guide.css */

/* General Styles for the Page Content */
.page-resources-ok88-login-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: #f8f9fa; /* Light background for the main content area */
}

.page-resources-ok88-login-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-resources-ok88-login-guide__section {
    padding: 60px 0;
    margin-bottom: 30px;
    background-color: #ffffff; /* Default section background */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-ok88-login-guide__section:last-of-type {
    margin-bottom: 0;
}

.page-resources-ok88-login-guide__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Primary color for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

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

/* Hero Section */
.page-resources-ok88-login-guide__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    background: linear-gradient(135deg, #26A9E0, #FFFFFF); /* Primary color gradient */
    color: #333333;
}

.page-resources-ok88-login-guide__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-resources-ok88-login-guide__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-resources-ok88-login-guide__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-resources-ok88-login-guide__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background for text */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-ok88-login-guide__main-title {
    font-size: 3em;
    color: #26A9E0; /* Primary color for main title */
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.page-resources-ok88-login-guide__description {
    font-size: 1.2em;
    color: #333333;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-ok88-login-guide__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-resources-ok88-login-guide__cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow long words to break */
    max-width: 100%; /* Ensure button doesn't overflow */
    box-sizing: border-box; /* Include padding and border in the element's total width */
}

.page-resources-ok88-login-guide__btn-primary {
    background: #EA7C07; /* Login button color */
    color: #ffffff;
    border: 2px solid #EA7C07;
}

.page-resources-ok88-login-guide__btn-primary:hover {
    background: #d46e06;
    border-color: #d46e06;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-ok88-login-guide__btn-secondary {
    background: #26A9E0; /* Primary color */
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-resources-ok88-login-guide__btn-secondary:hover {
    background: #1e87bb;
    border-color: #1e87bb;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-ok88-login-guide__cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Introduction Section */
.page-resources-ok88-login-guide__introduction {
    background-color: #f8f9fa;
    color: #333333;
}

/* Login Steps Section */
.page-resources-ok88-login-guide__login-steps {
    background-color: #ffffff;
}

.page-resources-ok88-login-guide__step-card {
    display: flex;
    flex-direction: column;
    background-color: #fefefe;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 30px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-ok88-login-guide__card-title {
    font-size: 1.8em;
    color: #26A9E0;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.page-resources-ok88-login-guide__card-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.page-resources-ok88-login-guide__card-image {
    flex-shrink: 0;
    width: 40%;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 100%; /* Ensure images are responsive */
    height: auto;
    display: block;
    object-fit: cover;
}

.page-resources-ok88-login-guide__ordered-list {
    list-style-type: decimal;
    padding-left: 25px;
    flex-grow: 1;
    font-size: 1.05em;
    color: #555555;
}

.page-resources-ok88-login-guide__ordered-list li {
    margin-bottom: 10px;
}

.page-resources-ok88-login-guide__ordered-list li strong {
    color: #26A9E0;
}

/* Common Issues Section */
.page-resources-ok88-login-guide__common-issues {
    background-color: #f8f9fa;
}

.page-resources-ok88-login-guide__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-resources-ok88-login-guide__issue-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

/* Security Tips Section */
.page-resources-ok88-login-guide__security-tips {
    background-color: #ffffff;
}

.page-resources-ok88-login-guide__flex-container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-resources-ok88-login-guide__image-wrapper {
    flex: 1;
    min-width: 300px;
}

.page-resources-ok88-login-guide__main-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 100%; /* Ensure images are responsive */
    display: block;
    object-fit: cover;
}

.page-resources-ok88-login-guide__unordered-list {
    flex: 1;
    list-style-type: disc;
    padding-left: 25px;
    font-size: 1.05em;
    color: #555555;
}

.page-resources-ok88-login-guide__unordered-list li {
    margin-bottom: 10px;
}

.page-resources-ok88-login-guide__unordered-list li strong {
    color: #26A9E0;
}

/* Explore Games Section */
.page-resources-ok88-login-guide__explore-games {
    background-color: #f8f9fa;
}

.page-resources-ok88-login-guide__game-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-resources-ok88-login-guide__game-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-resources-ok88-login-guide__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-ok88-login-guide__game-card img {
    width: 100%;
     /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
    max-width: 100%; /* Ensure images are responsive */
    display: block;
}

.page-resources-ok88-login-guide__game-card .page-resources-ok88-login-guide__card-title {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #26A9E0;
}

.page-resources-ok88-login-guide__game-card .page-resources-ok88-login-guide__card-title a {
    color: #26A9E0;
    text-decoration: none;
}

.page-resources-ok88-login-guide__game-card .page-resources-ok88-login-guide__card-title a:hover {
    text-decoration: underline;
}

/* Promotions Section */
.page-resources-ok88-login-guide__promotions {
    background-color: #ffffff;
}

.page-resources-ok88-login-guide__promotions-list {
    list-style-type: disc;
    padding-left: 25px;
    font-size: 1.05em;
    color: #555555;
}

.page-resources-ok88-login-guide__promotions-list li {
    margin-bottom: 10px;
    font-weight: 500;
}

/* Support Contact Section */
.page-resources-ok88-login-guide__support-contact {
    background-color: #f8f9fa;
}