
    /* Base styles for the page-678win-c scope */
.page-678win-c {
    font-family: 'Arial', sans-serif;
    color: #e0e0e0; /* Light text for dark background */
    background-color: #1a1a1a; /* Dark background */
    line-height: 1.6;
    padding-top: 10px; /* Small top padding, assuming body handles header offset */
}

.page-678win-c__section-title {
    color: #ffc107; /* Accent color for titles */
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    padding-top: 40px;
    font-weight: bold;
}

.page-678win-c__section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.1em;
    color: #cccccc;
}

/* Hero Section */
.page-678win-c__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 70vh;
    background-color: #000;
    overflow: hidden;
    padding: 20px;
    box-sizing: border-box;
}

.page-678win-c__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 0;
    max-width: 100%; /* Important for image responsiveness */
}

.page-678win-c__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
    border-radius: 10px;
}

.page-678win-c__hero-title {
    font-size: 3.5em;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    word-wrap: break-word; /* Ensure title wraps */
}

.page-678win-c__hero-description {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 30px;
    word-wrap: break-word;
}

.page-678win-c__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-678win-c__hero-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    color: #fff; /* Ensure text color is white for contrast */
}

.page-678win-c__hero-button--register {
    background-color: #007bff; /* Blue */
    border: 2px solid #007bff;
}

.page-678win-c__hero-button--register:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.page-678win-c__hero-button--login {
    background-color: #ffc107; /* Yellow/Gold */
    border: 2px solid #ffc107;
    color: #333; /* Dark text for yellow button */
}

.page-678win-c__hero-button--login:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

/* Floating Buttons */
.page-678win-c__floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.page-678win-c__floating-button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9em;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    word-wrap: break-word;
}

.page-678win-c__floating-button--login {
    background-color: #ffc107;
    color: #333;
}

.page-678win-c__floating-button:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* About Section */
.page-678win-c__about-section {
    background-color: #2a2a2a;
    padding: 60px 20px;
    text-align: center;
}

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

.page-678win-c__about-content p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #cccccc;
    word-wrap: break-word;
}

.page-678win-c__about-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* Games Section */
.page-678win-c__games-section {
    background-color: #1a1a1a;
    padding: 60px 20px;
}

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

.page-678win-c__game-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}

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

.page-678win-c__game-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    margin-bottom: 15px;
    max-width: 100%; /* Ensure responsiveness */
}

.page-678win-c__game-title {
    color: #ffc107;
    font-size: 1.4em;
    margin-bottom: 10px;
    padding: 0 15px;
    word-wrap: break-word;
}

.page-678win-c__game-description {
    color: #cccccc;
    font-size: 0.95em;
    padding: 0 15px;
    flex-grow: 1; /* Make description take available space */
    word-wrap: break-word;
}

/* Promotions Section */
.page-678win-c__promotions-section {
    background-color: #2a2a2a;
    padding: 60px 20px;
}

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

.page-678win-c__promotion-card {
    background-color: #3a3a3a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}

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

.page-678win-c__promotion-image {
    width: 100%;
    height: 220px; /* Fixed height */
    object-fit: cover;
    margin-bottom: 15px;
    max-width: 100%; /* Ensure responsiveness */
}

.page-678win-c__promotion-title {
    color: #007bff;
    font-size: 1.3em;
    margin-bottom: 10px;
    padding: 0 15px;
    word-wrap: break-word;
}

.page-678win-c__promotion-description {
    color: #cccccc;
    font-size: 0.95em;
    padding: 0 15px;
    flex-grow: 1;
    word-wrap: break-word;
}

/* Benefits Section */
.page-678win-c__benefits-section {
    background-color: #1a1a1a;
    padding: 60px 20px;
}

.page-678win-c__benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
}

.page-678win-c__benefits-item {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box; /* Crucial for list items */
}

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

.page-678win-c__benefits-icon {
    width: 100px; /* Minimum 200x200 for placeholder, but can be scaled down */
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    max-width: 100%; /* Ensure responsiveness */
}

.page-678win-c__benefits-heading {
    color: #ffc107;
    font-size: 1.3em;
    margin-bottom: 10px;
    word-wrap: break-word;
}

.page-678win-c__benefits-text {
    color: #cccccc;
    font-size: 0.95em;
    word-wrap: break-word;
}

/* Mobile Section */
.page-678win-c__mobile-section {
    background-color: #2a2a2a;
    padding: 60px 20px;
}

.page-678win-c__mobile-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.page-678win-c__mobile-image {
    flex: 1;
    max-width: 50%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    max-width: 100%; /* Ensure responsiveness */
}

.page-678win-c__mobile-text {
    flex: 1;
    text-align: left;
}

.page-678win-c__mobile-text p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #cccccc;
    word-wrap: break-word;
}

.page-678win-c__mobile-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-678win-c__mobile-download-button {
    background-color: #007bff;
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    word-wrap: break-word;
}

.page-678win-c__mobile-download-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* FAQ Section */
.page-678win-c__faq-section {
    background-color: #1a1a1a;
    padding: 60px 20px;
}

.page-678win-c__faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-678win-c__faq-item {
    background-color: #2a2a2a;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.page-678win-c__faq-question:hover {
    background-color: #4a4a4a;
}

.page-678win-c__faq-question-text {
    color: #fff;
    font-size: 1.2em;
    margin: 0;
    pointer-events: none; /* Prevent text from blocking click event */
    word-wrap: break-word;
    flex-grow: 1; /* Allow text to take up space */
}

.page-678win-c__faq-toggle {
    color: #ffc107;
    font-size: 1.8em;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent toggle icon from blocking click event */
}

.page-678win-c__faq-item.active .page-678win-c__faq-toggle {
    transform: rotate(45deg); /* Change + to X (or rotate to -) */
}

.page-678win-c__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px; /* Initial padding matches question */
    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: #2a2a2a;
}

.page-678win-c__faq-item.active .page-678win-c__faq-answer {
    max-height: 2000px !important; /* Sufficiently large value */
    padding: 20px 25px !important; /* Final padding */
    opacity: 1;
}

.page-678win-c__faq-answer p {
    margin: 0;
    color: #cccccc;
    font-size: 1em;
    word-wrap: break-word;
}

/* CTA Section */
.page-678win-c__cta-section {
    background-color: #3a3a3a;
    padding: 60px 20px;
    text-align: center;
}

.page-678win-c__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-678win-c__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    color: #fff; /* Ensure text color is white for contrast */
}

.page-678win-c__cta-button--register {
    background-color: #007bff;
    border: 2px solid #007bff;
}

.page-678win-c__cta-button--register:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.page-678win-c__cta-button--login {
    background-color: #ffc107;
    border: 2px solid #ffc107;
    color: #333; /* Dark text for yellow button */
}

.page-678win-c__cta-button--login:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}


/* Responsive Design */
@media (max-width: 768px) {
    .page-678win-c__hero-title {
        font-size: 2.5em;
    }

    .page-678win-c__hero-description {
        font-size: 1.1em;
    }

    .page-678win-c__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-678win-c__hero-button {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 12px 20px;
    }

    .page-678win-c__section-title {
        font-size: 2em;
        padding-top: 30px;
    }

    .page-678win-c__about-content {
        flex-direction: column;
    }

    .page-678win-c__about-image {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-678win-c__games-grid,
    .page-678win-c__promotions-grid,
    .page-678win-c__benefits-list {
        grid-template-columns: 1fr;
        padding: 0 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .page-678win-c__game-card,
    .page-678win-c__promotion-card,
    .page-678win-c__benefits-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px 15px; /* Adjust padding for mobile */
    }

    .page-678win-c__game-image,
    .page-678win-c__promotion-image,
    .page-678win-c__benefits-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .page-678win-c__mobile-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .page-678win-c__mobile-image {
        max-width: 80% !important; /* Keep image a bit smaller than full width */
        margin: 0 auto;
        box-sizing: border-box !important;
    }

    .page-678win-c__mobile-text {
        text-align: center;
    }

    .page-678win-c__mobile-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 280px;
        margin: 30px auto 0 auto;
    }

    .page-678win-c__mobile-download-button {
        width: 100%;
        box-sizing: border-box !important;
    }

    .page-678win-c__faq-question {
        padding: 15px 20px;
    }

    .page-678win-c__faq-question-text {
        font-size: 1.1em;
    }

    .page-678win-c__faq-toggle {
        font-size: 1.5em;
    }

    .page-678win-c__faq-answer {
        padding: 0 20px;
    }

    .page-678win-c__faq-item.active .page-678win-c__faq-answer {
        padding: 15px 20px !important;
    }

    .page-678win-c__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-678win-c__cta-button {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 12px 20px;
    }

    .page-678win-c__floating-buttons {
        bottom: 15px;
        right: 15px;
    }
}

/* Ensure all images are responsive */
.page-678win-c img {
    max-width: 100%;
    height: auto;
    display: block; /* Remove extra space below images */
}

/* General list item responsiveness for safety, though specific classes are used */
.page-678win-c ul,
.page-678win-c ol {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.page-678win-c ul li,
.page-678win-c ol 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;
}
  