
    /* CSS for page-3888 */
.page-3888 {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0;
    background-color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
    padding-bottom: 80px; /* Space for fixed buttons */
}

/* Fixed buttons for Register/Login */
.page-3888__fixed-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}

.page-3888__fixed-button {
    flex: 1;
    text-align: center;
    padding: 12px 15px;
    margin: 0 5px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
    max-width: 48%; /* Ensure two buttons fit well */
}

.page-3888__fixed-button--register {
    background-color: #e44d26; /* Orange-red */
}

.page-3888__fixed-button--register:hover {
    background-color: #f36c47;
}

.page-3888__fixed-button--login {
    background-color: #007bff; /* Blue */
}

.page-3888__fixed-button--login:hover {
    background-color: #0056b3;
}

/* Hero Section */
.page-3888__hero-section {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 10px 20px 40px; /* Added 10px top padding as per instruction */
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.page-3888__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    max-width: 100%; /* Responsive image */
    height: auto; /* Responsive image */
}

.page-3888__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8));
    z-index: -1;
}

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

.page-3888__hero-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #e44d26; /* Orange-red */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-3888__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #ccc;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-3888__cta-button {
    display: inline-block;
    background-color: #e44d26;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none; /* Ensure it's not an <a> with default border */
    cursor: pointer;
}

.page-3888__cta-button:hover {
    background-color: #f36c47;
    transform: translateY(-2px);
}

/* General Section Styling */
.page-3888__section {
    padding: 40px 20px;
    text-align: center;
}

.page-3888__section-title {
    font-size: 2.2em;
    color: #e44d26;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-3888__section-description {
    font-size: 1.1em;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Promotions Section */
.page-3888__promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-3888__promotion-card {
    background-color: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.page-3888__promotion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-3888__promotion-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    max-width: 100%; /* Responsive image */
    height: auto; /* Responsive image */
    display: block;
}

.page-3888__promotion-content {
    padding: 20px;
}

.page-3888__promotion-title {
    font-size: 1.5em;
    color: #e44d26;
    margin-bottom: 10px;
}

.page-3888__promotion-description {
    font-size: 0.95em;
    color: #bbb;
    margin-bottom: 20px;
}

.page-3888__promotion-button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-3888__promotion-button:hover {
    background-color: #0056b3;
}

/* Game Categories Section */
.page-3888__games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.page-3888__game-card:hover {
    transform: translateY(-5px);
}

.page-3888__game-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    max-width: 100%; /* Responsive image */
    height: auto; /* Responsive image */
    display: block;
    margin-bottom: 15px;
}

.page-3888__game-title {
    font-size: 1.3em;
    color: #e44d26;
    margin-bottom: 10px;
}

.page-3888__game-description {
    font-size: 0.9em;
    color: #bbb;
    padding: 0 15px;
}

/* Features Section */
.page-3888__features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.page-3888__feature-item {
    background-color: #2a2a2a;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    padding: 25px;
    text-align: center;
    flex: 1 1 calc(33% - 25px); /* Three items per row on desktop */
    min-width: 280px;
    box-sizing: border-box; /* Crucial for responsive lists */
}

.page-3888__feature-icon {
    width: 200px; /* Min size for placeholder */
    height: 200px; /* Min size for placeholder */
    margin-bottom: 15px;
    object-fit: contain;
    max-width: 100%; /* Responsive image */
    height: auto; /* Responsive image */
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-3888__feature-title {
    font-size: 1.4em;
    color: #e44d26;
    margin-bottom: 10px;
}

.page-3888__feature-description {
    font-size: 1em;
    color: #bbb;
}

/* Payment Methods & Game Providers Section */
.page-3888__partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.page-3888__partner-logo {
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.page-3888__partner-logo:hover {
    transform: scale(1.05);
}

.page-3888__partner-image {
    max-width: 100%;
    max-height: 100px; /* Constrain image height within the box */
    object-fit: contain;
    height: auto; /* Responsive image */
}

/* FAQ Section */
.page-3888__faq-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

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

.page-3888__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #333;
    cursor: pointer;
    user-select: none;
    font-size: 1.2em;
    color: #e44d26;
    transition: background-color 0.3s ease;
}

.page-3888__faq-question:hover {
    background-color: #444;
}

.page-3888__faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: #e44d26;
    pointer-events: none; /* Prevent h3 from blocking click */
}

.page-3888__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #fff;
    pointer-events: none; /* Prevent toggle icon from blocking click */
    transition: transform 0.3s ease;
}

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

.page-3888__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    color: #bbb;
    font-size: 1em;
    text-align: left;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .page-3888__hero-title {
        font-size: 2em;
    }

    .page-3888__hero-subtitle {
        font-size: 1.1em;
    }

    .page-3888__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-3888__section {
        padding: 30px 15px;
    }

    .page-3888__section-title {
        font-size: 1.8em;
    }

    .page-3888__section-description {
        font-size: 1em;
    }

    .page-3888__promotions-grid,
    .page-3888__games-grid,
    .page-3888__partners-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .page-3888__feature-item {
        flex: 1 1 100%; /* Single item per row */
        max-width: 100% !important; /* Ensure full width for list items */
        width: 100% !important; /* Ensure full width for list items */
        box-sizing: border-box !important; /* Ensure correct box model */
        padding: 20px !important; /* Adjust padding for mobile */
        margin-left: 0 !important; /* Remove any left margin */
        margin-right: 0 !important; /* Remove any right margin */
        word-wrap: break-word !important; /* Handle long words */
        overflow-wrap: break-word !important; /* Handle long words */
        word-break: break-word !important; /* Handle long keywords */
    }

    .page-3888__features-list {
        width: 100% !important; /* Ensure full width for list container */
        max-width: 100% !important; /* Ensure full width for list container */
        padding: 0 !important; /* Remove padding from list container */
        margin-left: 0 !important; /* Remove any left margin */
        margin-right: 0 !important; /* Remove any right margin */
    }

    .page-3888__game-card,
    .page-3888__promotion-card {
        margin: 0 auto;
        max-width: 400px; /* Constrain width for better readability on narrow screens */
    }

    .page-3888__faq-question {
        font-size: 1.1em;
        padding: 12px 15px;
    }

    .page-3888__faq-question h3 {
        font-size: 1.1em;
    }

    .page-3888__faq-answer {
        padding: 0 15px;
        font-size: 0.95em;
    }

    .page-3888__faq-item.active .page-3888__faq-answer {
        padding: 15px !important;
    }

    .page-3888__fixed-button {
        padding: 10px 10px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-3888__hero-title {
        font-size: 1.8em;
    }

    .page-3888__hero-subtitle {
        font-size: 1em;
    }

    .page-3888__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-3888__section-title {
        font-size: 1.6em;
    }
}
  