
    /* CSS for suncity.html */
    :root {
        --page-suncity-primary: #FFD700; /* Gold */
        --page-suncity-secondary: #000000; /* Black */
        --page-suncity-accent: #DC143C; /* Crimson for promotions */
        --page-suncity-text: #FFFFFF; /* White */
        --page-suncity-text-dark: #333333; /* Dark text for light backgrounds */
        --page-suncity-bg-dark: #1a1a1a; /* Dark background */
        --page-suncity-bg-light: #2c2c2c; /* Slightly lighter dark background */
        --page-suncity-border: #444444;
    }

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

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

    @media (min-width: 768px) {
        .page-suncity-container {
            padding: 20px;
        }
    }

    .page-suncity-section {
        padding: 40px 0;
        text-align: center;
    }

    .page-suncity-section:nth-of-type(even) {
        background-color: var(--page-suncity-bg-light);
    }

    .page-suncity-title {
        color: var(--page-suncity-primary);
        font-size: 2.5em;
        margin-bottom: 20px;
        text-transform: uppercase;
        font-weight: bold;
    }

    .page-suncity-subtitle {
        color: var(--page-suncity-text);
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .page-suncity-text {
        font-size: 1.1em;
        margin-bottom: 15px;
        color: var(--page-suncity-text);
    }

    .page-suncity-button {
        display: inline-block;
        background-color: var(--page-suncity-accent);
        color: var(--page-suncity-text);
        padding: 12px 25px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-suncity-button:hover {
        background-color: #c01135; /* Darken color */
    }

    /* Hero Section */
    .page-suncity-hero {
        background: var(--page-suncity-bg-dark); /* Fallback */
        background-size: cover;
        background-position: center;
        padding: 60px 0 100px; /* More space at bottom for floating button */
        position: relative;
        overflow: hidden;
    }

    .page-suncity-hero-banner {
        width: 100%;
        max-width: 100%; /* Ensure it's centered and responsive */
        height: auto;
        display: block;
        margin: 0 auto 20px;
        border-radius: 10px;
    }

    .page-suncity-hero-content {
        position: relative;
        z-index: 1;
        text-align: center;
        padding: 0 15px;
    }

    .page-suncity-hero h1 {
        font-size: 2.8em;
        color: var(--page-suncity-primary);
        margin-bottom: 15px;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .page-suncity-hero p {
        font-size: 1.3em;
        color: var(--page-suncity-text);
        margin-bottom: 30px;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

    @media (min-width: 768px) {
        .page-suncity-hero h1 {
            font-size: 3.5em;
        }
        .page-suncity-hero p {
            font-size: 1.5em;
        }
    }

    /* Floating Login/Register Button */
    .page-suncity-floating-button {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        width: 90%;
        max-width: 400px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.4);
        animation: pulse 2s infinite;
    }

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

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

    .page-suncity-game-card {
        background-color: var(--page-suncity-bg-light);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

    .page-suncity-game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    }

    .page-suncity-game-card img {
        width: 100%;
        height: 120px; /* Fixed height for consistency */
        object-fit: cover;
        display: block;
    }

    .page-suncity-game-card h3 {
        color: var(--page-suncity-primary);
        font-size: 1.2em;
        margin: 15px 10px;
        flex-grow: 1; /* Allows text to take available space */
    }

    .page-suncity-game-card a {
        text-decoration: none;
        color: inherit;
        display: block; /* Make the whole card clickable */
    }

    /* Promotions Section */
    .page-suncity-promo-card {
        background-color: var(--page-suncity-bg-light);
        border-radius: 10px;
        padding: 25px;
        margin-bottom: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        text-align: left;
    }

    .page-suncity-promo-card h3 {
        color: var(--page-suncity-accent);
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    .page-suncity-promo-card p {
        color: var(--page-suncity-text);
        margin-bottom: 15px;
    }

    .page-suncity-promo-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    @media (min-width: 768px) {
        .page-suncity-promo-grid {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }
    }

    /* Why Suncity Section */
    .page-suncity-feature-list {
        list-style: none;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .page-suncity-feature-list li {
        background-color: var(--page-suncity-bg-light);
        border-left: 5px solid var(--page-suncity-primary);
        padding: 20px;
        border-radius: 8px;
        text-align: left;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

    .page-suncity-feature-list li strong {
        color: var(--page-suncity-primary);
        font-size: 1.2em;
        display: block;
        margin-bottom: 5px;
    }

    @media (min-width: 768px) {
        .page-suncity-feature-list {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }
    }

    /* FAQ Section */
    .page-suncity-faq-item {
        background-color: var(--page-suncity-bg-light);
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

    .page-suncity-faq-question {
        padding: 18px 25px;
        background-color: var(--page-suncity-bg-light);
        color: var(--page-suncity-primary);
        cursor: pointer;
        font-weight: bold;
        font-size: 1.1em;
        text-align: left;
        border: none;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .page-suncity-faq-question:hover {
        background-color: #3a3a3a;
    }

    .page-suncity-faq-answer {
        padding: 0 25px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out, padding 0.3s ease-out;
        color: var(--page-suncity-text);
        text-align: left;
    }

    .page-suncity-faq-answer p {
        padding-bottom: 18px;
        margin: 0;
    }

    .page-suncity-faq-question.active + .page-suncity-faq-answer {
        max-height: 200px; /* Adjust as needed */
        padding-top: 10px;
    }

    /* Provider Logos */
    .page-suncity-providers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 15px;
        margin-top: 30px;
        align-items: center;
        justify-items: center;
    }

    .page-suncity-provider-logo {
        width: 100%;
        max-width: 100px;
        height: auto;
        opacity: 0.7;
        transition: opacity 0.3s ease;
    }

    .page-suncity-provider-logo:hover {
        opacity: 1;
    }
  