/* Floating Ko-Fi support button. Extracted from bwogpzzwtclqnak.js. */
.support-container {
            position: fixed;
            bottom: 20px;
            left: 20px;
            z-index: 1000;
        }

        /* Support Button Style */
        .support-button {
            background-color: #ffcc00;
            color: #333;
            border: none;
            border-radius: 50%;
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
            transition: background-color 0.3s ease;
            padding-left: 10px; /* Space between the icon and the image */
        }

        .support-button:hover {
            background-color: #ffb300;
        }

        .support-button.active {
            background-color: #ffb300;
        }

        .support-button img {
            transition: opacity 0.3s ease, transform 0.3s ease;
            position: absolute;
        }

        /* Icon Fade Out */
        .support-button img.fade-out {
            opacity: 0;
            transform: scale(0.9);
        }

        /* Icon Fade In */
        .support-button img.fade-in {
            opacity: 1;
            transform: scale(1);
        }

        /* Extended Info Box Style */
        .extended-info {
            background-color: #ffd76e;  /* Softer background */
            color: #333;  /* Darker text for better contrast with the yellow background */
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);  /* Slightly stronger shadow for a clean, floating look */
            position: absolute;
            bottom: 80px;
            left: 0;
            width: 250px;
            display: block;  /* Make sure it's always displayed */
            animation: fadeIn 0.5s ease-in-out;  /* Smooth fade-in animation */
            z-index: 10;  /* Ensure it sits above other elements */
            display: flex;
            flex-direction: column;  /* Stack the header, paragraph, and button vertically */
            align-items: flex-start;  /* Align items to the left */
            justify-content: flex-start;  /* Ensure content starts from the top */
        }

        /* Header */
        .extended-info h4 {
            margin: 0;
            font-size: 15px;
            color: #575757;
            font-weight: bold;
        }

        /* Description Text */
        .extended-info p {
            font-size: 14px;
            color: #545454;
            line-height: 1.5;
            margin-bottom: 15px;
        }
        
        .donate-button {
            background-color: #00b700;  /* Green button color */
            color: #fff;
            border: none;
            border-radius: 5px;
            padding: 12px 18px;
            cursor: pointer;
            font-size: 14px;
            width: 100%;
            text-align: center;
            transition: background-color 0.3s ease;
            display: flex;
            align-items: center; /* Align text and image horizontally */
            justify-content: center; /* Center content */
            transition: background-color 0.3s ease-in-out;
        }

        /* Image inside Donate Button */
        .donate-button .donate-image {
            width: 20px;  /* Adjust size of the image */
            height: 20px;
            margin-right: 10px;  /* Space between image and text */
        }

        .donate-button:hover {
            background-color: #006600;  /* Darker green on hover */
        }

        .donate-button:active {
            background-color: #009600;  /* Even darker green when clicked */
        }

        .close-btn {
            background-color: #FF6B6B;
            color: #fff;
            border: none;
            border-radius: 6px;
            width: 30px;
            height: 30px;
            padding: 0;
            font-size: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            text-align: center;
            line-height: 1;
            position: absolute;  /* Positioning it relative to the parent container */
            top: 10px;
            right: 10px;
            z-index: 20; /* Ensure the close button is above the extended box */
        }

        .close-btn:hover {
            background-color: #E05252;
        }

        .close-btn:active {
            background-color: #D44B4B;
        }

        .donate-button:active {
            background-color: #009600;  /* Darker shade on active state */
        }

        /* Animations */
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }