
    /* General styling for the page */
.page-789fcovip {
    font-family: 'Arial', sans-serif;
    color: #e0e0e0;
    background-color: #1a1a2e;
    line-height: 1.6;
    padding-top: 10px; /* Small padding top, assuming body padding handles header offset */
}

.page-789fcovip__section-title {
    font-size: 2.2em;
    color: #ffcc00;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
    font-weight: bold;
}

.page-789fcovip__section-subtitle {
    font-size: 1.1em;
    color: #c0c0c0;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

/* Hero Section */
.page-789fcovip__hero-section {
    position: relative;
    height: 60vh; /* Responsive height */
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('[GALLERY:hero:1920x1080:gaming,casino,lights]') no-repeat center center/cover;
    margin-bottom: 40px;
}

.page-789fcovip__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

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

.page-789fcovip__hero-title {
    font-size: 2.8em;
    color: #ffcc00;
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: bold;
}

.page-789fcovip__hero-description {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.page-789fcovip__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on small screens */
}

.page-789fcovip__hero-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    box-sizing: border-box; /* Crucial for responsive buttons */
    width: auto; /* Default to auto */
}

.page-789fcovip__hero-button--primary {
    background-color: #ffcc00;
    color: #1a1a2e;
    border: 2px solid #ffcc00;
}

.page-789fcovip__hero-button--primary:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
}

.page-789fcovip__hero-button--secondary {
    background-color: transparent;
    color: #00bcd4;
    border: 2px solid #00bcd4;
}

.page-789fcovip__hero-button--secondary:hover {
    background-color: #00bcd4;
    color: #1a1a2e;
    transform: translateY(-3px);
}

/* About Section */
.page-789fcovip__about-section {
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.page-789fcovip__about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0 15px;
}

.page-789fcovip__about-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    width: 100%;
    box-sizing: border-box;
}

.page-789fcovip__about-text {
    font-size: 1.1em;
    color: #c0c0c0;
    text-align: justify;
    max-width: 800px;
}

/* Games Section */
.page-789fcovip__games-section {
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.page-789fcovip__game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 15px;
}

.page-789fcovip__game-card {
    background-color: #2a2a4a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
    box-sizing: border-box;
}

.page-789fcovip__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-789fcovip__game-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    margin-bottom: 15px;
    max-width: 100%;
    box-sizing: border-box;
}

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

.page-789fcovip__game-description {
    font-size: 0.95em;
    color: #c0c0c0;
    padding: 0 15px;
}

/* Promotions Section */
.page-789fcovip__promotions-section {
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.page-789fcovip__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 15px;
}

.page-789fcovip__promo-card {
    background-color: #2a2a4a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.page-789fcovip__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-789fcovip__promo-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 15px;
    max-width: 100%;
    box-sizing: border-box;
}

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

.page-789fcovip__promo-description {
    font-size: 0.9em;
    color: #c0c0c0;
    padding: 0 15px;
    flex-grow: 1; /* Allows description to take available space */
}

.page-789fcovip__promo-action {
    padding: 15px;
    margin-top: auto; /* Pushes button to the bottom */
}

.page-789fcovip__promo-button {
    background-color: #00bcd4;
    color: #1a1a2e;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-size: 1em;
}

.page-789fcovip__promo-button:hover {
    background-color: #0097a7;
}

/* FAQ Section */
.page-789fcovip__faq-section {
    padding: 20px 0;
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.page-789fcovip__faq-list {
    padding: 0 15px;
}

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

.page-789fcovip__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    background-color: #3f3f6a;
    border-bottom: 1px solid #4a4a7a;
    transition: background-color 0.3s ease;
}

.page-789fcovip__faq-question:hover {
    background-color: #4a4a7a;
}

.page-789fcovip__faq-question-title {
    font-size: 1.2em;
    color: #ffcc00;
    margin: 0;
    pointer-events: none; /* Prevent title from blocking click event */
    flex-grow: 1;
}

.page-789fcovip__faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: #00bcd4;
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent toggle from blocking click event */
}

/* FAQ toggle icon is managed by JS textContent, no rotation needed */

.page-789fcovip__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: #c0c0c0;
}

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

.page-789fcovip__faq-answer p {
    margin: 0;
    padding-bottom: 10px;
}

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

.page-789fcovip__floating-button {
    display: block;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-789fcovip__floating-button--register {
    background-color: #ffcc00;
    color: #1a1a2e;
}

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

.page-789fcovip__floating-button--login {
    background-color: #00bcd4;
    color: #1a1a2e;
}

.page-789fcovip__floating-button--login:hover {
    background-color: #0097a7;
    transform: translateY(-3px);
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .page-789fcovip__hero-title {
        font-size: 2em;
    }

    .page-789fcovip__hero-description {
        font-size: 1em;
    }

    .page-789fcovip__hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-789fcovip__hero-button {
        width: 80% !important; /* Force full width on mobile */
        max-width: 300px !important;
        margin: 5px 0;
        box-sizing: border-box !important;
    }

    .page-789fcovip__section-title {
        font-size: 1.8em;
    }

    .page-789fcovip__about-content {
        flex-direction: column;
        padding: 0 10px;
    }

    .page-789fcovip__about-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .page-789fcovip__game-categories,
    .page-789fcovip__promo-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .page-789fcovip__game-card,
    .page-789fcovip__promo-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .page-789fcovip__game-image,
    .page-789fcovip__promo-image {
        max-width: 100% !important;
        height: auto !important; /* Allow height to adjust */
        box-sizing: border-box !important;
    }

    .page-789fcovip__faq-list {
        padding: 0 10px;
    }

    .page-789fcovip__faq-question {
        padding: 12px 15px;
    }

    .page-789fcovip__faq-question-title {
        font-size: 1.1em;
    }

    .page-789fcovip__faq-answer {
        padding: 15px 15px !important;
    }

    .page-789fcovip__floating-buttons {
        bottom: 15px;
        right: 15px;
    }
}

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

    .page-789fcovip__hero-description {
        font-size: 0.9em;
    }

    .page-789fcovip__section-title {
        font-size: 1.6em;
    }
}
  