
    /* Page-specific CSS starts here */
    :root {
        --phbet-primary: #FFD700; /* Gold-like */
        --phbet-secondary: #000000; /* Black */
        --phbet-accent: #FF4500; /* Orange-red */
        --phbet-text-light: #FFFFFF;
        --phbet-text-dark: #333333;
        --phbet-bg-dark: #1a1a1a;
        --phbet-bg-light: #f5f5f5;
        --phbet-border-color: #333333;
        --phbet-shadow: rgba(0, 0, 0, 0.3);
    }

    .page-phbet-official-website {
        font-family: 'Arial', sans-serif;
        color: var(--phbet-text-light);
        background-color: var(--phbet-bg-dark);
        line-height: 1.6;
        overflow-x: hidden;
    }

    .page-phbet-official-website__section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .page-phbet-official-website__hero-section {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:phbet_hero,casino_lobby,vip_experience]') no-repeat center center / cover;
        padding: 10px 20px 80px; /* Small top padding, relying on body for header offset */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 60vh;
        text-align: center;
        position: relative;
    }

    .page-phbet-official-website__hero-title {
        font-size: 2.5em;
        color: var(--phbet-primary);
        margin-bottom: 15px;
        line-height: 1.2;
        text-shadow: 2px 2px 4px var(--phbet-shadow);
    }

    .page-phbet-official-website__hero-subtitle {
        font-size: 1.2em;
        color: var(--phbet-text-light);
        margin-bottom: 30px;
        max-width: 800px;
        text-shadow: 1px 1px 2px var(--phbet-shadow);
    }

    .page-phbet-official-website__button-group {
        display: flex;
        gap: 15px;
        justify-content: center;
        margin-bottom: 20px;
    }

    .page-phbet-official-website__button {
        background-color: var(--phbet-primary);
        color: var(--phbet-text-dark);
        padding: 12px 25px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none; /* Ensure it's a button, not a link */
        cursor: pointer;
        font-size: 1em;
    }

    .page-phbet-official-website__button:hover {
        background-color: #FFC107;
        transform: translateY(-2px);
    }

    .page-phbet-official-website__button--secondary {
        background-color: var(--phbet-accent);
        color: var(--phbet-text-light);
    }

    .page-phbet-official-website__button--secondary:hover {
        background-color: #E63900;
    }

    .page-phbet-official-website__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    .page-phbet-official-website__floating-button {
        background-color: var(--phbet-primary);
        color: var(--phbet-text-dark);
        padding: 10px 20px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        box-shadow: 0 4px 8px var(--phbet-shadow);
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
        font-size: 0.9em;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .page-phbet-official-website__floating-button:hover {
        background-color: #FFC107;
        transform: scale(1.05);
    }

    .page-phbet-official-website__section-title {
        font-size: 2em;
        color: var(--phbet-primary);
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 10px;
    }

    .page-phbet-official-website__section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background-color: var(--phbet-accent);
    }

    .page-phbet-official-website__text-content {
        font-size: 1.1em;
        margin-bottom: 20px;
        color: var(--phbet-text-light);
    }

    .page-phbet-official-website__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    .page-phbet-official-website__game-card {
        background-color: var(--phbet-bg-dark);
        border: 1px solid var(--phbet-border-color);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: left;
    }

    .page-phbet-official-website__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
    }

    .page-phbet-official-website__game-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
        max-width: 100%; /* Ensure responsive */
        height: auto; /* Ensure responsive */
    }

    .page-phbet-official-website__game-info {
        padding: 15px;
    }

    .page-phbet-official-website__game-title {
        font-size: 1.3em;
        color: var(--phbet-primary);
        margin-bottom: 8px;
    }

    .page-phbet-official-website__game-description {
        font-size: 0.9em;
        color: var(--phbet-text-light);
    }

    .page-phbet-official-website__promo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    .page-phbet-official-website__promo-card {
        background-color: var(--phbet-bg-dark);
        border: 1px solid var(--phbet-border-color);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: left;
    }

    .page-phbet-official-website__promo-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
    }

    .page-phbet-official-website__promo-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
        max-width: 100%; /* Ensure responsive */
        height: auto; /* Ensure responsive */
    }

    .page-phbet-official-website__promo-info {
        padding: 15px;
    }

    .page-phbet-official-website__promo-title {
        font-size: 1.4em;
        color: var(--phbet-primary);
        margin-bottom: 10px;
    }

    .page-phbet-official-website__promo-description {
        font-size: 0.95em;
        color: var(--phbet-text-light);
        margin-bottom: 15px;
    }

    .page-phbet-official-website__promo-button {
        display: inline-block;
        background-color: var(--phbet-accent);
        color: var(--phbet-text-light);
        padding: 8px 18px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
        font-size: 0.9em;
    }

    .page-phbet-official-website__promo-button:hover {
        background-color: #E63900;
    }

    .page-phbet-official-website__payments-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
    }

    .page-phbet-official-website__payment-item {
        background-color: var(--phbet-bg-dark);
        border: 1px solid var(--phbet-border-color);
        border-radius: 8px;
        padding: 15px 25px;
        display: flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
        transition: transform 0.2s ease;
        box-sizing: border-box; /* Crucial for responsive lists */
        width: 180px; /* Default width */
        max-width: 100%;
    }

    .page-phbet-official-website__payment-item:hover {
        transform: translateY(-3px);
    }

    .page-phbet-official-website__payment-icon {
        width: 40px;
        height: 40px;
        object-fit: contain;
        max-width: 100%; /* Ensure responsive */
        height: auto; /* Ensure responsive */
    }

    .page-phbet-official-website__payment-name {
        font-size: 1em;
        color: var(--phbet-text-light);
        font-weight: bold;
    }

    .page-phbet-official-website__faq-section {
        background-color: var(--phbet-bg-dark);
        border-top: 1px solid var(--phbet-border-color);
    }

    .page-phbet-official-website__faq-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 20px 0;
    }

    .page-phbet-official-website__faq-item {
        margin-bottom: 10px;
        border: 1px solid var(--phbet-border-color);
        border-radius: 8px;
        overflow: hidden;
        background-color: #2a2a2a;
    }

    .page-phbet-official-website__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        background-color: #3a3a3a;
        transition: background-color 0.3s ease;
    }

    .page-phbet-official-website__faq-question:hover {
        background-color: #4a4a4a;
    }

    .page-phbet-official-website__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        color: var(--phbet-primary);
        pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-phbet-official-website__faq-toggle {
        font-size: 1.5em;
        color: var(--phbet-primary);
        font-weight: bold;
        pointer-events: none; /* Prevent toggle from blocking click */
        transition: transform 0.3s ease;
    }

    .page-phbet-official-website__faq-item.active .page-phbet-official-website__faq-toggle {
        transform: rotate(45deg); /* Visually change + to X or - */
    }

    .page-phbet-official-website__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: var(--phbet-text-light);
        text-align: left;
    }

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

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

        .page-phbet-official-website__hero-subtitle {
            font-size: 1em;
        }

        .page-phbet-official-website__button-group {
            flex-direction: column;
            gap: 10px;
        }

        .page-phbet-official-website__button {
            width: 100%;
            max-width: 250px;
            margin: 0 auto;
            font-size: 0.95em;
        }

        .page-phbet-official-website__section {
            padding: 30px 15px;
        }

        .page-phbet-official-website__section-title {
            font-size: 1.8em;
        }

        .page-phbet-official-website__game-grid,
        .page-phbet-official-website__promo-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-phbet-official-website__game-card,
        .page-phbet-official-website__promo-card {
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
        }

        .page-phbet-official-website__floating-buttons {
            bottom: 15px;
            right: 15px;
        }

        .page-phbet-official-website__floating-button {
            padding: 8px 15px;
            font-size: 0.85em;
        }

        .page-phbet-official-website__payments-grid {
            gap: 15px;
        }

        .page-phbet-official-website__payment-item {
            width: calc(50% - 15px); /* Two items per row with gap */
            padding: 12px 15px;
            margin: 0 !important; /* Ensure no extra margin */
            box-sizing: border-box !important;
            max-width: 100% !important;
        }
        .page-phbet-official-website__payment-item .page-phbet-official-website__payment-name {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-phbet-official-website__faq-question {
            padding: 12px 15px;
        }

        .page-phbet-official-website__faq-question h3 {
            font-size: 1em;
        }

        .page-phbet-official-website__faq-answer {
            padding: 15px !important;
        }
    }

    @media (max-width: 480px) {
        .page-phbet-official-website__hero-title {
            font-size: 1.8em;
        }
        .page-phbet-official-website__hero-subtitle {
            font-size: 0.9em;
        }
        .page-phbet-official-website__button {
            padding: 10px 20px;
        }
        .page-phbet-official-website__payment-item {
            width: 100% !important; /* One item per row on very small screens */
        }
        .page-phbet-official-website__section {
            padding: 20px 10px;
        }
        .page-phbet-official-website__faq-question h3 {
            font-size: 0.95em;
        }
        .page-phbet-official-website__faq-answer {
            font-size: 0.9em;
        }
    }

    /* General image responsiveness */
    .page-phbet-official-website img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    @media (max-width: 768px) {
        .page-phbet-official-website img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-phbet-official-website__game-image,
        .page-phbet-official-website__promo-image,
        .page-phbet-official-website__payment-icon {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            overflow: hidden !important;
        }
    }
  