
    .page-8swin {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
    box-sizing: border-box;
    padding-top: 10px; /* Small decorative padding, assuming body handles main offset */
}

/* Container for content centering and max-width */
.page-8swin__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Section titles */
.page-8swin__section-title {
    text-align: center;
    color: #0056b3; /* Dark blue for good contrast */
    margin-bottom: 30px;
    font-size: 2.2em;
    font-weight: 700;
}

/* Text blocks */
.page-8swin__text-block {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #555;
}

/* Highlighted text */
.page-8swin__highlight {
    color: #e00000; /* Red for emphasis, good contrast with light background */
    font-weight: bold;
}

/* Buttons */
.page-8swin__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    cursor: pointer;
}

.page-8swin__button--primary {
    background-color: #007bff; /* Blue */
    color: #fff;
    border: 1px solid #007bff;
}

.page-8swin__button--primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.page-8swin__button--secondary {
    background-color: #fff;
    color: #007bff;
    border: 1px solid #007bff;
    margin-left: 15px;
}

.page-8swin__button--secondary:hover {
    background-color: #e9ecef;
    color: #0056b3;
}

/* Image styling */
.page-8swin__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    box-sizing: border-box;
}

.page-8swin__image--centered {
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-8swin__hero-section {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 80px 15px;
    text-align: center;
    margin-bottom: 40px;
    box-sizing: border-box;
    border-radius: 0 0 15px 15px;
    overflow: hidden; /* Ensure content doesn't overflow rounded corners */
}

.page-8swin__hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-8swin__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-8swin__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-8swin__hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.page-8swin__hero-actions .page-8swin__button {
    min-width: 150px; /* Ensure buttons have a decent minimum width */
}

/* About Section */
.page-8swin__about-section {
    padding: 40px 0;
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-8swin__about-content {
    padding: 0 15px;
}

/* Games Section */
.page-8swin__games-section {
    padding: 40px 0;
    margin-bottom: 40px;
}

.page-8swin__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 0 15px;
    box-sizing: border-box;
}

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

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

.page-8swin__game-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
}

.page-8swin__game-title {
    font-size: 1.5em;
    color: #007bff;
    margin: 15px 0 10px;
    padding: 0 15px;
}

.page-8swin__game-description {
    font-size: 0.95em;
    color: #666;
    padding: 0 15px 20px;
}

/* Promotions Section */
.page-8swin__promo-section {
    padding: 40px 0;
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-8swin__promo-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.page-8swin__promo-item {
    flex: 1 1 calc(33% - 25px); /* Three items per row on desktop */
    min-width: 280px; /* Minimum width for mobile responsiveness */
    background-color: #fefefe;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: box-shadow 0.3s ease;
    box-sizing: border-box; /* Crucial for list item width calculation */
    word-wrap: break-word; /* Ensure text wraps */
    overflow-wrap: break-word; /* Ensure text wraps */
}

.page-8swin__promo-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page-8swin__promo-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
}

.page-8swin__promo-title {
    font-size: 1.3em;
    color: #e00000; /* Red for promotions */
    margin: 15px 0 10px;
    padding: 0 15px;
}

.page-8swin__promo-description {
    font-size: 0.9em;
    color: #666;
    padding: 0 15px 20px;
}

.page-8swin__promo-cta {
    text-align: center;
    margin-top: 40px;
}

/* Payments Section */
.page-8swin__payments-section {
    padding: 40px 0;
    margin-bottom: 40px;
}

.page-8swin__payment-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0 15px;
    box-sizing: border-box;
}

.page-8swin__payment-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 1px 5px rgba(0,0,0,0.03);
    min-width: 120px;
    flex: 1 1 auto; /* Allow items to grow/shrink */
    max-width: 180px; /* Max width for payment logos */
    box-sizing: border-box;
}

.page-8swin__payment-logo {
    max-width: 100px;
    height: auto;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.page-8swin__payment-name {
    font-weight: bold;
    color: #333;
    font-size: 0.95em;
}

/* FAQ Section */
.page-8swin__faq-section {
    padding: 40px 0;
    background-color: #fefefe;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-8swin__faq-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.page-8swin__faq-item {
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    background-color: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-8swin__faq-item.active {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.page-8swin__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    background-color: #f5f5f5;
    color: #333;
    font-weight: bold;
    font-size: 1.1em;
    user-select: none;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

.page-8swin__faq-question:hover {
    background-color: #e9e9e9;
}

.page-8swin__faq-q-text {
    margin: 0;
    font-size: 1.1em; /* Ensure good readability */
    color: #333;
    pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-8swin__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent span from blocking click event */
    color: #007bff;
}

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

.page-8swin__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px; /* 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: #555;
    box-sizing: border-box;
}

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

.page-8swin__faq-answer p {
    margin: 0;
    padding-bottom: 10px; /* Small padding for paragraph inside answer */
}

/* Call to Action Section */
.page-8swin__cta-section {
    padding: 50px 0;
    text-align: center;
    background: linear-gradient(135deg, #e00000, #a00000); /* Red gradient */
    color: #fff;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.page-8swin__cta-section .page-8swin__section-title {
    color: #fff;
}

.page-8swin__cta-section .page-8swin__text-block {
    color: #f0f0f0;
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-8swin__cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-8swin__cta-actions .page-8swin__button {
    background-color: #fff;
    color: #e00000;
    border-color: #fff;
}

.page-8swin__cta-actions .page-8swin__button:hover {
    background-color: #f0f0f0;
    color: #a00000;
}

/* Sticky Register/Login Buttons */
.page-8swin__sticky-buttons {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border-radius: 50px; /* Pill shape */
    overflow: hidden;
}

.page-8swin__sticky-button {
    display: block;
    padding: 12px 25px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    border-radius: 50px; /* Pill shape */
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-width: 120px;
    box-sizing: border-box;
}

.page-8swin__sticky-button--register {
    background-color: #28a745; /* Green */
    color: #fff;
    border: 1px solid #28a745;
}

.page-8swin__sticky-button--register:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

.page-8swin__sticky-button--login {
    background-color: #007bff; /* Blue */
    color: #fff;
    border: 1px solid #007bff;
}

.page-8swin__sticky-button--login:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-8swin__section-title {
        font-size: 1.8em;
    }

    .page-8swin__hero-section {
        padding: 60px 15px;
    }

    .page-8swin__hero-title {
        font-size: 2.2em;
    }

    .page-8swin__hero-description {
        font-size: 1.1em;
    }

    .page-8swin__hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .page-8swin__button--secondary {
        margin-left: 0; /* Remove margin for stacked buttons */
    }

    /* List item responsiveness for game grid */
    .page-8swin__game-grid {
        grid-template-columns: 1fr; /* Single column */
        padding: 0 10px;
    }
    .page-8swin__game-card {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* List item responsiveness for promo list */
    .page-8swin__promo-list {
        flex-direction: column;
        align-items: center;
        padding: 0 10px;
    }
    .page-8swin__promo-item {
        flex: 1 1 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important; /* Adjust padding if needed to prevent overflow */
    }
    .page-8swin__promo-image {
        height: 150px;
    }

    /* Payment grid */
    .page-8swin__payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* More compact */
        padding: 0 10px;
    }
    .page-8swin__payment-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-8swin__payment-logo {
        max-width: 80px;
    }

    /* FAQ */
    .page-8swin__faq-list {
        padding: 0 10px;
    }
    .page-8swin__faq-question {
        padding: 15px 18px;
        font-size: 1em;
    }
    .page-8swin__faq-q-text {
        font-size: 1em;
    }
    .page-8swin__faq-answer {
        padding: 0 18px;
    }
    .page-8swin__faq-item.active .page-8swin__faq-answer {
        padding: 15px 18px !important;
    }

    .page-8swin__cta-section {
        padding: 40px 15px;
    }

    .page-8swin__cta-actions {
        flex-direction: column;
        gap: 10px;
    }

    .page-8swin__sticky-buttons {
        gap: 10px;
        bottom: 15px;
        width: calc(100% - 30px); /* Adjust width to fit screen */
        max-width: 350px; /* Limit width on larger mobiles */
        border-radius: 50px;
    }
    .page-8swin__sticky-button {
        flex: 1; /* Distribute space evenly */
        padding: 10px 15px;
        font-size: 1em;
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .page-8swin__hero-title {
        font-size: 1.8em;
    }
    .page-8swin__hero-description {
        font-size: 1em;
    }
    .page-8swin__section-title {
        font-size: 1.6em;
    }
    .page-8swin__button {
        font-size: 1em;
        padding: 10px 20px;
    }
    .page-8swin__payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    }
    .page-8swin__payment-item {
        min-width: 80px;
    }
    .page-8swin__sticky-buttons {
        max-width: calc(100% - 20px);
        gap: 8px;
    }
    .page-8swin__sticky-button {
        padding: 8px 12px;
        font-size: 0.9em;
    }
}
  