
    /* Base styles for the page container */
.page-84wim {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0;
    background-color: #1a1a1a; /* Dark background for betting site */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Fixed Header Spacing */
.page-84wim__hero-section {
    padding-top: 10px; /* Small decorative top padding, assuming body padding handles header offset */
}

/* Sections common styles */
.page-84wim__hero-section,
.page-84wim__game-categories-section,
.page-84wim__promotions-section,
.page-84wim__news-section,
.page-84wim__about-section,
.page-84wim__payment-section,
.page-84wim__providers-section,
.page-84wim__faq-section {
    padding: 40px 20px;
    margin: 0 auto;
    max-width: 1200px;
}

/* Section Titles */
.page-84wim__section-title {
    font-size: 2.5em;
    color: #ffcc00; /* Gold accent color */
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-84wim__section-subtitle {
    font-size: 1.1em;
    color: #cccccc;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-84wim__brand-name {
    color: #ffcc00;
    font-weight: bold;
}

/* Hero Section */
.page-84wim__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #2a0a5e, #1a0a3e); /* Dark gradient */
    padding-bottom: 60px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.page-84wim__hero-content {
    margin-bottom: 30px;
}

.page-84wim__hero-title {
    font-size: 2.8em;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-84wim__hero-description {
    font-size: 1.2em;
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.page-84wim__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-84wim__button {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-84wim__button--primary {
    background-color: #ffcc00; /* Gold */
    color: #1a1a1a;
}

.page-84wim__button--primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-84wim__button--secondary {
    background-color: #4a4a4a;
    color: #ffffff;
    border: 1px solid #666666;
}

.page-84wim__button--secondary:hover {
    background-color: #666666;
    transform: translateY(-2px);
}

.page-84wim__hero-image-wrapper {
    width: 100%;
    max-width: 800px; /* Center image */
    overflow: hidden;
    box-sizing: border-box;
}

.page-84wim__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Game Categories Section */
.page-84wim__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

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

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

.page-84wim__game-card-image {
    max-width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
}

.page-84wim__game-card-title {
    font-size: 1.5em;
    color: #ffcc00;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-84wim__game-card-description {
    font-size: 0.95em;
    color: #cccccc;
    padding: 0 15px;
}

/* Promotions Section */
.page-84wim__promotions-section {
    background-color: #222222;
    border-radius: 15px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-84wim__promotion-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.page-84wim__promo-card {
    background-color: #333333;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-84wim__promo-card:hover {
    transform: translateY(-5px);
}

.page-84wim__promo-card-image {
    max-width: 100%;
    height: 220px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-84wim__promo-card-title {
    font-size: 1.4em;
    color: #ffcc00;
    margin: 20px 15px 10px;
}

.page-84wim__promo-card-description {
    font-size: 0.95em;
    color: #cccccc;
    padding: 0 15px 20px;
}

.page-84wim__promo-card-link {
    display: inline-block;
    background-color: #007bff; /* Blue for links/CTA */
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.page-84wim__promo-card-link:hover {
    background-color: #0056b3;
}

/* News Section */
.page-84wim__news-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.page-84wim__news-item {
    background-color: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.page-84wim__news-item:hover {
    transform: translateY(-5px);
}

.page-84wim__news-image {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-84wim__news-content {
    padding: 20px;
}

.page-84wim__news-title {
    font-size: 1.3em;
    color: #ffcc00;
    margin-bottom: 10px;
}

.page-84wim__news-date {
    font-size: 0.85em;
    color: #999999;
    margin-bottom: 10px;
}

.page-84wim__news-excerpt {
    font-size: 0.95em;
    color: #cccccc;
}

/* About Section */
.page-84wim__about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.page-84wim__about-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-84wim__about-text {
    text-align: center;
    color: #e0e0e0;
    font-size: 1.1em;
}

.page-84wim__about-text p {
    margin-bottom: 15px;
}

/* Payment and Providers Sections */
.page-84wim__payment-logos,
.page-84wim__provider-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-84wim__payment-logo-link,
.page-84wim__provider-logo-link {
    display: block;
    padding: 10px;
    background-color: #2a2a2a;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 150px; /* Fixed width for logos */
    height: 75px; /* Fixed height for logos */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-84wim__payment-logo-link:hover,
.page-84wim__provider-logo-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
}

.page-84wim__payment-logo,
.page-84wim__provider-logo {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}


/* FAQ Section */
.page-84wim__faq-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.page-84wim__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
    background-color: #3a3a3a;
    border-bottom: 1px solid #4a4a4a;
    transition: background-color 0.3s ease;
}

.page-84wim__faq-question:hover {
    background-color: #4a4a4a;
}

.page-84wim__faq-question-title {
    font-size: 1.2em;
    color: #ffcc00;
    margin: 0;
    pointer-events: none; /* Prevent text selection interfering with click */
}

.page-84wim__faq-toggle {
    font-size: 1.5em;
    color: #ffcc00;
    font-weight: bold;
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent icon from interfering with click */
}

.page-84wim__faq-item.active .page-84wim__faq-toggle {
    transform: rotate(45deg); /* Change + to X or similar */
}

.page-84wim__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px; /* Initial padding for smooth transition */
    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;
    background-color: #2a2a2a;
}

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

.page-84wim__faq-answer p {
    margin: 0;
    padding-bottom: 10px; /* Adjust as needed for content spacing */
}

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

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

.page-84wim__floating-button--register {
    background-color: #ffcc00; /* Gold */
    color: #1a1a1a;
}

.page-84wim__floating-button--register:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
}

.page-84wim__floating-button--login {
    background-color: #007bff; /* Blue */
    color: #ffffff;
}

.page-84wim__floating-button--login:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}


/* Responsive Design */
@media (min-width: 769px) {
    .page-84wim__hero-section {
        flex-direction: row;
        text-align: left;
        padding-top: 60px;
        gap: 40px;
    }

    .page-84wim__hero-content {
        flex: 1;
        margin-bottom: 0;
    }

    .page-84wim__hero-image-wrapper {
        flex: 1;
        max-width: 50%;
    }

    .page-84wim__about-content {
        flex-direction: row;
        text-align: left;
    }

    .page-84wim__about-image {
        max-width: 50%;
    }

    .page-84wim__about-text {
        text-align: left;
    }

    .page-84wim__section-title {
        font-size: 3em;
    }

    .page-84wim__hero-title {
        font-size: 3.5em;
    }
}

@media (max-width: 768px) {
    .page-84wim__section-title {
        font-size: 2em;
    }

    .page-84wim__hero-title {
        font-size: 2.2em;
    }

    .page-84wim__hero-description {
        font-size: 1em;
    }

    .page-84wim__hero-cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .page-84wim__button {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-84wim__game-grid,
    .page-84wim__promotion-cards,
    .page-84wim__news-list {
        grid-template-columns: 1fr;
    }

    .page-84wim__game-card-image,
    .page-84wim__promo-card-image,
    .page-84wim__news-image {
        height: 180px; /* Adjust image height for smaller screens */
    }

    .page-84wim__news-item {
        flex-direction: column;
    }

    .page-84wim__about-content {
        flex-direction: column;
    }

    .page-84wim__payment-logo-link,
    .page-84wim__provider-logo-link {
        width: 120px; /* Smaller width for logos on mobile */
        height: 60px;
    }

    /* List item responsive requirements (Game Grid, Promotion Cards, News List, Payment Logos, Provider Logos) */
    .page-84wim__game-grid > *,
    .page-84wim__promotion-cards > *,
    .page-84wim__news-list > *,
    .page-84wim__payment-logos > *,
    .page-84wim__provider-logos > * {
        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;
    }

    .page-84wim__game-grid,
    .page-84wim__promotion-cards,
    .page-84wim__news-list,
    .page-84wim__payment-logos,
    .page-84wim__provider-logos {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 10px !important; /* Adjust padding to avoid excessive space */
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .page-84wim__faq-question-title {
        font-size: 1.1em;
    }
    .page-84wim__faq-answer {
        padding: 0 15px; /* Adjust padding for mobile */
    }
    .page-84wim__faq-item.active .page-84wim__faq-answer {
        padding: 15px 15px !important;
    }
}
  