/* style/resources-hit-club-game-download-guide.css */
.page-resources-hit-club-game-download-guide {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --text-color-dark-bg: #FFFFFF;
    --text-color-light-bg: #333333;
    --card-bg-light: #FFFFFF;
    --card-bg-dark: rgba(255, 255, 255, 0.1);
    --border-color: #e0e0e0;
    --button-register-bg: #C30808;
    --button-login-bg: #C30808;
    --button-font-color: #FFFF00;
}

.page-resources-hit-club-game-download-guide__dark-bg {
    background: var(--primary-color);
    color: var(--text-color-dark-bg);
}

.page-resources-hit-club-game-download-guide__light-bg {
    background: var(--secondary-color);
    color: var(--text-color-light-bg);
}

.page-resources-hit-club-game-download-guide__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px 40px;
    padding-top: var(--header-offset, 120px);
    position: relative;
    overflow: hidden;
}

.page-resources-hit-club-game-download-guide__hero-content {
    max-width: 800px;
    z-index: 1;
}

.page-resources-hit-club-game-download-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    color: var(--text-color-dark-bg);
}

.page-resources-hit-club-game-download-guide__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
    color: var(--text-color-dark-bg);
}

.page-resources-hit-club-game-download-guide__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-resources-hit-club-game-download-guide__btn-primary,
.page-resources-hit-club-game-download-guide__btn-secondary {
    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.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-resources-hit-club-game-download-guide__btn-primary {
    background-color: var(--button-register-bg);
    color: var(--button-font-color);
    border: 2px solid var(--button-register-bg);
}

.page-resources-hit-club-game-download-guide__btn-primary:hover {
    background-color: darken(var(--button-register-bg), 10%);
    transform: translateY(-2px);
}

.page-resources-hit-club-game-download-guide__btn-secondary {
    background-color: transparent;
    color: var(--button-font-color);
    border: 2px solid var(--button-register-bg);
}

.page-resources-hit-club-game-download-guide__btn-secondary:hover {
    background-color: var(--button-register-bg);
    color: var(--button-font-color);
    transform: translateY(-2px);
}

.page-resources-hit-club-game-download-guide__hero-image-wrapper {
    margin-top: 40px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-resources-hit-club-game-download-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.page-resources-hit-club-game-download-guide__section {
    padding: 60px 20px;
    text-align: center;
}

.page-resources-hit-club-game-download-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-resources-hit-club-game-download-guide__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: inherit;
    font-weight: bold;
}

.page-resources-hit-club-game-download-guide__section-description {
    font-size: 1.1em;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 40px;
    color: inherit;
}

.page-resources-hit-club-game-download-guide__features-grid,
.page-resources-hit-club-game-download-guide__download-guide-steps,
.page-resources-hit-club-game-download-guide__registration-steps,
.page-resources-hit-club-game-download-guide__promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-hit-club-game-download-guide__card {
    background: var(--card-bg-light);
    color: var(--text-color-light-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-hit-club-game-download-guide__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-resources-hit-club-game-download-guide__dark-bg .page-resources-hit-club-game-download-guide__card {
    background: var(--card-bg-dark);
    color: var(--text-color-dark-bg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-hit-club-game-download-guide__feature-title,
.page-resources-hit-club-game-download-guide__step-title,
.page-resources-hit-club-game-download-guide__promo-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: inherit;
}

.page-resources-hit-club-game-download-guide__card p,
.page-resources-hit-club-game-download-guide__card ol,
.page-resources-hit-club-game-download-guide__card ul {
    font-size: 1em;
    line-height: 1.7;
    color: inherit;
    margin-bottom: 15px;
}

.page-resources-hit-club-game-download-guide__card ol li,
.page-resources-hit-club-game-download-guide__card ul li {
    margin-bottom: 10px;
}

.page-resources-hit-club-game-download-guide__feature-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-top: 20px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-resources-hit-club-game-download-guide__image-container {
    margin-top: 40px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-resources-hit-club-game-download-guide__content-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-resources-hit-club-game-download-guide__sub-title {
    font-size: 2em;
    margin-top: 50px;
    margin-bottom: 20px;
    color: inherit;
}

.page-resources-hit-club-game-download-guide__list {
    list-style: disc inside;
    text-align: left;
    max-width: 800px;
    margin: 0 auto 30px;
    color: inherit;
}

.page-resources-hit-club-game-download-guide__list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.page-resources-hit-club-game-download-guide__btn-full-width {
    width: 100%;
    margin-top: 20px;
    text-align: center;
}

.page-resources-hit-club-game-download-guide__cta-center {
    margin-top: 40px;
    text-align: center;
}

.page-resources-hit-club-game-download-guide__btn-large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-resources-hit-club-game-download-guide__faq-list {
    margin-top: 40px;
}

.page-resources-hit-club-game-download-guide__faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.page-resources-hit-club-game-download-guide__dark-bg .page-resources-hit-club-game-download-guide__faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.page-resources-hit-club-game-download-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    color: inherit;
}

.page-resources-hit-club-game-download-guide__faq-item summary {
    list-style: none;
}

.page-resources-hit-club-game-download-guide__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-resources-hit-club-game-download-guide__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.page-resources-hit-club-game-download-guide__faq-item[open] .page-resources-hit-club-game-download-guide__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-hit-club-game-download-guide__faq-answer {
    padding: 0 0 15px 0;
    font-size: 1em;
    line-height: 1.6;
    color: inherit;
}

.page-resources-hit-club-game-download-guide__faq-answer p {
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-resources-hit-club-game-download-guide__hero-title {
        font-size: 2.8em;
    }
    .page-resources-hit-club-game-download-guide__section-title {
        font-size: 2em;
    }
    .page-resources-hit-club-game-download-guide__sub-title {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .page-resources-hit-club-game-download-guide__hero-section {
        padding: 60px 15px 30px;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-resources-hit-club-game-download-guide__hero-title {
        font-size: 2em;
    }
    .page-resources-hit-club-game-download-guide__hero-description {
        font-size: 1em;
    }
    .page-resources-hit-club-game-download-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }
    .page-resources-hit-club-game-download-guide__btn-primary,
    .page-resources-hit-club-game-download-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-hit-club-game-download-guide__section {
        padding: 40px 15px;
    }
    .page-resources-hit-club-game-download-guide__container {
        padding: 0;
    }
    .page-resources-hit-club-game-download-guide__section-title {
        font-size: 1.8em;
    }
    .page-resources-hit-club-game-download-guide__section-description {
        font-size: 0.95em;
    }
    .page-resources-hit-club-game-download-guide__features-grid,
    .page-resources-hit-club-game-download-guide__download-guide-steps,
    .page-resources-hit-club-game-download-guide__registration-steps,
    .page-resources-hit-club-game-download-guide__promotions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-resources-hit-club-game-download-guide__card {
        padding: 20px;
    }
    .page-resources-hit-club-game-download-guide__feature-title,
    .page-resources-hit-club-game-download-guide__step-title,
    .page-resources-hit-club-game-download-guide__promo-title {
        font-size: 1.4em;
    }
    .page-resources-hit-club-game-download-guide__card p,
    .page-resources-hit-club-game-download-guide__card ol,
    .page-resources-hit-club-game-download-guide__card ul {
        font-size: 0.95em;
    }
    .page-resources-hit-club-game-download-guide__sub-title {
        font-size: 1.5em;
    }
    .page-resources-hit-club-game-download-guide__list {
        padding-left: 20px;
    }
    .page-resources-hit-club-game-download-guide__faq-question {
        font-size: 1.1em;
    }
    .page-resources-hit-club-game-download-guide__faq-answer {
        font-size: 0.95em;
    }

    /* Image responsive force */
    .page-resources-hit-club-game-download-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-resources-hit-club-game-download-guide__hero-image-wrapper,
    .page-resources-hit-club-game-download-guide__image-container,
    .page-resources-hit-club-game-download-guide__section,
    .page-resources-hit-club-game-download-guide__card,
    .page-resources-hit-club-game-download-guide__container,
    .page-resources-hit-club-game-download-guide__cta-buttons,
    .page-resources-hit-club-game-download-guide__download-guide-steps,
    .page-resources-hit-club-game-download-guide__registration-steps,
    .page-resources-hit-club-game-download-guide__promotions-grid {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-resources-hit-club-game-download-guide__container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .page-resources-hit-club-game-download-guide__hero-title {
        font-size: 1.8em;
    }
    .page-resources-hit-club-game-download-guide__section-title {
        font-size: 1.6em;
    }
    .page-resources-hit-club-game-download-guide__feature-title,
    .page-resources-hit-club-game-download-guide__step-title,
    .page-resources-hit-club-game-download-guide__promo-title {
        font-size: 1.2em;
    }
    .page-resources-hit-club-game-download-guide__btn-primary,
    .page-resources-hit-club-game-download-guide__btn-secondary {
        font-size: 0.9em;
        padding: 10px 15px;
    }
}