
    .page-888vv-com {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0;
    background-color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 80px; /* Space for floating buttons */
}

.page-888vv-com * {
    box-sizing: border-box;
}

.page-888vv-com__hero-section {
    position: relative;
    width: 100%;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 10px 20px 60px; /* Added 10px top padding for decorative header offset */
}

.page-888vv-com__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.4;
}

.page-888vv-com__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.page-888vv-com__main-title {
    font-size: 2.5em;
    color: #ffd700; /* Gold */
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-888vv-com__hero-subtitle {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.page-888vv-com__section-title {
    font-size: 2em;
    color: #ffd700;
    text-align: center;
    margin: 40px 20px 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-888vv-com__section-description {
    font-size: 1em;
    color: #e0e0e0;
    text-align: center;
    margin: 0 20px 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-888vv-com__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-888vv-com__button--primary {
    background-color: #ffd700; /* Gold */
    color: #1a1a1a;
}

.page-888vv-com__button--primary:hover {
    background-color: #ffeb3b;
    transform: translateY(-2px);
}

.page-888vv-com__button--secondary {
    background-color: #333;
    color: #ffd700;
    border: 1px solid #ffd700;
}

.page-888vv-com__button--secondary:hover {
    background-color: #444;
    transform: translateY(-2px);
}

.page-888vv-com__button--large {
    padding: 15px 35px;
    font-size: 1.1em;
}

/* Product Showcase */
.page-888vv-com__product-showcase {
    padding: 40px 20px;
    background-color: #222;
}

.page-888vv-com__product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-888vv-com__product-item {
    background-color: #333;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-888vv-com__product-item:hover {
    transform: translateY(-5px);
}

.page-888vv-com__product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
    max-width: 100%;
}

.page-888vv-com__product-title {
    font-size: 1.5em;
    color: #ffd700;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-888vv-com__product-text {
    font-size: 0.95em;
    color: #ccc;
    padding: 0 15px;
}

/* Promotions Section */
.page-888vv-com__promotions {
    padding: 40px 20px;
    background-color: #1a1a1a;
}

.page-888vv-com__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-888vv-com__promo-item {
    background-color: #222;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-888vv-com__promo-item:hover {
    transform: translateY(-5px);
}

.page-888vv-com__promo-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 15px;
    max-width: 100%;
}

.page-888vv-com__promo-title {
    font-size: 1.4em;
    color: #ffd700;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-888vv-com__promo-text {
    font-size: 0.95em;
    color: #ccc;
    padding: 0 15px;
    margin-bottom: 20px;
}

/* About Us Section */
.page-888vv-com__about-us {
    padding: 40px 20px;
    background-color: #222;
}

.page-888vv-com__about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.page-888vv-com__about-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-888vv-com__about-text p {
    margin-bottom: 15px;
    color: #e0e0e0;
    font-size: 1.05em;
    text-align: center;
}

/* FAQ Section */
.page-888vv-com__faq-section {
    padding: 40px 20px;
    background-color: #1a1a1a;
}

.page-888vv-com__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-888vv-com__faq-item {
    background-color: #222;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-888vv-com__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #333;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}

.page-888vv-com__faq-question:hover {
    background-color: #444;
}

.page-888vv-com__faq-q-text {
    font-size: 1.1em;
    color: #ffd700;
    margin: 0;
    pointer-events: none; /* Prevent h3 from blocking click on parent */
}

.page-888vv-com__faq-toggle {
    font-size: 1.5em;
    color: #ffd700;
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent span from blocking click on parent */
}

.page-888vv-com__faq-item.active .page-888vv-com__faq-toggle {
    transform: rotate(45deg);
}

.page-888vv-com__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px; /* Initial padding */
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    color: #e0e0e0;
}

.page-888vv-com__faq-item.active .page-888vv-com__faq-answer {
    max-height: 2000px !important; /* Sufficiently large */
    padding: 20px 15px !important; /* Final padding */
    opacity: 1;
}

.page-888vv-com__faq-answer p {
    margin: 0;
}

/* Call to Action */
.page-888vv-com__call-to-action {
    padding: 50px 20px;
    background-color: #333;
    text-align: center;
}

/* Floating Buttons */
.page-888vv-com__floating-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.page-888vv-com__floating-btn {
    flex: 1;
    margin: 0 5px;
    padding: 12px 10px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    max-width: 180px; /* Limit width on larger screens */
}

.page-888vv-com__floating-btn--register {
    background-color: #ffd700; /* Gold */
    color: #1a1a1a;
}

.page-888vv-com__floating-btn--register:hover {
    background-color: #ffeb3b;
    transform: translateY(-2px);
}

.page-888vv-com__floating-btn--login {
    background-color: #007bff; /* Blue */
    color: #fff;
}

.page-888vv-com__floating-btn--login:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-888vv-com__main-title {
        font-size: 2em;
    }

    .page-888vv-com__hero-subtitle {
        font-size: 1em;
    }

    .page-888vv-com__section-title {
        font-size: 1.8em;
    }

    .page-888vv-com__section-description {
        font-size: 0.9em;
    }

    .page-888vv-com__product-grid,
    .page-888vv-com__promo-grid {
        grid-template-columns: 1fr;
    }

    .page-888vv-com__about-content {
        flex-direction: column;
    }

    .page-888vv-com__about-text p {
        text-align: left;
    }

    .page-888vv-com__faq-q-text {
        font-size: 1em;
    }

    /* List item specific mobile responsive requirements */
    .page-888vv-com__product-item,
    .page-888vv-com__promo-item,
    .page-888vv-com__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important; /* Adjust padding as needed */
        padding-right: 15px !important; /* Adjust padding as needed */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .page-888vv-com__faq-item .page-888vv-com__faq-answer {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    /* Image responsive requirements */
    .page-888vv-com__hero-image,
    .page-888vv-com__product-image,
    .page-888vv-com__promo-image,
    .page-888vv-com__about-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    
    .page-888vv-com__product-item, .page-888vv-com__promo-item {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .page-888vv-com__floating-buttons {
        padding: 8px 0;
    }
    .page-888vv-com__floating-btn {
        font-size: 1em;
        padding: 10px 8px;
        margin: 0 3px;
    }
}

@media (min-width: 769px) {
    .page-888vv-com__about-content {
        flex-direction: row;
        text-align: left;
    }
    .page-888vv-com__about-text {
        flex: 1;
        padding-right: 30px;
    }
    .page-888vv-com__about-image {
        flex-shrink: 0;
    }
}
  