
    :root {
        --primary-color: #e44d26; /* Example: A vibrant orange/red */
        --secondary-color: #333;
        --accent-color: #f7931e;
        --background-dark: #1a1a1a;
        --background-light: #f4f4f4;
        --text-color-light: #fff;
        --text-color-dark: #333;
        --border-color: #444;
        --header-offset: 122px; /* Default fallback if not defined in shared.css */
    }

    /* Base styles for the page */
    .page-11bet-phalco {
        font-family: 'Arial', sans-serif;
        color: var(--text-color-light);
        background-color: var(--background-dark);
        line-height: 1.6;
        padding-top: var(--header-offset, 122px); /* Fallback for header offset */
        overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .page-11bet-phalco__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
    }

    .page-11bet-phalco__section {
        padding: 60px 20px;
        text-align: center;
        margin-bottom: 20px;
        background-color: var(--background-dark);
    }

    .page-11bet-phalco__section--alt {
        background-color: #222;
    }

    .page-11bet-phalco__heading {
        font-size: 2.8em;
        color: var(--primary-color);
        margin-bottom: 20px;
        font-weight: bold;
    }

    .page-11bet-phalco__subheading {
        font-size: 2.2em;
        color: var(--accent-color);
        margin-bottom: 30px;
    }

    .page-11bet-phalco__paragraph {
        font-size: 1.1em;
        color: #ccc;
        margin-bottom: 20px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Hero Section */
    .page-11bet-phalco__hero-section {
        background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
        background-size: cover;
        background-position: center;
        padding: 80px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        min-height: 500px;
        position: relative;
        overflow: hidden;
        padding-top: 10px; /* Small decorative top padding as body already has offset */
    }

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

    .page-11bet-phalco__hero-title {
        font-size: 3.5em;
        color: #fff;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        line-height: 1.2;
    }

    .page-11bet-phalco__hero-description {
        font-size: 1.3em;
        color: #f0f0f0;
        max-width: 700px;
        margin-bottom: 40px;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

    /* Floating Buttons */
    .page-11bet-phalco__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 1000;
    }

    .page-11bet-phalco__floating-button {
        background-color: var(--primary-color);
        color: var(--text-color-light);
        border: none;
        padding: 15px 25px;
        border-radius: 30px;
        font-size: 1.1em;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        text-transform: uppercase;
    }

    .page-11bet-phalco__floating-button:hover {
        background-color: var(--accent-color);
        transform: translateY(-3px);
    }
    
    .page-11bet-phalco__floating-button--login {
        background-color: #555;
    }
    .page-11bet-phalco__floating-button--login:hover {
        background-color: #777;
    }

    /* Product Display */
    .page-11bet-phalco__product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        padding: 0 20px;
    }

    .page-11bet-phalco__product-card {
        background-color: #2a2a2a;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 6px 20px rgba(0,0,0,0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: left;
        display: flex;
        flex-direction: column;
        border: 1px solid var(--border-color);
    }

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

    .page-11bet-phalco__product-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-11bet-phalco__product-image {
        width: 100%;
        height: 250px; /* Fixed height for consistency */
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }

    .page-11bet-phalco__product-card:hover .page-11bet-phalco__product-image {
        transform: scale(1.05);
    }

    .page-11bet-phalco__product-content {
        padding: 25px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .page-11bet-phalco__product-title {
        font-size: 1.6em;
        color: var(--primary-color);
        margin-bottom: 15px;
        font-weight: bold;
    }

    .page-11bet-phalco__product-description {
        font-size: 1em;
        color: #bbb;
        margin-bottom: 20px;
        flex-grow: 1;
    }

    /* Features/Benefits List */
    .page-11bet-phalco__features-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .page-11bet-phalco__feature-item {
        background-color: #2a2a2a;
        padding: 30px;
        border-radius: 12px;
        text-align: left;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        border: 1px solid var(--border-color);
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }

    .page-11bet-phalco__feature-icon {
        width: 60px;
        height: 60px;
        object-fit: contain;
        flex-shrink: 0;
    }

    .page-11bet-phalco__feature-content {
        flex-grow: 1;
    }

    .page-11bet-phalco__feature-title {
        font-size: 1.4em;
        color: var(--accent-color);
        margin-bottom: 10px;
        font-weight: bold;
    }

    .page-11bet-phalco__feature-description {
        font-size: 1em;
        color: #ccc;
    }

    /* Promotions Section */
    .page-11bet-phalco__promo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        padding: 0 20px;
    }

    .page-11bet-phalco__promo-card {
        background-color: #2a2a2a;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 6px 20px rgba(0,0,0,0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: left;
        border: 1px solid var(--border-color);
    }

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

    .page-11bet-phalco__promo-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-11bet-phalco__promo-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }

    .page-11bet-phalco__promo-card:hover .page-11bet-phalco__promo-image {
        transform: scale(1.05);
    }

    .page-11bet-phalco__promo-content {
        padding: 25px;
    }

    .page-11bet-phalco__promo-title {
        font-size: 1.5em;
        color: var(--primary-color);
        margin-bottom: 10px;
        font-weight: bold;
    }

    .page-11bet-phalco__promo-description {
        font-size: 1em;
        color: #bbb;
        margin-bottom: 15px;
    }

    /* Payment Methods & Game Providers */
    .page-11bet-phalco__logo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        justify-items: center;
        align-items: center;
        padding: 0 20px;
    }

    .page-11bet-phalco__logo-item {
        background-color: #2a2a2a;
        border-radius: 8px;
        padding: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100px;
        width: 100%;
        max-width: 200px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        transition: transform 0.2s ease;
        border: 1px solid var(--border-color);
        box-sizing: border-box;
    }

    .page-11bet-phalco__logo-item:hover {
        transform: translateY(-5px);
    }

    .page-11bet-phalco__logo-image {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        display: block;
    }

    /* Call to Action Button */
    .page-11bet-phalco__cta-button {
        background-color: var(--primary-color);
        color: var(--text-color-light);
        border: none;
        padding: 18px 40px;
        border-radius: 30px;
        font-size: 1.2em;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 15px rgba(0,0,0,0.4);
        margin-top: 40px;
        text-transform: uppercase;
    }

    .page-11bet-phalco__cta-button:hover {
        background-color: var(--accent-color);
        transform: translateY(-5px);
    }

    /* FAQ Section */
    .page-11bet-phalco__faq-list {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .page-11bet-phalco__faq-item {
        background-color: #2a2a2a;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid var(--border-color);
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

    .page-11bet-phalco__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        background-color: #333;
        color: var(--text-color-light);
        cursor: pointer;
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease;
        user-select: none;
    }

    .page-11bet-phalco__faq-question:hover {
        background-color: #444;
    }

    .page-11bet-phalco__faq-question h3 {
        margin: 0;
        color: var(--primary-color);
        font-size: 1.1em;
        pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-11bet-phalco__faq-toggle {
        font-size: 1.8em;
        line-height: 1;
        transition: transform 0.3s ease;
        color: var(--accent-color);
        pointer-events: none; /* Prevent toggle icon from blocking click on parent */
    }

    .page-11bet-phalco__faq-item.active .page-11bet-phalco__faq-toggle {
        transform: rotate(45deg); /* Plus to Minus visual change */
    }

    .page-11bet-phalco__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        color: #bbb;
        font-size: 1em;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
    }

    .page-11bet-phalco__faq-item.active .page-11bet-phalco__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to contain content */
        padding: 20px 25px !important;
        opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .page-11bet-phalco__hero-title {
            font-size: 3em;
        }
        .page-11bet-phalco__subheading {
            font-size: 1.8em;
        }
        .page-11bet-phalco__heading {
            font-size: 2.5em;
        }
    }

    @media (max-width: 768px) {
        .page-11bet-phalco__hero-title {
            font-size: 2.5em;
        }
        .page-11bet-phalco__hero-description {
            font-size: 1.1em;
        }
        .page-11bet-phalco__heading {
            font-size: 2em;
        }
        .page-11bet-phalco__subheading {
            font-size: 1.5em;
        }
        .page-11bet-phalco__section {
            padding: 40px 15px;
        }
        .page-11bet-phalco__product-grid,
        .page-11bet-phalco__promo-grid,
        .page-11bet-phalco__features-list {
            grid-template-columns: 1fr;
            padding: 0 15px;
        }
        .page-11bet-phalco__logo-grid {
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            padding: 0 15px;
        }

        /* Floating buttons for mobile */
        .page-11bet-phalco__floating-buttons {
            flex-direction: row;
            width: calc(100% - 40px);
            left: 20px;
            right: 20px;
            bottom: 15px;
            justify-content: center;
        }
        .page-11bet-phalco__floating-button {
            flex: 1;
            padding: 12px 15px;
            font-size: 1em;
            text-align: center;
        }

        /* List items responsive */
        .page-11bet-phalco__features-list,
        .page-11bet-phalco__product-grid,
        .page-11bet-phalco__promo-grid,
        .page-11bet-phalco__logo-grid {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-11bet-phalco__feature-item,
        .page-11bet-phalco__product-card,
        .page-11bet-phalco__promo-card,
        .page-11bet-phalco__logo-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        .page-11bet-phalco__feature-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .page-11bet-phalco__feature-icon {
            margin-bottom: 10px;
        }
        .page-11bet-phalco__product-content,
        .page-11bet-phalco__promo-content {
            padding: 15px;
        }
        .page-11bet-phalco__faq-question,
        .page-11bet-phalco__faq-answer {
            padding-left: 15px !important;
            padding-right: 15px !important;
        }
        .page-11bet-phalco__faq-item.active .page-11bet-phalco__faq-answer {
            padding-top: 15px !important;
            padding-bottom: 15px !important;
        }
        .page-11bet-phalco__faq-list {
            padding: 0 15px;
        }

        /* Image responsive */
        .page-11bet-phalco__hero-image,
        .page-11bet-phalco__product-image,
        .page-11bet-phalco__promo-image,
        .page-11bet-phalco__feature-icon,
        .page-11bet-phalco__logo-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-11bet-phalco__product-image-wrapper,
        .page-11bet-phalco__promo-image-wrapper {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
    }

    @media (max-width: 480px) {
        .page-11bet-phalco__hero-title {
            font-size: 2em;
        }
        .page-11bet-phalco__heading {
            font-size: 1.8em;
        }
        .page-11bet-phalco__subheading {
            font-size: 1.3em;
        }
        .page-11bet-phalco__cta-button {
            padding: 15px 30px;
            font-size: 1.1em;
        }
    }
  