
    /* General Page Styling */
    .page-ev-999 {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0; /* Light text for dark background */
        background-color: #1a1a2e; /* Dark background */
        line-height: 1.6;
        padding-top: 10px; /* Small padding for hero, assuming body padding handles header offset */
        box-sizing: border-box;
    }

    /* Highlight color for keywords */
    .page-ev-999 .highlight {
        color: #e94560; /* Vibrant accent color */
        font-weight: bold;
    }

    /* Section Titles */
    .page-ev-999__section-title {
        font-size: 2.2em;
        color: #f0f0f0;
        text-align: center;
        margin-bottom: 40px;
        padding: 20px 15px 0;
        box-sizing: border-box;
    }

    /* Text Content */
    .page-ev-999__text-content {
        font-size: 1.1em;
        margin: 0 auto 20px;
        max-width: 900px;
        padding: 0 15px;
        text-align: center;
        box-sizing: border-box;
    }

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

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

    .page-ev-999__button--register {
        background-color: #e94560; /* Accent color */
        color: #ffffff;
    }

    .page-ev-999__button--register:hover {
        background-color: #d03a50;
        transform: translateY(-2px);
    }

    .page-ev-999__button--login {
        background-color: #ffa500; /* Another accent color */
        color: #1a1a2e;
    }

    .page-ev-999__button--login:hover {
        background-color: #e69500;
        transform: translateY(-2px);
    }

    /* Hero Section */
    .page-ev-999__hero-section {
        position: relative;
        padding: 60px 0 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        min-height: 500px;
        box-sizing: border-box;
    }

    .page-ev-999__hero-image-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 1;
    }

    .page-ev-999__hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.6); /* Darken image for text readability */
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-ev-999__hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .page-ev-999__hero-title {
        font-size: 3em;
        margin-bottom: 20px;
        line-height: 1.2;
        color: #ffffff;
    }

    .page-ev-999__hero-description {
        font-size: 1.3em;
        margin-bottom: 30px;
        color: #e0e0e0;
    }

    .page-ev-999__hero-cta {
        display: inline-block;
        background-color: #e94560;
        color: #ffffff;
        padding: 15px 40px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.2em;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    }

    .page-ev-999__hero-cta:hover {
        background-color: #d03a50;
        transform: translateY(-3px);
    }

    /* Brand Keyword Centered Top */
    .page-ev-999__brand-keyword-top {
        text-align: center;
        padding: 20px 15px;
        background-color: #24243e;
        font-size: 1.8em;
        font-weight: bold;
        color: #ffa500; /* Use an accent color */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        margin-bottom: 20px;
        box-sizing: border-box;
    }

    /* About Section */
    .page-ev-999__about-section {
        padding: 60px 0;
        background-color: #24243e;
        box-sizing: border-box;
    }

    /* Game Showcase Section */
    .page-ev-999__game-showcase-section {
        padding: 60px 0;
        background-color: #1a1a2e;
        box-sizing: border-box;
    }

    .page-ev-999__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .page-ev-999__game-item {
        background-color: #24243e;
        border-radius: 10px;
        overflow: hidden;
        text-align: center;
        padding-bottom: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

    .page-ev-999__game-item:hover {
        transform: translateY(-5px);
    }

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

    .page-ev-999__game-title {
        font-size: 1.5em;
        color: #ffa500;
        margin-bottom: 10px;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .page-ev-999__game-description {
        font-size: 0.95em;
        color: #c0c0c0;
        padding: 0 15px;
        box-sizing: border-box;
    }

    /* Promotions Section */
    .page-ev-999__promotions-section {
        padding: 60px 0;
        background-color: #24243e;
        box-sizing: border-box;
    }

    .page-ev-999__promo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto 40px;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .page-ev-999__promo-item {
        background-color: #1a1a2e;
        border-radius: 10px;
        overflow: hidden;
        text-align: center;
        padding-bottom: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

    .page-ev-999__promo-item:hover {
        transform: translateY(-5px);
    }

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

    .page-ev-999__promo-title {
        font-size: 1.4em;
        color: #e94560;
        margin-bottom: 10px;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .page-ev-999__promo-description {
        font-size: 0.95em;
        color: #c0c0c0;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .page-ev-999__button-wrapper {
        text-align: center;
    }

    .page-ev-999__button--promo-cta {
        background-color: #ffa500;
        color: #1a1a2e;
        padding: 12px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-ev-999__button--promo-cta:hover {
        background-color: #e69500;
        transform: translateY(-2px);
    }


    /* Payment Methods Section */
    .page-ev-999__payment-section {
        padding: 60px 0;
        background-color: #1a1a2e;
        box-sizing: border-box;
    }

    .page-ev-999__payment-icons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .page-ev-999__payment-link {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #24243e;
        border-radius: 8px;
        padding: 15px 25px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        width: 150px; /* Fixed width for payment icons */
        height: 80px; /* Fixed height for payment icons */
        box-sizing: border-box;
    }

    .page-ev-999__payment-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }

    .page-ev-999__payment-icon {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        display: block;
        box-sizing: border-box;
    }

    /* FAQ Section */
    .page-ev-999__faq-section {
        padding: 60px 0;
        background-color: #24243e;
        box-sizing: border-box;
    }

    .page-ev-999__faq-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .page-ev-999__faq-item {
        background-color: #1a1a2e;
        border-radius: 8px;
        margin-bottom: 15px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        overflow: hidden; /* Important for max-height transition */
        box-sizing: border-box;
    }

    .page-ev-999__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        background-color: #33334f; /* Slightly lighter background for question */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: background-color 0.3s ease;
        box-sizing: border-box;
    }

    .page-ev-999__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: #f0f0f0;
        pointer-events: none; /* Prevent h3 from blocking click */
        box-sizing: border-box;
    }

    .page-ev-999__faq-question:hover {
        background-color: #44446a;
    }

    .page-ev-999__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: #ffa500;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle from blocking click */
        box-sizing: border-box;
    }

    .page-ev-999__faq-item.active .page-ev-999__faq-toggle {
        transform: rotate(45deg); /* Change '+' to 'x' or '-' */
        color: #e94560;
    }

    .page-ev-999__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px; /* 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;
        color: #c0c0c0;
        font-size: 1em;
        box-sizing: border-box;
    }

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

    .page-ev-999__faq-answer p {
        margin: 0;
        box-sizing: border-box;
    }

    /* Call to Action Section */
    .page-ev-999__cta-section {
        padding: 60px 0;
        background-color: #1a1a2e;
        text-align: center;
        box-sizing: border-box;
    }

    .page-ev-999__cta-button {
        display: inline-block;
        background-color: #e94560;
        color: #ffffff;
        padding: 15px 40px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.2em;
        margin-top: 30px;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    }

    .page-ev-999__cta-button:hover {
        background-color: #d03a50;
        transform: translateY(-3px);
    }

    /* Responsive design for mobile */
    @media (max-width: 768px) {
        .page-ev-999__section-title {
            font-size: 1.8em;
            margin-bottom: 30px;
            padding: 15px 10px 0;
        }

        .page-ev-999__text-content {
            font-size: 1em;
            padding: 0 10px;
        }

        .page-ev-999__hero-section {
            min-height: 400px;
            padding: 40px 0 30px;
        }

        .page-ev-999__hero-title {
            font-size: 2.2em;
            margin-bottom: 15px;
        }

        .page-ev-999__hero-description {
            font-size: 1.1em;
            margin-bottom: 25px;
        }

        .page-ev-999__hero-cta {
            padding: 12px 30px;
            font-size: 1.1em;
        }

        /* Floating buttons adjustment */
        .page-ev-999__floating-buttons {
            bottom: 15px;
            right: 15px;
            flex-direction: row; /* Horizontal on small screens if space allows */
            gap: 8px;
        }

        .page-ev-999__button {
            padding: 10px 20px;
            font-size: 1em;
        }

        .page-ev-999__brand-keyword-top {
            font-size: 1.4em;
            padding: 15px 10px;
            margin-bottom: 15px;
        }
        
        .page-ev-999__game-grid,
        .page-ev-999__promo-grid {
            grid-template-columns: 1fr; /* Single column layout */
            padding: 0 10px;
        }

        .page-ev-999__game-item,
        .page-ev-999__promo-item {
            margin-bottom: 20px;
        }

        .page-ev-999__game-image {
            height: 180px;
        }

        .page-ev-999__promo-image {
            height: 200px;
        }

        .page-ev-999__payment-icons {
            gap: 15px;
            padding: 0 10px;
        }

        .page-ev-999__payment-link {
            width: 120px;
            height: 70px;
            padding: 10px 15px;
        }

        .page-ev-999__faq-question {
            padding: 15px 20px;
        }

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

        .page-ev-999__faq-toggle {
            font-size: 1.5em;
        }

        .page-ev-999__faq-answer {
            padding: 0 20px;
        }

        .page-ev-999__faq-item.active .page-ev-999__faq-answer {
            padding: 15px 20px !important;
        }
        
        /* List item specific responsiveness */
        .page-ev-999__game-item,
        .page-ev-999__promo-item,
        .page-ev-999__payment-link,
        .page-ev-999__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;
            word-break: break-word !important;
        }
        /* For containers of these items, ensure padding/margin reset */
        .page-ev-999__game-grid,
        .page-ev-999__promo-grid,
        .page-ev-999__payment-icons,
        .page-ev-999__faq-container {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
    }
  