
    /* General styles for the page-78win8 scope */
.page-78win8 {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #1a1a2e; /* Dark background */
    line-height: 1.6;
    padding-bottom: 80px; /* Space for floating buttons */
}

.page-78win8__section-title {
    font-size: 2.5em;
    color: #e94560; /* Accent color */
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
    font-weight: bold;
}

.page-78win8__section-subtitle {
    font-size: 1.2em;
    color: #ccc;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-78win8__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
    text-align: center;
}

.page-78win8__button--primary {
    background-color: #e94560; /* Primary accent color */
    color: #fff;
}

.page-78win8__button--primary:hover {
    background-color: #d83450;
    transform: translateY(-2px);
}

.page-78win8__button--secondary {
    background-color: transparent;
    color: #e94560;
    border: 2px solid #e94560;
    margin-left: 15px;
}

.page-78win8__button--secondary:hover {
    background-color: #e94560;
    color: #fff;
    transform: translateY(-2px);
}

.page-78win8__button--small {
    padding: 8px 15px;
    font-size: 0.9em;
    border-radius: 20px;
    background-color: #e94560;
    color: #fff;
}

.page-78win8__button--small:hover {
    background-color: #d83450;
    transform: translateY(-1px);
}

/* Hero Section */
.page-78win8__hero-section {
    position: relative;
    padding: 10px 20px 80px; /* 10px top padding for fixed header offset */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 60vh;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1d 100%);
}

.page-78win8__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background image */
    z-index: 0;
}

.page-78win8__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-78win8__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #f7f7f7;
    line-height: 1.2;
    font-weight: bold;
}

.page-78win8__hero-description {
    font-size: 1.3em;
    color: #ddd;
    margin-bottom: 30px;
}

.page-78win8__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px; /* Spacing between buttons */
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Features Section */
.page-78win8__features-section {
    padding: 60px 20px;
    background-color: #0f0f1d;
}

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

.page-78win8__feature-item {
    background-color: #2a2a4a;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-78win8__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-78win8__feature-icon {
    width: 250px; /* Min size 200x200, so 250 is good */
    height: auto;
    max-width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

.page-78win8__feature-heading {
    font-size: 1.8em;
    color: #e94560;
    margin-bottom: 10px;
}

.page-78win8__feature-text {
    font-size: 1em;
    color: #ccc;
}

/* Products Section */
.page-78win8__products-section {
    padding: 60px 20px;
    background-color: #1a1a2e;
}

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

.page-78win8__product-card {
    background-color: #2a2a4a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-78win8__product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-78win8__product-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-bottom: 3px solid #e94560;
}

.page-78win8__product-title {
    font-size: 1.5em;
    color: #f7f7f7;
    margin: 20px 0 10px;
}

.page-78win8__product-description {
    font-size: 0.95em;
    color: #ccc;
    padding: 0 20px 20px;
}

/* Promotions Section */
.page-78win8__promo-section {
    padding: 60px 20px;
    background-color: #0f0f1d;
}

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

.page-78win8__promo-card {
    background-color: #2a2a4a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-78win8__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-78win8__promo-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 3px solid #e94560;
    margin-bottom: 20px;
}

.page-78win8__promo-title {
    font-size: 1.6em;
    color: #f7f7f7;
    margin-bottom: 10px;
    padding: 0 20px;
}

.page-78win8__promo-description {
    font-size: 0.95em;
    color: #ccc;
    margin-bottom: 20px;
    padding: 0 20px;
}

/* About Section */
.page-78win8__about-section {
    padding: 60px 20px;
    background-color: #1a1a2e;
}

.page-78win8__about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.page-78win8__about-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.page-78win8__about-text {
    text-align: center;
    max-width: 800px;
}

.page-78win8__about-text p {
    font-size: 1.1em;
    color: #ccc;
    margin-bottom: 20px;
}

/* FAQ Section */
.page-78win8__faq-section {
    padding: 60px 20px;
    background-color: #0f0f1d;
}

.page-78win8__faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.page-78win8__faq-item {
    background-color: #2a2a4a;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

.page-78win8__faq-question:hover {
    background-color: #4a4a6a;
}

.page-78win8__faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: #f7f7f7;
    pointer-events: none; /* Prevent h3 from blocking click on parent div */
}

.page-78win8__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #e94560;
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent toggle from blocking click on parent div */
}

.page-78win8__faq-item.active .page-78win8__faq-toggle {
    transform: rotate(45deg); /* Change + to X-like or - */
}

.page-78win8__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    opacity: 0;
    color: #ccc;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
}

.page-78win8__faq-item.active .page-78win8__faq-answer {
    max-height: 2000px !important; /* Sufficiently large to show content */
    padding: 20px !important;
    opacity: 1;
}

.page-78win8__faq-answer p {
    margin: 0;
    font-size: 1em;
}

/* Call to Action Section */
.page-78win8__cta-section {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #e94560 0%, #d83450 100%);
    color: #fff;
}

.page-78win8__cta-section .page-78win8__section-title {
    color: #fff;
}

.page-78win8__cta-section .page-78win8__section-subtitle {
    color: #f0f0f0;
    margin-bottom: 30px;
}

.page-78win8__button--cta {
    background-color: #1a1a2e;
    color: #fff;
    font-size: 1.2em;
    padding: 15px 35px;
}

.page-78win8__button--cta:hover {
    background-color: #0f0f1d;
}

/* Floating Register/Login Buttons */
.page-78win8__floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 1000;
}

.page-78win8__floating-button {
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.page-78win8__floating-button--register {
    background-color: #e94560;
    color: #fff;
}

.page-78win8__floating-button--register:hover {
    background-color: #d83450;
    transform: translateY(-2px);
}

.page-78win8__floating-button--login {
    background-color: #4CAF50; /* Green for login */
    color: #fff;
}

.page-78win8__floating-button--login:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}


/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-78win8__hero-title {
        font-size: 3em;
    }
    .page-78win8__hero-description {
        font-size: 1.1em;
    }
    .page-78win8__section-title {
        font-size: 2em;
    }
    .page-78win8__section-subtitle {
        font-size: 1.1em;
    }
    .page-78win8__about-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-78win8__hero-section {
        padding: 10px 15px 60px;
        min-height: 50vh;
    }
    .page-78win8__hero-title {
        font-size: 2.2em;
    }
    .page-78win8__hero-description {
        font-size: 1em;
    }
    .page-78win8__hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .page-78win8__button--secondary {
        margin-left: 0; /* Remove margin for stacked buttons */
    }

    .page-78win8__section-title {
        font-size: 1.8em;
        padding-top: 30px;
    }
    .page-78win8__section-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
    }

    /* List item responsive requirements */
    .page-78win8__features-grid,
    .page-78win8__products-grid,
    .page-78win8__promo-grid {
        grid-template-columns: 1fr !important; /* Force single column */
        gap: 20px !important;
        padding: 0 15px !important; /* Adjust padding for container */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .page-78win8__feature-item,
    .page-78win8__product-card,
    .page-78win8__promo-card,
    .page-78win8__faq-item {
        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; /* For long keywords */
    }
    .page-78win8__feature-item p,
    .page-78win8__product-card p,
    .page-78win8__promo-card p,
    .page-78win8__faq-answer p {
        padding: 0 !important; /* Reduce padding inside items if needed */
    }

    .page-78win8__feature-icon {
        width: 200px; /* Ensure min size */
    }
    .page-78win8__product-image,
    .page-78win8__promo-image {
        height: 180px;
    }
    .page-78win8__about-image {
        border-radius: 0;
    }
    .page-78win8__about-text {
        padding: 0 15px;
    }
    .page-78win8__faq-question {
        padding: 12px 15px;
    }
    .page-78win8__faq-question h3 {
        font-size: 1.1em;
    }
    .page-78win8__faq-answer {
        padding: 15px !important;
    }
    .page-78win8__floating-buttons {
        gap: 10px;
        bottom: 15px;
    }
    .page-78win8__floating-button {
        padding: 8px 15px;
        font-size: 0.9em;
    }
    .page-78win8 {
        padding-bottom: 70px; /* Adjust space for smaller floating buttons */
    }
}

@media (max-width: 480px) {
    .page-78win8__hero-title {
        font-size: 1.8em;
    }
    .page-78win8__hero-description {
        font-size: 0.9em;
    }
    .page-78win8__section-title {
        font-size: 1.5em;
    }
    .page-78win8__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-78win8__floating-buttons {
        width: 90%;
        justify-content: space-around;
        gap: 0;
    }
    .page-78win8__floating-button {
        flex-grow: 1;
        margin: 0 5px;
    }
}
  