
    .page-88k {
    font-family: 'Arial', sans-serif;
    color: #e0e0e0;
    background-color: #1a1a2e; /* Dark background */
    line-height: 1.6;
    padding-top: var(--header-offset, 122px); /* Fallback for body padding */
}

/* Base section styling */
.page-88k__section-title {
    font-size: 2.5em;
    color: #ffd700; /* Gold accent */
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
    font-weight: bold;
}

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

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

.page-88k__button {
    display: block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-88k__button--register {
    background-color: #4CAF50; /* Green */
    color: #ffffff;
}

.page-88k__button--register:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

.page-88k__button--login {
    background-color: #007bff; /* Blue */
    color: #ffffff;
}

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

.page-88k__button--primary {
    background-color: #ffd700; /* Gold */
    color: #1a1a2e;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 5px;
}

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

.page-88k__button--secondary {
    background-color: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 5px;
}

.page-88k__button--secondary:hover {
    background-color: #ffd700;
    color: #1a1a2e;
    transform: translateY(-2px);
}

.page-88k__button--read-more {
    background-color: #007bff;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    margin-top: 15px;
    display: inline-block; /* Ensure button styling */
}

.page-88k__button--read-more:hover {
    background-color: #0056b3;
}

/* Hero Section */
.page-88k__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 20px 60px 20px; /* Adjust top padding as per instruction */
    background: linear-gradient(135deg, #1a1a2e, #0f0f1a);
    overflow: hidden;
}

.page-88k__hero-content {
    max-width: 900px;
    margin-bottom: 40px;
}

.page-88k__hero-title {
    font-size: 3.5em;
    color: #ffd700;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

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

.page-88k__hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-88k__hero-image-wrapper {
    width: 100%;
    max-width: 1000px;
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-88k__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 15px;
}

/* Games Section */
.page-88k__games-section {
    padding: 60px 20px;
    background-color: #2a2a4a;
}

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

.page-88k__game-item {
    background-color: #3a3a5a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-88k__game-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

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

.page-88k__game-title {
    font-size: 1.8em;
    color: #ffd700;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-88k__game-text {
    font-size: 1em;
    color: #cccccc;
    padding: 0 15px;
}

/* Promotions Section */
.page-88k__promo-section {
    padding: 60px 20px;
    background-color: #1a1a2e;
}

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

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

.page-88k__promo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-88k__promo-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
}

.page-88k__promo-title {
    font-size: 1.6em;
    color: #4CAF50; /* Green accent */
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-88k__promo-text {
    font-size: 1em;
    color: #cccccc;
    padding: 0 15px;
}

/* About Section */
.page-88k__about-section {
    padding: 60px 20px;
    background-color: #2a2a4a;
}

.page-88k__about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.page-88k__about-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-88k__about-text {
    text-align: left;
    font-size: 1.1em;
    color: #e0e0e0;
}

.page-88k__about-text p {
    margin-bottom: 15px;
}

/* Payment & Providers Section */
.page-88k__payment-providers-section {
    padding: 60px 20px;
    background-color: #1a1a2e;
}

.page-88k__payment-methods,
.page-88k__game-providers {
    margin-bottom: 60px;
}

.page-88k__game-providers {
    margin-bottom: 0; /* Last section */
}

.page-88k__logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 10px;
}

.page-88k__logo-item {
    background-color: #3a3a5a;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-88k__logo-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-88k__logo-image {
    max-width: 100%;
    max-height: 80px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* News Section */
.page-88k__news-section {
    padding: 60px 20px;
    background-color: #2a2a4a;
}

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

.page-88k__news-item {
    background-color: #3a3a5a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-88k__news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-88k__news-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
}

.page-88k__news-title {
    font-size: 1.5em;
    color: #ffd700;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-88k__news-date {
    font-size: 0.9em;
    color: #888;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-88k__news-excerpt {
    font-size: 1em;
    color: #cccccc;
    padding: 0 15px;
    margin-bottom: 15px;
}

/* FAQ Section */
.page-88k__faq-section {
    padding: 60px 20px;
    background-color: #1a1a2e;
}

.page-88k__faq-container {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.page-88k__faq-question:hover {
    background-color: #4a4a6a;
}

.page-88k__faq-question-title {
    font-size: 1.3em;
    color: #ffd700;
    margin: 0;
    pointer-events: none; /* Crucial for click event on parent */
}

.page-88k__faq-toggle {
    font-size: 1.8em;
    color: #ffd700;
    font-weight: bold;
    pointer-events: none; /* Crucial for click event on parent */
    transition: transform 0.3s ease;
}

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

.page-88k__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    color: #cccccc;
    font-size: 1.1em;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

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

.page-88k__faq-answer p {
    margin: 0;
    padding-bottom: 10px; /* Add some spacing if multiple paragraphs */
}

/* Social Media Section */
.page-88k__contact-follow-section {
    padding: 60px 20px;
    background-color: #2a2a4a;
    text-align: center;
}

.page-88k__social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.page-88k__social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px; /* Fixed size for social icons */
    height: 80px;
    background-color: #3a3a5a;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-88k__social-icon:hover {
    transform: translateY(-5px);
    background-color: #ffd700; /* Gold hover */
}

.page-88k__social-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    max-width: 200px; /* Ensure images are not too small as per requirement */
    max-height: 200px;
    min-width: 200px; /* Force min size for icon placeholders */
    min-height: 200px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-88k__hero-title {
        font-size: 3em;
    }
    .page-88k__hero-description {
        font-size: 1.2em;
    }
    .page-88k__games-grid,
    .page-88k__promo-grid,
    .page-88k__news-grid,
    .page-88k__logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-88k__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        bottom: 15px;
        justify-content: space-around;
        gap: 15px;
    }

    .page-88k__button {
        flex: 1;
        padding: 10px 15px;
        font-size: 1em;
    }

    .page-88k__section-title {
        font-size: 2em;
        padding-top: 30px;
    }

    .page-88k__section-description {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .page-88k__hero-section {
        padding: 10px 15px 40px 15px;
    }

    .page-88k__hero-title {
        font-size: 2.2em;
    }

    .page-88k__hero-description {
        font-size: 1.1em;
    }

    .page-88k__hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .page-88k__button--primary,
    .page-88k__button--secondary {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 12px 20px;
        font-size: 1.1em;
    }

    .page-88k__games-section,
    .page-88k__promo-section,
    .page-88k__about-section,
    .page-88k__payment-providers-section,
    .page-88k__news-section,
    .page-88k__faq-section,
    .page-88k__contact-follow-section {
        padding: 40px 15px;
    }

    .page-88k__games-grid,
    .page-88k__promo-grid,
    .page-88k__news-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
    }

    .page-88k__game-image,
    .page-88k__promo-image,
    .page-88k__news-image {
        height: 180px;
    }

    .page-88k__about-content {
        flex-direction: column;
    }

    .page-88k__about-image {
        max-width: 100%;
    }

    .page-88k__about-text {
        text-align: center;
    }

    .page-88k__logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        padding: 0;
    }
    .page-88k__logo-item {
        min-height: 80px;
        padding: 10px;
    }
    .page-88k__logo-image {
        max-height: 60px;
    }

    .page-88k__news-title {
        font-size: 1.3em;
    }

    /* FAQ specific mobile styles */
    .page-88k__faq-question {
        padding: 15px 20px;
    }
    .page-88k__faq-question-title {
        font-size: 1.1em;
    }
    .page-88k__faq-answer {
        padding: 0 20px;
        font-size: 1em;
    }
    .page-88k__faq-item.active .page-88k__faq-answer {
        padding: 15px 20px !important;
    }

    /* List item responsiveness check */
    .page-88k__games-grid > .page-88k__game-item,
    .page-88k__promo-grid > .page-88k__promo-item,
    .page-88k__news-grid > .page-88k__news-item,
    .page-88k__faq-container > .page-88k__faq-item,
    .page-88k__logos-grid > .page-88k__logo-item,
    .page-88k__social-links > .page-88k__social-icon {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important; /* Adjust if needed, but usually container padding is enough */
        padding-right: 0 !important; /* Adjust if needed */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    .page-88k__games-grid,
    .page-88k__promo-grid,
    .page-88k__news-grid,
    .page-88k__faq-container,
    .page-88k__logos-grid,
    .page-88k__social-links {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 10px !important; /* Ensure content is not stuck to edges */
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .page-88k__social-icon {
        width: 60px;
        height: 60px;
    }
    .page-88k__social-icon img {
        min-width: 200px; /* Still force placeholder size */
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-88k__hero-title {
        font-size: 1.8em;
    }
    .page-88k__section-title {
        font-size: 1.8em;
    }
    .page-88k__button {
        padding: 8px 12px;
        font-size: 0.9em;
    }
    .page-88k__faq-question-title {
        font-size: 1em;
    }
    .page-88k__faq-toggle {
        font-size: 1.5em;
    }
}
  