/* style/resources-iwin-68-game-guide.css */
:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --accent-color-register: #C30808;
    --accent-color-login: #C30808;
    --text-on-dark-bg: #FFFFFF;
    --text-on-light-bg: #333333;
    --background-light: #FFFFFF;
    --border-color: #e0e0e0;
}

.page-resources-iwin-68-game-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-on-dark-bg); /* Default text color for body background */
    background: var(--background-color, #1a1a2e); /* Inherit from shared.css */
}

.page-resources-iwin-68-game-guide__light-bg {
    background: var(--background-light);
    color: var(--text-on-light-bg);
}

.page-resources-iwin-68-game-guide__dark-bg {
    background: var(--primary-color);
    color: var(--text-on-dark-bg);
}

/* Hero Section */
.page-resources-iwin-68-game-guide__hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-iwin-68-game-guide__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-resources-iwin-68-game-guide__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.page-resources-iwin-68-game-guide__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
    color: var(--text-on-dark-bg);
}

.page-resources-iwin-68-game-guide__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--text-on-dark-bg);
}

.page-resources-iwin-68-game-guide__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-on-dark-bg);
}

.page-resources-iwin-68-game-guide__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Buttons */
.page-resources-iwin-68-game-guide__btn-primary,
.page-resources-iwin-68-game-guide__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-resources-iwin-68-game-guide__btn-primary {
    background: var(--accent-color-register); /* Custom color for register/login buttons */
    color: var(--text-on-dark-bg); /* Ensure contrast, overriding #FFFF00 */
    border: 2px solid var(--accent-color-register);
}

.page-resources-iwin-68-game-guide__btn-primary:hover {
    background: #a30606;
    border-color: #a30606;
}

.page-resources-iwin-68-game-guide__btn-secondary {
    background: transparent;
    color: var(--accent-color-login); /* Custom color for login/register buttons */
    border: 2px solid var(--accent-color-login);
}

.page-resources-iwin-68-game-guide__btn-secondary:hover {
    background: var(--accent-color-login);
    color: var(--text-on-dark-bg);
}

/* Content Area */
.page-resources-iwin-68-game-guide__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    color: var(--text-on-light-bg);
}

.page-resources-iwin-68-game-guide__container {
    max-width: 900px;
    margin: 0 auto;
}

.page-resources-iwin-68-game-guide__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-top: 50px;
    margin-bottom: 25px;
    text-align: center;
}

.page-resources-iwin-68-game-guide__sub-section-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-resources-iwin-68-game-guide__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--text-on-light-bg);
}

.page-resources-iwin-68-game-guide__text-important {
    font-weight: bold;
    color: var(--accent-color-register);
}

.page-resources-iwin-68-game-guide__ordered-list {
    list-style-type: decimal;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-on-light-bg);
}

.page-resources-iwin-68-game-guide__ordered-list li {
    margin-bottom: 10px;
}

.page-resources-iwin-68-game-guide__ordered-list li a {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-resources-iwin-68-game-guide__image-wrapper {
    text-align: center;
    margin: 30px 0;
}

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

.page-resources-iwin-68-game-guide__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* FAQ Section */
.page-resources-iwin-68-game-guide__faq-list {
    margin-top: 30px;
}

.page-resources-iwin-68-game-guide__faq-item {
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-resources-iwin-68-game-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    background: var(--primary-color);
    color: var(--text-on-dark-bg);
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.page-resources-iwin-68-game-guide__faq-question:hover {
    background: #005a2e;
}

.page-resources-iwin-68-game-guide__faq-title {
    margin: 0;
    color: inherit;
}

.page-resources-iwin-68-game-guide__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-resources-iwin-68-game-guide__faq-item.active .page-resources-iwin-68-game-guide__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-iwin-68-game-guide__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-on-light-bg);
}

.page-resources-iwin-68-game-guide__faq-item.active .page-resources-iwin-68-game-guide__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 20px;
}

.page-resources-iwin-68-game-guide__faq-answer p {
    margin: 0;
}

/* Links */
.page-resources-iwin-68-game-guide a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-resources-iwin-68-game-guide a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-iwin-68-game-guide__main-title {
        font-size: 3em;
    }
}

@media (max-width: 768px) {
    .page-resources-iwin-68-game-guide {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-resources-iwin-68-game-guide__hero-section {
        min-height: 400px;
        padding-top: var(--header-offset, 120px) !important;
    }

    .page-resources-iwin-68-game-guide__main-title {
        font-size: 2.2em;
    }

    .page-resources-iwin-68-game-guide__hero-description {
        font-size: 1em;
    }

    .page-resources-iwin-68-game-guide__hero-buttons,
    .page-resources-iwin-68-game-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-resources-iwin-68-game-guide__btn-primary,
    .page-resources-iwin-68-game-guide__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-resources-iwin-68-game-guide__section-title {
        font-size: 2em;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .page-resources-iwin-68-game-guide__sub-section-title {
        font-size: 1.5em;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-resources-iwin-68-game-guide__content-area,
    .page-resources-iwin-68-game-guide__container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-resources-iwin-68-game-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-resources-iwin-68-game-guide__image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-resources-iwin-68-game-guide__faq-question {
        padding: 12px 15px;
        font-size: 1em;
    }

    .page-resources-iwin-68-game-guide__faq-answer {
        padding: 0 15px;
    }

    .page-resources-iwin-68-game-guide__faq-item.active .page-resources-iwin-68-game-guide__faq-answer {
        padding: 10px 15px;
    }
}