
    :root {
    --page-hit-club-2026-primary-color: #e0b000; /* Gold/Yellow */
    --page-hit-club-2026-secondary-color: #333; /* Dark Grey */
    --page-hit-club-2026-background-dark: #1a1a1a; /* Very Dark Grey */
    --page-hit-club-2026-background-light: #2a2a2a; /* Slightly lighter dark grey */
    --page-hit-club-2026-text-color: #f0f0f0; /* Off-white */
    --page-hit-club-2026-accent-color: #a00; /* Red for emphasis */
    --page-hit-club-2026-border-color: #444;
    --page-hit-club-2026-button-hover-bg: #f5d76e; /* Lighter gold */
    --page-hit-club-2026-button-hover-text: #1a1a1a;
}

.page-hit-club-2026 {
    font-family: 'Arial', sans-serif;
    color: var(--page-hit-club-2026-text-color);
    background-color: var(--page-hit-club-2026-background-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.page-hit-club-2026__hero-section {
    position: relative;
    padding: 10px 20px 60px; /* Small top padding, relying on body for header offset */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 600px;
    background-color: var(--page-hit-club-2026-background-dark);
    overflow: hidden;
}

.page-hit-club-2026__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-hit-club-2026__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Darken image for text readability */
}

.page-hit-club-2026__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.page-hit-club-2026__hero-title {
    font-size: 2.8em;
    color: var(--page-hit-club-2026-primary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-hit-club-2026__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--page-hit-club-2026-text-color);
}

.page-hit-club-2026__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-hit-club-2026__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.page-hit-club-2026__button--primary {
    background-color: var(--page-hit-club-2026-primary-color);
    color: var(--page-hit-club-2026-background-dark);
    border: 2px solid var(--page-hit-club-2026-primary-color);
}

.page-hit-club-2026__button--primary:hover {
    background-color: var(--page-hit-club-2026-button-hover-bg);
    color: var(--page-hit-club-2026-button-hover-text);
}

.page-hit-club-2026__button--secondary {
    background-color: transparent;
    color: var(--page-hit-club-2026-primary-color);
    border: 2px solid var(--page-hit-club-2026-primary-color);
}

.page-hit-club-2026__button--secondary:hover {
    background-color: var(--page-hit-club-2026-primary-color);
    color: var(--page-hit-club-2026-background-dark);
}

.page-hit-club-2026__floating-buttons-wrapper {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    display: none; /* Hidden by default, only visible on mobile */
}

.page-hit-club-2026__floating-buttons {
    display: flex;
    justify-content: space-around;
    max-width: 500px;
    margin: 0 auto;
}

.page-hit-club-2026__floating-button {
    flex: 1;
    text-align: center;
    padding: 12px 15px;
    margin: 0 5px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-hit-club-2026__floating-button--register {
    background-color: var(--page-hit-club-2026-primary-color);
    color: var(--page-hit-club-2026-background-dark);
}

.page-hit-club-2026__floating-button--register:hover {
    background-color: var(--page-hit-club-2026-button-hover-bg);
}

.page-hit-club-2026__floating-button--login {
    background-color: var(--page-hit-club-2026-secondary-color);
    color: var(--page-hit-club-2026-text-color);
    border: 1px solid var(--page-hit-club-2026-primary-color);
}

.page-hit-club-2026__floating-button--login:hover {
    background-color: var(--page-hit-club-2026-primary-color);
    color: var(--page-hit-club-2026-background-dark);
}

.page-hit-club-2026__section-title {
    font-size: 2.2em;
    color: var(--page-hit-club-2026-primary-color);
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.page-hit-club-2026__section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1em;
    color: var(--page-hit-club-2026-text-color);
}

.page-hit-club-2026__products-section,
.page-hit-club-2026__promotions-section,
.page-hit-club-2026__why-choose-section,
.page-hit-club-2026__download-section,
.page-hit-club-2026__faq-section,
.page-hit-club-2026__info-section {
    padding: 40px 20px;
    background-color: var(--page-hit-club-2026-background-light);
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.page-hit-club-2026__products-grid,
.page-hit-club-2026__promotion-cards,
.page-hit-club-2026__why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-hit-club-2026__product-card,
.page-hit-club-2026__promotion-card,
.page-hit-club-2026__why-choose-item {
    background-color: var(--page-hit-club-2026-secondary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.page-hit-club-2026__product-card:hover,
.page-hit-club-2026__promotion-card:hover,
.page-hit-club-2026__why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}

.page-hit-club-2026__product-image,
.page-hit-club-2026__promotion-image,
.page-hit-club-2026__why-choose-image,
.page-hit-club-2026__download-image {
    width: 100%;
    height: 250px; /* Consistent height for images */
    object-fit: cover;
    border-bottom: 1px solid var(--page-hit-club-2026-border-color);
}

.page-hit-club-2026__product-title,
.page-hit-club-2026__promotion-title,
.page-hit-club-2026__why-choose-title {
    font-size: 1.5em;
    color: var(--page-hit-club-2026-primary-color);
    margin: 20px 15px 10px;
}

.page-hit-club-2026__product-text,
.page-hit-club-2026__promotion-text,
.page-hit-club-2026__why-choose-text {
    font-size: 1em;
    color: var(--page-hit-club-2026-text-color);
    padding: 0 15px 20px;
    flex-grow: 1;
}

.page-hit-club-2026__button-center {
    text-align: center;
    margin-top: 40px;
}

.page-hit-club-2026__download-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
    align-items: center;
}

.page-hit-club-2026__download-steps {
    flex: 1;
    min-width: 300px;
}

.page-hit-club-2026__step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.page-hit-club-2026__step-number {
    background-color: var(--page-hit-club-2026-primary-color);
    color: var(--page-hit-club-2026-background-dark);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3em;
    flex-shrink: 0;
    margin-right: 15px;
}

.page-hit-club-2026__step-title {
    font-size: 1.4em;
    color: var(--page-hit-club-2026-primary-color);
    margin-top: 5px;
    margin-bottom: 5px;
}

.page-hit-club-2026__step-text {
    font-size: 1em;
    color: var(--page-hit-club-2026-text-color);
}

.page-hit-club-2026__download-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-hit-club-2026__download-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-hit-club-2026__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-hit-club-2026__faq-item {
    background-color: var(--page-hit-club-2026-secondary-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--page-hit-club-2026-border-color);
}

.page-hit-club-2026__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    user-select: none;
    background-color: var(--page-hit-club-2026-secondary-color);
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease, border-bottom 0.3s ease;
}

.page-hit-club-2026__faq-question:hover {
    background-color: #444;
}

.page-hit-club-2026__faq-item.active .page-hit-club-2026__faq-question {
    border-bottom: 1px solid var(--page-hit-club-2026-border-color);
}

.page-hit-club-2026__faq-title {
    font-size: 1.2em;
    color: var(--page-hit-club-2026-primary-color);
    margin: 0;
    pointer-events: none; /* Prevent h3 from blocking click */
}

.page-hit-club-2026__faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--page-hit-club-2026-primary-color);
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent span from blocking click */
}

.page-hit-club-2026__faq-item.active .page-hit-club-2026__faq-toggle {
    transform: rotate(45deg); /* Change + to X or similar */
}

.page-hit-club-2026__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    background-color: var(--page-hit-club-2026-background-light);
    color: var(--page-hit-club-2026-text-color);
}

.page-hit-club-2026__faq-item.active .page-hit-club-2026__faq-answer {
    max-height: 2000px !important; /* Sufficiently large */
    padding: 20px 15px !important;
    opacity: 1;
}

.page-hit-club-2026__faq-answer p {
    margin: 0;
    padding: 0;
}

.page-hit-club-2026__info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-hit-club-2026__info-block {
    background-color: var(--page-hit-club-2026-secondary-color);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--page-hit-club-2026-border-color);
}

.page-hit-club-2026__info-title {
    font-size: 1.6em;
    color: var(--page-hit-club-2026-primary-color);
    margin-bottom: 15px;
}

.page-hit-club-2026__info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-hit-club-2026__info-list li {
    font-size: 1.1em;
    margin-bottom: 8px;
    color: var(--page-hit-club-2026-text-color);
}

.page-hit-club-2026__info-list li:last-child {
    margin-bottom: 0;
}

.page-hit-club-2026__keyword-emphasis {
    color: var(--page-hit-club-2026-primary-color);
    font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-hit-club-2026__hero-title {
        font-size: 2.5em;
    }
    .page-hit-club-2026__section-title {
        font-size: 2em;
    }
    .page-hit-club-2026__products-grid,
    .page-hit-club-2026__promotion-cards,
    .page-hit-club-2026__why-choose-grid,
    .page-hit-club-2026__info-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-hit-club-2026__hero-section {
        padding-bottom: 100px; /* Make space for floating buttons */
        min-height: 500px;
    }
    .page-hit-club-2026__hero-title {
        font-size: 2em;
    }
    .page-hit-club-2026__hero-description {
        font-size: 1em;
    }
    .page-hit-club-2026__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-hit-club-2026__button {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }

    .page-hit-club-2026__floating-buttons-wrapper {
        display: block; /* Show floating buttons on mobile */
    }

    .page-hit-club-2026__section-title {
        font-size: 1.8em;
    }
    .page-hit-club-2026__section-description {
        font-size: 0.95em;
    }

    .page-hit-club-2026__products-grid,
    .page-hit-club-2026__promotion-cards,
    .page-hit-club-2026__why-choose-grid,
    .page-hit-club-2026__info-grid {
        grid-template-columns: 1fr; /* Single column layout */
        padding: 0 10px;
    }

    .page-hit-club-2026__product-card,
    .page-hit-club-2026__promotion-card,
    .page-hit-club-2026__why-choose-item,
    .page-hit-club-2026__info-block {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px;
    }

    .page-hit-club-2026__product-image,
    .page-hit-club-2026__promotion-image,
    .page-hit-club-2026__why-choose-image,
    .page-hit-club-2026__download-image {
        max-width: 100% !important;
        height: auto !important;
        object-fit: cover;
    }

    .page-hit-club-2026__download-content {
        flex-direction: column;
    }

    .page-hit-club-2026__download-steps {
        width: 100%;
        min-width: unset;
    }

    .page-hit-club-2026__download-image-wrapper {
        width: 100%;
        min-width: unset;
    }

    .page-hit-club-2026__faq-title {
        font-size: 1.1em;
    }
    .page-hit-club-2026__faq-toggle {
        font-size: 1.5em;
    }
    .page-hit-club-2026__faq-answer p {
        font-size: 0.95em;
    }

    /* List item specific responsive styles */
    .page-hit-club-2026__info-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .page-hit-club-2026__info-list li {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        padding: 5px 0; /* Adjust padding for mobile */
    }
}

@media (max-width: 480px) {
    .page-hit-club-2026__hero-title {
        font-size: 1.8em;
    }
    .page-hit-club-2026__section-title {
        font-size: 1.6em;
    }
    .page-hit-club-2026__button {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-hit-club-2026__floating-button {
        font-size: 1em;
        padding: 10px 10px;
    }
}
  