/* style/resources-taya777-club-login-guide.css */

/* Base Styles for the Page Content */
.page-resources-taya777-club-login-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background #FFFFFF */
    background-color: #FFFFFF; /* Ensure content area background is white */
    padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
}

/* Hero Section */
.page-resources-taya777-club-login-guide__hero-section {
    position: relative;
    overflow: hidden;
    background-color: #000000; /* Dark background for hero content area */
    color: #FFFFFF; /* Light text for dark hero background */
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-resources-taya777-club-login-guide__hero-container {
    position: relative;
    width: 100%;
    max-width: 1920px; /* Max width for hero content */
}

.page-resources-taya777-club-login-guide__hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: brightness(0.6); /* Slightly dim image to make text readable */
}

.page-resources-taya777-club-login-guide__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 900px;
    padding: 20px;
    z-index: 10;
}

.page-resources-taya777-club-login-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-taya777-club-login-guide__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-resources-taya777-club-login-guide__hero-button {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    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-taya777-club-login-guide__hero-button--login {
    background-color: #FCBC45; /* Login color */
    color: #000000;
}

.page-resources-taya777-club-login-guide__hero-button--login:hover {
    background-color: #e0a53a;
    transform: translateY(-2px);
}

.page-resources-taya777-club-login-guide__hero-button--register {
    background-color: #FFFFFF; /* Register color */
    color: #000000;
    border: 1px solid #FCBC45;
}

.page-resources-taya777-club-login-guide__hero-button--register:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Content Area */
.page-resources-taya777-club-login-guide__content-area {
    max-width: 800px; /* Constrain content width for readability */
    margin: 40px auto;
    padding: 0 20px;
}

/* Table of Contents */
.page-resources-taya777-club-login-guide__table-of-contents {
    background-color: #f9f9f9;
    border-left: 5px solid #FCBC45;
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 5px;
}

.page-resources-taya777-club-login-guide__toc-title {
    font-size: 1.8em;
    color: #000000;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-resources-taya777-club-login-guide__toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-resources-taya777-club-login-guide__toc-list li {
    margin-bottom: 10px;
}

.page-resources-taya777-club-login-guide__toc-link {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-resources-taya777-club-login-guide__toc-link:hover {
    color: #FCBC45;
    text-decoration: underline;
}

/* Article Content */
.page-resources-taya777-club-login-guide__article-content {
    /* No specific styles needed here, sections handle content */
}

.page-resources-taya777-club-login-guide__section {
    margin-bottom: 50px;
}

.page-resources-taya777-club-login-guide__section-title {
    font-size: 2.2em;
    color: #000000;
    margin-bottom: 25px;
    border-bottom: 2px solid #FCBC45;
    padding-bottom: 10px;
}

.page-resources-taya777-club-login-guide__subsection-title {
    font-size: 1.7em;
    color: #000000;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-taya777-club-login-guide__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.7;
}

.page-resources-taya777-club-login-guide__link {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

.page-resources-taya777-club-login-guide__link:hover {
    text-decoration: underline;
}

/* General Button Styles */
.page-resources-taya777-club-login-guide__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    margin-top: 15px;
}

.page-resources-taya777-club-login-guide__button--primary {
    background-color: #FCBC45;
    color: #000000;
}