.page-phrush-188 {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0;
        background-color: #1a1a2e; /* Dark background for gaming theme */
        line-height: 1.6;
        overflow-x: hidden;
    }

    .page-phrush-188__hero-section {
        position: relative;
        width: 100%;
        min-height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        padding: 10px 20px 50px 20px; /* Added 10px top padding for offset assumption */
        box-sizing: border-box;
    }

    .page-phrush-188__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        opacity: 0.4;
    }

    .page-phrush-188__hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.6);
        border-radius: 10px;
    }

    .page-phrush-188__hero-title {
        font-size: 2.5em;
        color: #e6a700; /* Gold color for highlights */
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        line-height: 1.2;
    }

    .page-phrush-188__hero-description {
        font-size: 1.1em;
        margin-bottom: 30px;
        color: #ffffff;
    }

    .page-phrush-188__hero-cta-group {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .page-phrush-188__hero-button {
        display: inline-block;
        padding: 15px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        width: 100%;
        max-width: 300px;
        box-sizing: border-box;
        text-align: center;
    }

    .page-phrush-188__hero-button--primary {
        background-color: #e6a700;
        color: #1a1a2e;
    }

    .page-phrush-188__hero-button--primary:hover {
        background-color: #ffc107;
        transform: translateY(-3px);
    }

    .page-phrush-188__hero-button--secondary {
        background-color: #007bff; /* Blue for secondary action */
        color: #ffffff;
    }

    .page-phrush-188__hero-button--secondary:hover {
        background-color: #0056b3;
        transform: translateY(-3px);
    }

    .page-phrush-188__intro-section,
    .page-phrush-188__quick-access-section,
    .page-phrush-188__games-section,
    .page-phrush-188__promotions-section,
    .page-phrush-188__security-support-section,
    .page-phrush-188__faq-section,
    .page-phrush-188__blog-section {
        padding: 50px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
        box-sizing: border-box;
    }

    .page-phrush-188__intro-title,
    .page-phrush-188__quick-access-title,
    .page-phrush-188__games-title,
    .page-phrush-188__promotions-title,
    .page-phrush-188__security-support-title,
    .page-phrush-188__faq-title,
    .page-phrush-188__blog-title {
        font-size: 2em;
        color: #e6a700;
        margin-bottom: 25px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .page-phrush-188__intro-text,
    .page-phrush-188__quick-access-description,
    .page-phrush-188__games-description,
    .page-phrush-188__promotions-description,
    .page-phrush-188__blog-description {
        font-size: 1.1em;
        margin-bottom: 40px;
        color: #cccccc;
    }

    .page-phrush-188__keyword-highlight {
        color: #e6a700;
        font-weight: bold;
    }

    .page-phrush-188__intro-features {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin-top: 40px;
    }

    .page-phrush-188__intro-feature-item {
        background-color: #2b2b45;
        padding: 30px;
        border-radius: 10px;
        flex: 1 1 calc(33% - 40px); /* Approx 3 items per row */
        min-width: 280px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

    .page-phrush-188__intro-feature-item:hover {
        transform: translateY(-5px);
    }

    .page-phrush-188__intro-feature-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
        max-width: 100%;
        height: auto;
    }

    .page-phrush-188__intro-feature-title {
        font-size: 1.4em;
        color: #e6a700;
        margin-bottom: 10px;
    }

    .page-phrush-188__intro-feature-description {
        color: #cccccc;
        font-size: 0.95em;
    }

    .page-phrush-188__quick-access-buttons {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 40px;
    }

    .page-phrush-188__quick-access-button {
        display: block;
        background-color: #007bff;
        color: #ffffff;
        padding: 18px 25px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-phrush-188__quick-access-button:hover {
        background-color: #0056b3;
        transform: translateY(-3px);
    }

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

    .page-phrush-188__game-category-item {
        background-color: #2b2b45;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        text-align: center;
    }

    .page-phrush-188__game-category-item:hover {
        transform: translateY(-5px);
    }

    .page-phrush-188__game-category-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        max-width: 100%;
        height: auto;
    }

    .page-phrush-188__game-category-title {
        font-size: 1.3em;
        color: #e6a700;
        margin: 20px 15px 10px 15px;
    }

    .page-phrush-188__game-category-text {
        color: #cccccc;
        padding: 0 15px 15px 15px;
        font-size: 0.95em;
    }

    .page-phrush-188__game-category-button {
        display: block;
        background-color: #e6a700;
        color: #1a1a2e;
        padding: 12px 20px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        border-radius: 0 0 10px 10px;
    }

    .page-phrush-188__game-category-button:hover {
        background-color: #ffc107;
    }

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

    .page-phrush-188__promotion-card {
        background-color: #2b2b45;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        text-align: center;
    }

    .page-phrush-188__promotion-card:hover {
        transform: translateY(-5px);
    }

    .page-phrush-188__promotion-card-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        max-width: 100%;
        height: auto;
    }

    .page-phrush-188__promotion-card-title {
        font-size: 1.3em;
        color: #e6a700;
        margin: 20px 15px 10px 15px;
    }

    .page-phrush-188__promotion-card-text {
        color: #cccccc;
        padding: 0 15px 15px 15px;
        font-size: 0.95em;
    }

    .page-phrush-188__promotion-card-button {
        display: block;
        background-color: #007bff;
        color: #ffffff;
        padding: 12px 20px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        border-radius: 0 0 10px 10px;
    }

    .page-phrush-188__promotion-card-button:hover {
        background-color: #0056b3;
    }

    .page-phrush-188__security-support-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin-top: 40px;
    }

    .page-phrush-188__security-support-item {
        background-color: #2b2b45;
        padding: 30px;
        border-radius: 10px;
        flex: 1 1 calc(33% - 40px);
        min-width: 280px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        box-sizing: border-box;
    }

    .page-phrush-188__security-support-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
        max-width: 100%;
        height: auto;
    }

    .page-phrush-188__security-support-subtitle {
        font-size: 1.4em;
        color: #e6a700;
        margin-bottom: 10px;
    }

    .page-phrush-188__security-support-text {
        color: #cccccc;
        font-size: 0.95em;
    }

    .page-phrush-188__faq-container {
        margin-top: 40px;
        text-align: left;
    }

    .page-phrush-188__faq-item {
        background-color: #2b2b45;
        border-radius: 8px;
        margin-bottom: 15px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-phrush-188__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        cursor: pointer;
        user-select: none;
        background-color: #3a3a5e;
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }

    .page-phrush-188__faq-question:hover {
        background-color: #4a4a7a;
    }

    .page-phrush-188__faq-question-text {
        font-size: 1.2em;
        color: #e6a700;
        margin: 0;
        pointer-events: none; /* Prevent text from blocking click event */
    }

    .page-phrush-188__faq-toggle {
        font-size: 1.5em;
        color: #e6a700;
        font-weight: bold;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-phrush-188__faq-item.active .page-phrush-188__faq-toggle {
        transform: rotate(45deg);
    }

    .page-phrush-188__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: #cccccc;
        font-size: 1em;
    }

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

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

    .page-phrush-188__blog-card {
        background-color: #2b2b45;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        text-align: left;
    }

    .page-phrush-188__blog-card:hover {
        transform: translateY(-5px);
    }

    .page-phrush-188__blog-card-image {
        width: 100%;
        height: 180px;
        object-fit: cover;
        max-width: 100%;
        height: auto;
    }

    .page-phrush-188__blog-card-title {
        font-size: 1.2em;
        color: #e6a700;
        margin: 15px 15px 10px 15px;
        line-height: 1.3;
    }

    .page-phrush-188__blog-card-title a {
        color: inherit;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .page-phrush-188__blog-card-title a:hover {
        color: #ffc107;
    }

    .page-phrush-188__blog-card-excerpt {
        color: #cccccc;
        padding: 0 15px 15px 15px;
        font-size: 0.9em;
    }

    .page-phrush-188__blog-card-link {
        display: inline-block;
        background-color: #007bff;
        color: #ffffff;
        padding: 8px 15px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9em;
        margin: 0 15px 15px 15px;
        transition: background-color 0.3s ease;
    }

    .page-phrush-188__blog-card-link:hover {
        background-color: #0056b3;
    }

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

    .page-phrush-188__floating-button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100px;
        height: 45px;
        border-radius: 25px;
        font-size: 1em;
        font-weight: bold;
        text-decoration: none;
        color: #1a1a2e;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .page-phrush-188__floating-button--register {
        background-color: #e6a700;
    }

    .page-phrush-188__floating-button--register:hover {
        background-color: #ffc107;
        transform: scale(1.05);
    }

    .page-phrush-188__floating-button--login {
        background-color: #007bff;
        color: #ffffff;
    }

    .page-phrush-188__floating-button--login:hover {
        background-color: #0056b3;
        transform: scale(1.05);
    }


    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-phrush-188__hero-title {
            font-size: 1.8em;
        }

        .page-phrush-188__hero-description {
            font-size: 1em;
        }

        .page-phrush-188__hero-button {
            padding: 12px 25px;
            font-size: 1em;
            max-width: 250px;
        }

        .page-phrush-188__intro-section,
        .page-phrush-188__quick-access-section,
        .page-phrush-188__games-section,
        .page-phrush-188__promotions-section,
        .page-phrush-188__security-support-section,
        .page-phrush-188__faq-section,
        .page-phrush-188__blog-section {
            padding: 30px 15px;
        }

        .page-phrush-188__intro-title,
        .page-phrush-188__quick-access-title,
        .page-phrush-188__games-title,
        .page-phrush-188__promotions-title,
        .page-phrush-188__security-support-title,
        .page-phrush-188__faq-title,
        .page-phrush-188__blog-title {
            font-size: 1.5em;
            margin-bottom: 20px;
        }

        .page-phrush-188__intro-text,
        .page-phrush-188__quick-access-description,
        .page-phrush-188__games-description,
        .page-phrush-188__promotions-description,
        .page-phrush-188__blog-description {
            font-size: 0.95em;
            margin-bottom: 30px;
        }

        .page-phrush-188__intro-feature-item,
        .page-phrush-188__game-category-item,
        .page-phrush-188__promotion-card,
        .page-phrush-188__security-support-item,
        .page-phrush-188__blog-card {
            flex: 1 1 100%;
            max-width: 100%;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
        }

        .page-phrush-188__quick-access-buttons {
            grid-template-columns: 1fr;
        }

        /* List item specific responsive rules */
        .page-phrush-188__intro-features,
        .page-phrush-188__game-categories,
        .page-phrush-188__promotion-cards,
        .page-phrush-188__security-support-content,
        .page-phrush-188__blog-posts {
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
        }

        .page-phrush-188__faq-question-text {
            font-size: 1.1em;
        }

        .page-phrush-188__faq-answer p {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-phrush-188__floating-buttons {
            bottom: 10px;
            right: 10px;
            flex-direction: row; /* Stack horizontally on mobile */
            width: calc(100% - 20px);
            justify-content: space-around;
        }

        .page-phrush-188__floating-button {
            width: 48%; /* Adjust width to fit two buttons */
            max-width: 150px;
            height: 40px;
            font-size: 0.9em;
        }
    }