
    :root {
        --page-kucasino-primary: #a00000; /* Dark red, similar to some casino themes */
        --page-kucasino-secondary: #ffcc00; /* Gold/yellow for accents */
        --page-kucasino-dark: #1a1a1a;
        --page-kucasino-light: #f5f5f5;
        --page-kucasino-text: #ffffff; /* White text for dark backgrounds */
        --page-kucasino-text-dark: #333333; /* Dark text for light backgrounds */
        --page-kucasino-gradient-start: #7a0000;
        --page-kucasino-gradient-end: #cc0000;
    }

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

    .page-kucasino__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    /* Banner Section */
    .page-kucasino__banner {
        position: relative;
        width: 100%;
        height: 250px; /* Mobile height */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: url('[GALLERY:banner:kucasino,login,mobile_banner]') no-repeat center center/cover;
        flex-direction: column;
        padding: 20px;
        box-sizing: border-box;
    }

    .page-kucasino__banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5); /* Overlay for text readability */
        z-index: 1;
    }

    .page-kucasino__banner-content {
        position: relative;
        z-index: 2;
        max-width: 90%;
    }

    .page-kucasino__banner-title {
        font-size: 2.2em;
        margin-bottom: 10px;
        color: var(--page-kucasino-secondary);
        text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        line-height: 1.2;
    }

    .page-kucasino__banner-text {
        font-size: 1.1em;
        margin-bottom: 20px;
        color: var(--page-kucasino-light);
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }

    .page-kucasino__button {
        display: inline-block;
        background: linear-gradient(90deg, var(--page-kucasino-gradient-start) 0%, var(--page-kucasino-gradient-end) 100%);
        color: var(--page-kucasino-text);
        padding: 12px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-kucasino__button:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    /* Floating Login Button */
    .page-kucasino__floating-login {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        background: linear-gradient(90deg, #007bff 0%, #0056b3 100%); /* Blue gradient for distinct promo */
        color: var(--page-kucasino-text);
        padding: 10px 20px;
        border-radius: 50px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        text-align: center;
        font-size: 1.1em;
        font-weight: bold;
        animation: pulse 2s infinite;
        white-space: nowrap; /* Keep text on one line */
    }

    .page-kucasino__floating-login a {
        color: var(--page-kucasino-text);
        text-decoration: none;
        display: block;
    }

    @keyframes pulse {
        0% { transform: translateX(-50%) scale(1); }
        50% { transform: translateX(-50%) scale(1.05); }
        100% { transform: translateX(-50%) scale(1); }
    }

    /* Section Styling */
    .page-kucasino__section {
        padding: 40px 0;
        text-align: center;
    }

    .page-kucasino__section--light {
        background-color: var(--page-kucasino-light);
        color: var(--page-kucasino-text-dark);
    }

    .page-kucasino__section-title {
        font-size: 2em;
        color: var(--page-kucasino-secondary);
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 10px;
    }

    .page-kucasino__section-title--dark {
        color: var(--page-kucasino-primary);
    }

    .page-kucasino__section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background-color: var(--page-kucasino-secondary);
        border-radius: 2px;
    }

    .page-kucasino__text-block {
        margin-bottom: 25px;
        font-size: 1em;
        text-align: left;
    }

    .page-kucasino__text-block p {
        margin-bottom: 15px;
    }

    /* Game Categories / Product Display */
    .page-kucasino__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .page-kucasino__game-card {
        background-color: #2a2a2a;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        text-align: center;
        padding-bottom: 15px;
    }

    .page-kucasino__game-card:hover {
        transform: translateY(-5px);
    }

    .page-kucasino__game-card img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        display: block;
        border-bottom: 2px solid var(--page-kucasino-primary);
    }

    .page-kucasino__game-card-title {
        font-size: 1.1em;
        color: var(--page-kucasino-secondary);
        margin: 15px 10px 0;
        font-weight: bold;
    }

    .page-kucasino__game-card a {
        text-decoration: none;
        color: inherit;
    }

    .page-kucasino__game-card a:hover .page-kucasino__game-card-title {
        text-decoration: underline;
    }

    /* List styling */
    .page-kucasino__list {
        list-style: none;
        padding: 0;
        margin: 20px auto;
        max-width: 600px;
        text-align: left;
    }

    .page-kucasino__list li {
        background-color: #2a2a2a;
        margin-bottom: 10px;
        padding: 15px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-kucasino__list li::before {
        content: '✔️';
        margin-right: 10px;
        color: var(--page-kucasino-secondary);
        font-size: 1.2em;
    }

    /* Responsive adjustments */
    @media (min-width: 768px) {
        .page-kucasino__banner {
            height: 350px; /* Desktop height */
        }
        .page-kucasino__banner-title {
            font-size: 3em;
        }
        .page-kucasino__banner-text {
            font-size: 1.2em;
        }
        .page-kucasino__section {
            padding: 60px 0;
        }
        .page-kucasino__section-title {
            font-size: 2.5em;
        }
        .page-kucasino__game-grid {
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        }
        .page-kucasino__game-card img {
            height: 150px;
        }
        .page-kucasino__floating-login {
            font-size: 1.2em;
            padding: 12px 25px;
        }
    }
  