:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --button-register: #C30808;
    --button-login: #C30808;
    --button-text-register-login: #FFFF00;
    --border-color: #e0e0e0;
    --background-light: #f9f9f9;
}

.page-resources-ok88-app-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--secondary-color);
}

.page-resources-ok88-app-guide__section {
    padding: 60px 0;
    background-color: var(--secondary-color);
}

.page-resources-ok88-app-guide__section:nth-of-type(even) {
    background-color: var(--background-light);
}

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

.page-resources-ok88-app-guide__section-title {
    font-size: 36px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-resources-ok88-app-guide__sub-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-resources-ok88-app-guide__text-block {
    margin-bottom: 20px;
    font-size: 17px;
}

.page-resources-ok88-app-guide__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    font-size: 17px;
}

.page-resources-ok88-app-guide__ordered-list {
    list-style: decimal;
    margin-left: 25px;
    margin-bottom: 20px;
    font-size: 17px;
}

.page-resources-ok88-app-guide__list-item {
    margin-bottom: 10px;
}

/* Hero Section */
.page-resources-ok88-app-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); /* Fixed header offset */
    background: linear-gradient(135deg, var(--primary-color) 0%, #000000 100%); /* Darker gradient for contrast */
    color: var(--text-light);
}

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

.page-resources-ok88-app-guide__hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-ok88-app-guide__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-resources-ok88-app-guide__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 15px;
}

.page-resources-ok88-app-guide__main-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: bold;
    line-height: 1.2;
}

.page-resources-ok88-app-guide__hero-description {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-resources-ok88-app-guide__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-resources-ok88-app-guide__btn-primary,
.page-resources-ok88-app-guide__btn-secondary,
.page-resources-ok88-app-guide__btn-register,
.page-resources-ok88-app-guide__btn-login,
.page-resources-ok88-app-guide__btn-download {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-resources-ok88-app-guide__btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}