 .my-page-body {
            font-family: Arial, sans-serif;
            background-color: #121212;
            color: #ffffff;
            margin: 0;
            transition: padding-bottom 0.5s ease-in-out; 
        }
        
        .my-main-content {
            padding: 20px;
            max-width: 1000px;
            margin: 0 auto;
            min-height: 200vh; /* Ensures the page is long enough to scroll */
        }
        
        .my-page-header-title {
            color: #33e66f;
        }

        .my-page-footer {
            background-color: #0d0d0d;
            color: #888;
            padding: 20px;
            text-align: center;
        }

        /* ====================================================
        CUSTOM CASINO AD STYLES
        All styles for the ad are contained within this section
        and use unique, prefixed class names to prevent conflicts.
        ==================================================== */
        #casino-ad-wrapper {
            position: fixed;
            bottom: -150px; /* Hidden below the viewport */
            left: 0;
            width: 100%;
            height: 120px; /* Fixed height for the ad component */
            background-color: #1a1a1a;
            color: #fff;
            box-sizing: border-box;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: bottom 0.5s ease-in-out; /* Smooth slide-up effect */
            z-index: 1000; /* Ensures the ad is on top of other content */
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
            padding-bottom: constant(safe-area-inset-bottom);
            padding-bottom: env(safe-area-inset-bottom);
        }

        #casino-ad-wrapper.show {
            bottom: 0;
        }

        .casino-ad-inner {
            display: flex;
            align-items: center;
            gap: 20px;
            max-width: 1200px;
            width: 100%;
            padding: 0 20px;
        }

        .casino-ad-logo
 {
    border-radius: 5px;
    margin-right: 30px;
    min-width: auto;
    height: 70px;
}

        .casino-ad-text-container {
            display: flex;
            flex-direction: column;
        }

        .casino-ad-title {
            margin: 0;
            font-size: 1.5rem;
            color: #fff;
        }

        .casino-ad-rating {
            display: flex;
            align-items: center;
            gap: 5px;
            color: gold;
        }

        .casino-ad-star {
            font-size: 1rem;
        }

        .casino-ad-rating-score {
            color: #fff;
            font-size: 0.9rem;
        }

       .casino-ad-play-button {
    background: #ffcc00;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-left: auto;
    transition: background-color 0.3s ease;
}

        .casino-ad-play-button:hover {
            background-color: #2abf5a;
        }
        
        
        @media (max-width: 600px) {
    #casino-ad-wrapper {
        height: auto; /* Allow height to adjust based on content */
    }
    
    .casino-ad-inner {
        flex-wrap: wrap; /* Allow items to wrap on smaller screens */
        justify-content: center; /* Center items when they wrap */
        text-align: center;
        padding: 10px; /* Reduced padding */
        gap: 10px;
    }
    
.casino-ad-logo
 {
        width: auto;
        height: 50px;
    }

    .casino-ad-text-container {
        align-items: center;
    }

    .casino-ad-title {
        font-size: 1.2rem;
    }

    .casino-ad-rating {
        justify-content: center;
    }

    .casino-ad-play-button {
        width: 100%; /* Make the button full-width */
        margin-top: 10px;
        margin-left: 0;
    }
}
