
    /* General styling for the page */
.page-8x-link {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #1a1a1a; /* Dark background */
    line-height: 1.6;
    padding-top: 10px; /* Small decorative top padding, assuming body has header offset */
}

/* Section styling */
.page-8x-link__section-title {
    font-size: 2.5em;
    color: #ffd700; /* Gold accent */
    text-align: center;
    margin-bottom: 20px;
    padding: 20px 15px 10px;
    line-height: 1.2;
}

.page-8x-link__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0 15px;
    color: #ccc;
}

/* Hero Section */
.page-8x-link__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    color: #fff;
    text-align: center;
    overflow: hidden;
    padding: 60px 20px; /* Adjusted padding for content */
}

.page-8x-link__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-8x-link__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay */
    z-index: 2;
}

.page-8x-link__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
}

.page-8x-link__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffd700; /* Gold accent */
    line-height: 1.1;
}

.page-8x-link__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-8x-link__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Buttons */
.page-8x-link__button {
    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.2s ease;
    white-space: nowrap; /* Prevent text wrapping */
}

.page-8x-link__button--primary {
    background-color: #ffd700; /* Gold */
    color: #1a1a1a;
    border: 2px solid #ffd700;
}

.page-8x-link__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-8x-link__button--secondary {
    background-color: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.page-8x-link__button--secondary:hover {
    background-color: #ffd700;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.page-8x-link__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-8x-link__button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

/* Product Section */
.page-8x-link__product-section {
    padding: 60px 20px;
    background-color: #222;
}

.page-8x-link__product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-8x-link__product-card {
    background-color: #2c2c2c;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box; /* Crucial for responsive lists */
}

.page-8x-link__product-card:hover {
    transform: translateY(-5px);
}

.page-8x-link__product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.page-8x-link__product-title {
    font-size: 1.8em;
    color: #ffd700;
    margin: 20px 15px 10px;
    flex-grow: 0; /* Prevent title from growing */
}

.page-8x-link__product-text {
    font-size: 1em;
    color: #ccc;
    padding: 0 15px 20px;
    flex-grow: 1; /* Allow text to grow */
}

/* Promotion Section */
.page-8x-link__promo-section {
    padding: 60px 20px;
    background-color: #1a1a1a;
}

.page-8x-link__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-8x-link__promo-card {
    background-color: #2c2c2c;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box; /* Crucial for responsive lists */
}

.page-8x-link__promo-card:hover {
    transform: translateY(-5px);
}

.page-8x-link__promo-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.page-8x-link__promo-title {
    font-size: 1.6em;
    color: #ffd700;
    margin: 20px 15px 10px;
    flex-grow: 0;
}

.page-8x-link__promo-text {
    font-size: 1em;
    color: #ccc;
    padding: 0 15px 20px;
    flex-grow: 1;
}

.page-8x-link__button-wrapper {
    padding-bottom: 20px;
}

/* About Section */
.page-8x-link__about-section {
    padding: 60px 20px;
    background-color: #222;
}

.page-8x-link__about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-8x-link__about-image {
    flex: 1 1 400px;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.page-8x-link__about-text {
    flex: 1 1 500px;
    font-size: 1.1em;
    color: #ccc;
}

.page-8x-link__about-text p {
    margin-bottom: 15px;
}

/* FAQ Section */
.page-8x-link__faq-section {
    padding: 60px 20px;
    background-color: #1a1a1a;
}

.page-8x-link__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-8x-link__faq-item {
    background-color: #2c2c2c;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-8x-link__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #3a3a3a;
    transition: background-color 0.3s ease;
    border-radius: 8px;
    user-select: none;
}

.page-8x-link__faq-question:hover {
    background-color: #4a4a4a;
}

.page-8x-link__faq-title {
    font-size: 1.3em;
    color: #ffd700;
    margin: 0;
    pointer-events: none; /* Crucial: Prevents text from blocking click event */
    flex-grow: 1;
    word-wrap: break-word; /* Ensure long titles wrap */
    overflow-wrap: break-word;
}

.page-8x-link__faq-toggle {
    font-size: 1.8em;
    color: #ffd700;
    margin-left: 15px;
    transition: transform 0.3s ease;
    pointer-events: none; /* Crucial: Prevents icon from blocking click event */
}

.page-8x-link__faq-item.active .page-8x-link__faq-toggle {
    transform: rotate(45deg); /* Change '+' to 'x' or '-' */
}

.page-8x-link__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    color: #ccc;
    font-size: 1.05em;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    box-sizing: border-box;
}

.page-8x-link__faq-item.active .page-8x-link__faq-answer {
    max-height: 2000px !important; /* Sufficiently large height */
    padding: 20px 25px !important;
    opacity: 1;
}

.page-8x-link__faq-answer p {
    margin: 0;
}

/* CTA Section */
.page-8x-link__cta-section {
    padding: 60px 20px;
    background-color: #2c2c2c;
    text-align: center;
}

.page-8x-link__cta-title {
    font-size: 2.8em;
    color: #ffd700;
    margin-bottom: 20px;
}

.page-8x-link__cta-description {
    font-size: 1.2em;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-8x-link__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Floating Buttons */
.page-8x-link__floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.page-8x-link__floating-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 50px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1em;
    text-decoration: none;
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-8x-link__floating-button--register {
    background-color: #ffd700; /* Gold */
    border: 2px solid #ffd700;
}

.page-8x-link__floating-button--register:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-8x-link__floating-button--login {
    background-color: #4CAF50; /* Green */
    border: 2px solid #4CAF50;
    color: #fff;
}

.page-8x-link__floating-button--login:hover {
    background-color: #45a049;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-8x-link__hero-title {
        font-size: 3em;
    }
    .page-8x-link__section-title {
        font-size: 2.2em;
    }
    .page-8x-link__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-8x-link__hero-section {
        min-height: 500px;
        padding: 40px 15px;
    }
    .page-8x-link__hero-title {
        font-size: 2.5em;
    }
    .page-8x-link__hero-description {
        font-size: 1.1em;
    }
    .page-8x-link__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-8x-link__button {
        width: 100%;
        max-width: 250px; /* Limit button width */
        margin: 0 auto;
    }

    .page-8x-link__section-title {
        font-size: 1.8em;
        padding: 15px 10px 8px;
    }
    .page-8x-link__section-description {
        font-size: 1em;
        margin-bottom: 30px;
    }

    /* Product Grid responsiveness */
    .page-8x-link__product-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
        padding: 0 15px; /* Add padding to grid itself */
    }
    .page-8x-link__product-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .page-8x-link__product-text {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    /* Promo Grid responsiveness */
    .page-8x-link__promo-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
        padding: 0 15px; /* Add padding to grid itself */
    }
    .page-8x-link__promo-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .page-8x-link__promo-text {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .page-8x-link__about-content {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }
    .page-8x-link__about-image {
        flex: none;
        width: 100%;
    }
    .page-8x-link__about-text {
        flex: none;
        width: 100%;
        padding: 0 10px;
    }

    /* FAQ responsiveness */
    .page-8x-link__faq-list {
        padding: 0 15px;
    }
    .page-8x-link__faq-question {
        padding: 15px 20px;
    }
    .page-8x-link__faq-title {
        font-size: 1.1em;
        word-break: break-word !important; /* Ensure long titles break */
    }
    .page-8x-link__faq-toggle {
        font-size: 1.5em;
    }
    .page-8x-link__faq-answer {
        padding: 15px 20px !important;
    }
    .page-8x-link__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .page-8x-link__cta-title {
        font-size: 2em;
    }
    .page-8x-link__cta-description {
        font-size: 1.1em;
    }
    .page-8x-link__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-8x-link__button--large {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .page-8x-link__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    .page-8x-link__floating-button {
        width: 100px;
        height: 45px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .page-8x-link__hero-title {
        font-size: 2em;
    }
    .page-8x-link__hero-description {
        font-size: 1em;
    }
    .page-8x-link__section-title {
        font-size: 1.6em;
    }
    .page-8x-link__cta-title {
        font-size: 1.8em;
    }
    .page-8x-link__faq-title {
        font-size: 1em;
    }
    .page-8x-link__faq-question {
        padding: 12px 15px;
    }
    .page-8x-link__faq-answer {
        padding: 12px 15px !important;
    }
}
  