
    /* Base styles for the page-uu-888 */
.page-uu-888 {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f0f2f5;
}

.page-uu-888__section-title {
    font-size: 2.5em;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 30px;
    padding-top: 40px;
    font-weight: bold;
}

.page-uu-888__section-description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Buttons */
.page-uu-888__button {
    display: inline-block;
    background-color: #ffc107;
    color: #1a1a2e;
    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;
    border: none;
    cursor: pointer;
    text-align: center;
}

.page-uu-888__button:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.page-uu-888__button--primary {
    background-color: #ffc107;
    color: #1a1a2e;
}

.page-uu-888__button--primary:hover {
    background-color: #e0a800;
}

.page-uu-888__button--cta {
    background-color: #007bff;
    color: #fff;
}

.page-uu-888__button--cta:hover {
    background-color: #0056b3;
}

/* Hero Section */
.page-uu-888__hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 10px 20px 60px 20px;
    overflow: hidden;
    box-sizing: border-box;
}

.page-uu-888__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6);
    max-width: 100%;
}

.page-uu-888__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

.page-uu-888__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
}

.page-uu-888__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-uu-888__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Sticky Buttons */
.page-uu-888__sticky-buttons {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 1000;
    width: auto;
    max-width: 90%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

.page-uu-888__sticky-button {
    display: block;
    flex: 1;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    box-sizing: border-box;
}

.page-uu-888__sticky-button--register {
    background-color: #ffc107;
    color: #1a1a2e;
}

.page-uu-888__sticky-button--register:hover {
    background-color: #e0a800;
    transform: translateY(-1px);
}

.page-uu-888__sticky-button--login {
    background-color: #007bff;
    color: #fff;
}

.page-uu-888__sticky-button--login:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
}


/* Features Section */
.page-uu-888__features-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

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

.page-uu-888__feature-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

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

.page-uu-888__feature-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    max-width: 100%;
    height: auto;
}

.page-uu-888__feature-title {
    font-size: 1.5em;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.page-uu-888__feature-description {
    color: #666;
    font-size: 1em;
}

/* Products Section */
.page-uu-888__products-section {
    padding: 60px 20px;
    background-color: #f0f2f5;
}

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

.page-uu-888__product-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.page-uu-888__product-card:hover {
    transform: translateY(-5px);
}

.page-uu-888__product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    max-width: 100%;
}

.page-uu-888__product-title {
    font-size: 1.6em;
    color: #1a1a2e;
    margin: 20px 15px 10px 15px;
}

.page-uu-888__product-description {
    color: #666;
    font-size: 1em;
    padding: 0 15px 20px 15px;
}

/* Promo Section */
.page-uu-888__promo-section {
    padding: 60px 20px;
    background-color: #1a1a2e;
    color: #f0f0f0;
    text-align: center;
}

.page-uu-888__promo-section .page-uu-888__section-title {
    color: #ffc107;
}

.page-uu-888__promo-section .page-uu-888__section-description {
    color: #ccc;
}

.page-uu-888__promo-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto 40px auto;
    gap: 30px;
}

.page-uu-888__promo-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.page-uu-888__promo-item {
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #fff;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.page-uu-888__promo-image {
    flex: 1;
    min-width: 400px;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    max-width: 100%;
}

.page-uu-888__button-container {
    margin-top: 30px;
}

/* Providers and Payments Sections */
.page-uu-888__providers-section,
.page-uu-888__payments-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.page-uu-888__providers-grid,
.page-uu-888__payments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}

.page-uu-888__provider-logo,
.page-uu-888__payment-logo {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
    box-sizing: border-box;
}

.page-uu-888__provider-logo:hover,
.page-uu-888__payment-logo:hover {
    transform: scale(1.05);
}

/* FAQ Section */
.page-uu-888__faq-section {
    padding: 60px 20px;
    background-color: #f0f2f5;
}

.page-uu-888__faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.page-uu-888__faq-item {
    background-color: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    box-sizing: border-box;
}

.page-uu-888__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    user-select: none;
    transition: background-color 0.3s ease;
}

.page-uu-888__faq-question:hover {
    background-color: #f5f5f5;
}

.page-uu-888__faq-title {
    font-size: 1.25em;
    color: #1a1a2e;
    margin: 0;
    font-weight: bold;
    pointer-events: none;
    flex-grow: 1;
}

.page-uu-888__faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: #ffc107;
    margin-left: 15px;
    pointer-events: none;
    width: 25px;
    text-align: center;
}

.page-uu-888__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    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: #f9f9f9;
}

.page-uu-888__faq-answer p {
    margin: 0;
    padding-bottom: 20px;
    color: #555;
    font-size: 1em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.page-uu-888__faq-item.active .page-uu-888__faq-answer {
    max-height: 2000px !important;
    padding: 20px 25px !important;
    opacity: 1;
}

.page-uu-888__faq-item.active .page-uu-888__faq-toggle {
    color: #007bff;
}

/* CTA Section */
.page-uu-888__cta-section {
    padding: 80px 20px;
    background-color: #007bff;
    color: #fff;
    text-align: center;
}

.page-uu-888__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
}

.page-uu-888__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-uu-888__hero-title {
        font-size: 2.8em;
    }
    .page-uu-888__hero-description {
        font-size: 1.1em;
    }
    .page-uu-888__section-title {
        font-size: 2em;
    }
    .page-uu-888__cta-title {
        font-size: 2.5em;
    }
    .page-uu-888__promo-content {
        flex-direction: column;
    }
    .page-uu-888__promo-image {
        min-width: unset;
        width: 100%;
    }
    .page-uu-888__promo-list {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-uu-888__hero-section {
        min-height: 450px;
        padding-bottom: 100px;
    }
    .page-uu-888__hero-title {
        font-size: 2.2em;
    }
    .page-uu-888__hero-description {
        font-size: 1em;
    }
    .page-uu-888__section-title {
        font-size: 1.8em;
    }
    .page-uu-888__section-description {
        font-size: 0.95em;
    }
    .page-uu-888__feature-item,
    .page-uu-888__product-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-uu-888__features-grid,
    .page-uu-888__products-grid,
    .page-uu-888__providers-grid,
    .page-uu-888__payments-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    .page-uu-888__promo-list,
    .page-uu-888__promo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 10px 15px !important;
    }
    .page-uu-888__promo-image {
        width: 100%;
        height: auto;
    }
    .page-uu-888__faq-question {
        padding: 15px 20px;
    }
    .page-uu-888__faq-title {
        font-size: 1.1em;
    }
    .page-uu-888__faq-toggle {
        font-size: 1.5em;
    }
    .page-uu-888__faq-answer {
        padding: 0 20px;
    }
    .page-uu-888__faq-item.active .page-uu-888__faq-answer {
        padding: 15px 20px !important;
    }
    .page-uu-888__cta-title {
        font-size: 2em;
    }
    .page-uu-888__cta-description {
        font-size: 1em;
    }
    .page-uu-888__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-uu-888__sticky-buttons {
        width: calc(100% - 40px);
        left: 50%;
        transform: translateX(-50%);
        bottom: 10px;
        gap: 10px;
        padding: 8px;
    }
    .page-uu-888__sticky-button {
        font-size: 0.9em;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .page-uu-888__hero-title {
        font-size: 1.8em;
    }
    .page-uu-888__hero-description {
        font-size: 0.9em;
    }
    .page-uu-888__section-title {
        font-size: 1.5em;
    }
    .page-uu-888__cta-title {
        font-size: 1.8em;
    }
    .page-uu-888__promo-image {
        min-width: unset;
        width: 100%;
    }
    .page-uu-888__promo-list {
        min-width: unset;
        width: 100%;
    }
    .page-uu-888__provider-logo,
    .page-uu-888__payment-logo {
        max-width: 150px;
    }
    .page-uu-888__sticky-buttons {
        width: calc(100% - 20px);
        left: 10px;
    }
}
  