
    :root {
    --page-888k-primary-color: #e44d26; /* A vibrant red/orange */
    --page-888k-secondary-color: #333;
    --page-888k-accent-color: #ffcc00; /* Gold/yellow for highlights */
    --page-888k-text-color: #f0f0f0;
    --page-888k-bg-dark: #1a1a1a;
    --page-888k-bg-light: #2c2c2c;
    --page-888k-border-color: #444;
    --page-888k-gradient-start: #2a0000;
    --page-888k-gradient-end: #0a0000;
}

.page-888k {
    font-family: 'Arial', sans-serif;
    color: var(--page-888k-text-color);
    background-color: var(--page-888k-bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.page-888k__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-888k__section-title {
    font-size: 2.5em;
    color: var(--page-888k-text-color);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
    position: relative;
    z-index: 1;
    font-weight: bold;
}

.page-888k__section-title .page-888k__highlight {
    color: var(--page-888k-accent-color);
}

.page-888k__paragraph {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 20px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-888k__highlight {
    color: var(--page-888k-accent-color);
}

/* Hero Section */
.page-888k__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height for visual impact */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 10px; /* Small padding top, assuming body handles main offset */
    box-sizing: border-box;
}

.page-888k__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.page-888k__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.page-888k__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.page-888k__main-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
    font-weight: bold;
}

.page-888k__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #eee;
}

.page-888k__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-888k__button {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: bold;
    text-decoration: none; /* Ensure buttons don't look like links */
    display: inline-block;
    text-align: center;
}

.page-888k__button--primary {
    background-color: var(--page-888k-primary-color);
    color: #fff;
}

.page-888k__button--primary:hover {
    background-color: #d14420;
    transform: translateY(-2px);
}

.page-888k__button--secondary {
    background-color: transparent;
    color: var(--page-888k-accent-color);
    border: 2px solid var(--page-888k-accent-color);
}

.page-888k__button--secondary:hover {
    background-color: var(--page-888k-accent-color);
    color: var(--page-888k-bg-dark);
    transform: translateY(-2px);
}

/* About Section */
.page-888k__about-section {
    background-color: var(--page-888k-bg-light);
    padding: 60px 0;
}

/* Game Categories Section */
.page-888k__game-categories {
    padding: 60px 0;
    background: linear-gradient(to bottom, var(--page-888k-bg-dark), var(--page-888k-gradient-start));
}

.page-888k__category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-888k__category-item {
    background-color: var(--page-888k-bg-light);
    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-888k__category-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-888k__category-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 15px;
    max-width: 100%; /* Responsive image */
    box-sizing: border-box; /* Ensure padding/border included in width */
}

.page-888k__category-title {
    font-size: 1.8em;
    color: var(--page-888k-accent-color);
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-888k__category-description {
    font-size: 1em;
    color: #ccc;
    padding: 0 15px;
}

/* Promotions Section */
.page-888k__promotions-section {
    padding: 60px 0;
    background-color: var(--page-888k-bg-dark);
}

.page-888k__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-888k__promo-card {
    background-color: var(--page-888k-bg-light);
    border-radius: 10px;
    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-888k__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-888k__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
    max-width: 100%; /* Responsive image */
    box-sizing: border-box; /* Ensure padding/border included in width */
}

.page-888k__promo-title {
    font-size: 1.5em;
    color: var(--page-888k-primary-color);
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-888k__promo-description {
    font-size: 1em;
    color: #ccc;
    padding: 0 15px;
    margin-bottom: 20px;
}

.page-888k__promo-link {
    display: inline-block;
    background-color: var(--page-888k-accent-color);
    color: var(--page-888k-bg-dark);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-888k__promo-link:hover {
    background-color: #e6b800;
}

/* Features Section */
.page-888k__features-section {
    padding: 60px 0;
    background: linear-gradient(to top, var(--page-888k-bg-dark), var(--page-888k-gradient-start));
}

.page-888k__features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    list-style: none;
    padding: 0;
    margin: 40px auto 0 auto;
}

.page-888k__feature-item {
    background-color: var(--page-888k-bg-light);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.page-888k__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-888k__feature-icon {
    width: 200px; /* Minimum 200px for all images */
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    max-width: 100%; /* Responsive image */
    box-sizing: border-box; /* Ensure padding/border included in width */
}

.page-888k__feature-title {
    font-size: 1.6em;
    color: var(--page-888k-primary-color);
    margin-bottom: 15px;
}

.page-888k__feature-description {
    font-size: 1em;
    color: #ccc;
}

/* FAQ Section */
.page-888k__faq-section {
    padding: 60px 0;
    background-color: var(--page-888k-bg-light);
}

.page-888k__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.page-888k__faq-item {
    background-color: var(--page-888k-bg-dark);
    border: 1px solid var(--page-888k-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-888k__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
    background-color: var(--page-888k-bg-dark);
    transition: background-color 0.3s ease;
}

.page-888k__faq-question:hover {
    background-color: #2a2a2a;
}

.page-888k__faq-title {
    font-size: 1.3em;
    color: var(--page-888k-text-color);
    margin: 0;
    pointer-events: none; /* Prevent text selection interfering with click */
}

.page-888k__faq-toggle {
    font-size: 1.8em;
    color: var(--page-888k-primary-color);
    font-weight: bold;
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent icon interfering with click */
}

.page-888k__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    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: #222;
    color: #ccc;
}

.page-888k__faq-answer .page-888k__paragraph {
    text-align: left;
    margin: 0;
    padding-bottom: 0; /* Adjusted for FAQ inner paragraph */
}

/* FAQ Active State */
.page-888k__faq-item.active .page-888k__faq-answer {
    max-height: 2000px !important; /* Sufficiently large */
    padding: 20px 25px !important;
    opacity: 1;
}

.page-888k__faq-item.active .page-888k__faq-toggle {
    transform: rotate(45deg); /* Change '+' to 'x' visually */
    color: var(--page-888k-accent-color);
}

/* Call to Action Section */
.page-888k__cta-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--page-888k-gradient-start), var(--page-888k-gradient-end));
    text-align: center;
}

.page-888k__cta-content {
    max-width: 800px;
}

.page-888k__cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

/* Floating Register/Login Buttons */
.page-888k__floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-888k__floating-button {
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    font-size: 1em;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-888k__floating-button--register {
    background-color: var(--page-888k-primary-color);
    color: #fff;
}

.page-888k__floating-button--register:hover {
    background-color: #d14420;
    transform: translateY(-2px);
}

.page-888k__floating-button--login {
    background-color: var(--page-888k-accent-color);
    color: var(--page-888k-bg-dark);
}

.page-888k__floating-button--login:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .page-888k__main-title {
        font-size: 3em;
    }
    .page-888k__hero-description {
        font-size: 1.2em;
    }
    .page-888k__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-888k__hero-section {
        height: 500px;
    }
    .page-888k__main-title {
        font-size: 2.5em;
    }
    .page-888k__hero-description {
        font-size: 1em;
    }
    .page-888k__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-888k__button {
        width: 80%;
        margin: 0 auto;
    }
    .page-888k__section-title {
        font-size: 1.8em;
    }
    .page-888k__paragraph {
        font-size: 0.95em;
    }

    /* List Item Responsive - Features List */
    .page-888k__features-list {
        grid-template-columns: 1fr;
        padding: 0 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-888k__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    .page-888k__feature-title {
        font-size: 1.4em;
    }
    .page-888k__feature-description {
        font-size: 0.9em;
    }

    /* List Item Responsive - Category Grid */
    .page-888k__category-grid {
        grid-template-columns: 1fr;
        padding: 0 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-888k__category-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;
    }
    .page-888k__category-title {
        font-size: 1.6em;
    }
    .page-888k__category-description {
        font-size: 0.9em;
    }

    /* List Item Responsive - Promo Grid */
    .page-888k__promo-grid {
        grid-template-columns: 1fr;
        padding: 0 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-888k__promo-card {
        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-888k__promo-title {
        font-size: 1.3em;
    }
    .page-888k__promo-description {
        font-size: 0.9em;
    }
    .page-888k__promo-link {
        padding: 8px 15px;
        font-size: 0.9em;
    }

    /* Images responsive */
    .page-888k__hero-image,
    .page-888k__category-image,
    .page-888k__promo-image,
    .page-888k__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    /* FAQ Section */
    .page-888k__faq-list {
        padding: 0 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-888k__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;
    }
    .page-888k__faq-question {
        padding: 15px 20px;
    }
    .page-888k__faq-title {
        font-size: 1.1em;
    }
    .page-888k__faq-toggle {
        font-size: 1.5em;
    }
    .page-888k__faq-answer {
        padding: 0 20px;
    }
    .page-888k__faq-item.active .page-888k__faq-answer {
        padding: 15px 20px !important;
    }

    .page-888k__floating-buttons {
        gap: 10px;
        padding: 8px 15px;
    }
    .page-888k__floating-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .page-888k__hero-section {
        height: 400px;
    }
    .page-888k__main-title {
        font-size: 2em;
    }
    .page-888k__hero-description {
        font-size: 0.9em;
    }
    .page-888k__section-title {
        font-size: 1.6em;
    }
    .page-888k__floating-buttons {
        bottom: 15px;
        gap: 8px;
        padding: 6px 12px;
    }
    .page-888k__floating-button {
        padding: 8px 18px;
        font-size: 0.85em;
    }
}
  