
    /* General styles for page-88clive */
.page-88clive {
    font-family: 'Arial', sans-serif;
    color: #e0e0e0; /* Light grey text for contrast */
    background-color: #1a1a2e; /* Dark blue-purple background */
    line-height: 1.6;
    padding-bottom: 80px; /* Space for floating buttons */
    padding-top: var(--header-offset, 122px); /* Fallback for header offset if body padding is not applied by shared.css */
}

/* Base section styling */
.page-88clive__hero-section,
.page-88clive__game-categories,
.page-88clive__promotions,
.page-88clive__about-us,
.page-88clive__faq-section,
.page-88clive__partners-section,
.page-88clive__social-media {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Ensure first section has proper top padding, if not handled by body */
.page-88clive__hero-section {
    padding-top: 10px; /* Small decorative top padding, relying on body for main offset */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-88clive__section-title {
    font-size: 2.5em;
    color: #ffcc00; /* Gold for titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-88clive__section-subtitle {
    font-size: 1.1em;
    color: #cccccc;
    text-align: center;
    margin-bottom: 40px;
}

.page-88clive__highlight {
    color: #ffcc00;
}

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

.page-88clive__button--primary {
    background-color: #ffcc00; /* Gold */
    color: #1a1a2e; /* Dark text on gold */
}

.page-88clive__button--primary:hover {
    background-color: #e6b800; /* Darker gold */
    transform: translateY(-2px);
}

.page-88clive__button--secondary {
    background-color: #33334d; /* Darker background */
    color: #ffcc00; /* Gold text */
    border: 2px solid #ffcc00;
    margin-left: 15px;
}

.page-88clive__button--secondary:hover {
    background-color: #444466;
    transform: translateY(-2px);
}

.page-88clive__button--small {
    padding: 8px 18px;
    font-size: 0.9em;
    border-radius: 5px;
}

/* Hero Section */
.page-88clive__hero-content {
    margin-bottom: 30px;
}

.page-88clive__hero-title {
    font-size: 3em;
    margin-bottom: 15px;
    color: #ffcc00;
}

.page-88clive__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-88clive__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    margin-top: 30px;
}

.page-88clive__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.page-88clive__floating-button {
    padding: 12px 25px;
    border-radius: 30px; /* Pill shape */
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1em;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
}

.page-88clive__floating-button--register {
    background-color: #ffcc00; /* Gold */
    color: #1a1a2e; /* Dark text */
}

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

.page-88clive__floating-button--login {
    background-color: #33334d; /* Darker background */
    color: #ffcc00; /* Gold text */
    border: 2px solid #ffcc00;
}

.page-88clive__floating-button--login:hover {
    background-color: #444466;
    transform: translateY(-3px);
}

/* Game Categories */
.page-88clive__game-categories {
    background-color: #22223b; /* Slightly lighter dark background */
    border-radius: 15px;
    margin-top: 40px;
}

.page-88clive__categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

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

.page-88clive__category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
}

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

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

.page-88clive__category-description {
    font-size: 0.95em;
    color: #cccccc;
    padding: 0 15px;
}

/* Promotions Section */
.page-88clive__promotions {
    margin-top: 40px;
}

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

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

.page-88clive__promo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
}

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

.page-88clive__promo-title {
    font-size: 1.4em;
    color: #ffcc00;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-88clive__promo-description {
    font-size: 0.9em;
    color: #cccccc;
    margin-bottom: 20px;
    padding: 0 15px;
}

.page-88clive__promo-button-wrapper {
    padding: 0 15px;
}

/* About Us Section */
.page-88clive__about-us {
    background-color: #22223b;
    border-radius: 15px;
    margin-top: 40px;
}

.page-88clive__about-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.page-88clive__about-image-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 50%; /* Adjust for larger screens */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

.page-88clive__about-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.page-88clive__about-text {
    flex: 1;
    font-size: 1.05em;
    color: #e0e0e0;
}

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

.page-88clive__about-text strong {
    color: #ffcc00;
}

/* FAQ Section */
.page-88clive__faq-section {
    margin-top: 40px;
}

.page-88clive__faq-container {
    background-color: #22223b;
    border-radius: 15px;
    padding: 20px;
}

.page-88clive__faq-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #33334d;
}

.page-88clive__faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.page-88clive__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    user-select: none;
    background-color: #33334d;
    border-radius: 8px;
    margin-bottom: 5px;
    transition: background-color 0.3s ease;
}

.page-88clive__faq-question:hover {
    background-color: #444466;
}

.page-88clive__faq-title {
    font-size: 1.2em;
    color: #ffcc00;
    margin: 0;
    pointer-events: none; /* Crucial for click event on parent */
}

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

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

.page-88clive__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px; /* 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;
    background-color: #1a1a2e;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    color: #cccccc;
}

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

.page-88clive__faq-answer p {
    margin: 0;
}

/* Partners Section */
.page-88clive__partners-section {
    margin-top: 40px;
    text-align: center;
}

.page-88clive__subsection-title {
    font-size: 1.8em;
    color: #ffcc00;
    margin-top: 30px;
    margin-bottom: 25px;
}

.page-88clive__payment-providers,
.page-88clive__game-providers {
    margin-bottom: 40px;
}

.page-88clive__logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-items: center;
    align-items: center;
    background-color: #22223b;
    border-radius: 15px;
    padding: 25px;
}

.page-88clive__logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #e0e0e0;
    font-size: 0.9em;
    transition: transform 0.2s ease;
    box-sizing: border-box;
    width: 100%; /* Ensure proper width for mobile */
    max-width: 150px; /* Limit individual item width */
}

.page-88clive__logo-item:hover {
    transform: translateY(-5px);
    color: #ffcc00;
}

.page-88clive__logo-image {
    max-width: 100%;
    height: 80px; /* Fixed height for logos */
    object-fit: contain;
    margin-bottom: 8px;
}

/* Social Media Section */
.page-88clive__social-media {
    margin-top: 40px;
    text-align: center;
}

.page-88clive__social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    justify-items: center;
    background-color: #22223b;
    border-radius: 15px;
    padding: 25px;
}

.page-88clive__social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #e0e0e0;
    font-size: 0.9em;
    transition: transform 0.2s ease;
    box-sizing: border-box;
    width: 100%;
    max-width: 120px;
}

.page-88clive__social-item:hover {
    transform: translateY(-5px);
    color: #ffcc00;
}

.page-88clive__social-icon {
    max-width: 100%;
    height: 60px; /* Fixed height for social icons */
    object-fit: contain;
    margin-bottom: 8px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-88clive__hero-title {
        font-size: 2.5em;
    }
    .page-88clive__about-content {
        flex-direction: column;
    }
    .page-88clive__about-image-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-88clive {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-88clive__hero-section,
    .page-88clive__game-categories,
    .page-88clive__promotions,
    .page-88clive__about-us,
.page-88clive__faq-section,
.page-88clive__partners-section,
.page-88clive__social-media {
        padding: 30px 10px;
    }

    .page-88clive__section-title {
        font-size: 2em;
    }

    .page-88clive__hero-title {
        font-size: 2em;
    }

    .page-88clive__hero-description {
        font-size: 1em;
    }

    .page-88clive__hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .page-88clive__button {
        width: 100%;
        margin-left: 0;
    }

    .page-88clive__button--secondary {
        margin-left: 0;
    }

    .page-88clive__floating-buttons {
        width: calc(100% - 30px); /* Account for page padding */
        gap: 10px;
        bottom: 15px;
    }

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

    .page-88clive__categories-grid,
    .page-88clive__promo-grid,
    .page-88clive__logo-grid,
    .page-88clive__social-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 20px;
    }

    /* List item responsive requirements */
    .page-88clive__categories-grid > *,
    .page-88clive__promo-grid > *,
    .page-88clive__logo-grid > *,
    .page-88clive__social-grid > * {
        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-88clive__logo-grid,
    .page-88clive__social-grid {
        padding: 15px;
    }

    .page-88clive__logo-item,
    .page-88clive__social-item {
        max-width: none; /* Allow full width for mobile */
        padding: 10px 0;
    }

    .page-88clive__faq-question {
        padding: 12px;
    }

    .page-88clive__faq-title {
        font-size: 1.1em;
    }

    .page-88clive__faq-answer {
        padding: 15px 12px !important;
    }

    .page-88clive__about-text,
    .page-88clive__about-image-wrapper {
        min-width: unset;
    }

    .page-88clive__about-content {
        gap: 20px;
    }

    /* Images responsive */
    .page-88clive__hero-image,
    .page-88clive__category-image,
    .page-88clive__promo-image,
    .page-88clive__about-image,
    .page-88clive__logo-image,
    .page-88clive__social-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    .page-88clive__hero-image-wrapper,
    .page-88clive__category-item,
    .page-88clive__promo-item,
    .page-88clive__about-image-wrapper,
    .page-88clive__logo-item,
    .page-88clive__social-item {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 480px) {
    .page-88clive__section-title {
        font-size: 1.8em;
    }
    .page-88clive__hero-title {
        font-size: 1.8em;
    }
    .page-88clive__floating-buttons {
        gap: 8px;
    }
    .page-88clive__floating-button {
        font-size: 0.9em;
        padding: 10px 10px;
    }
}
  