/* Modern Premium Redesign */
.elhusseiny-ct-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2147483647;
    /* Max Z-Index */
    /* Deep modern gradient matching premium aesthetic */
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: block !important;
    backdrop-filter: blur(10px);
    /* Glassmorphism effect if supported */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.elhusseiny-ct-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 40px 14px 20px;
    /* Right padding for close button */
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.elhusseiny-ct-text {
    margin-right: 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
}

.elhusseiny-ct-text::before {
    /* Optional: can remove the emoji from JS and use an icon here if desired, 
       but keeping emoji as requested in JS for now or styling it */
    margin-right: 8px;
}

#elhusseiny-ct-time {
    background: rgba(255, 255, 255, 0.1);
    /* Subtle translucent pill */
    padding: 6px 18px;
    border-radius: 50px;
    font-family: 'Roboto Mono', monospace;
    /* Monospace for steady numbers */
    font-size: 16px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    min-width: 140px;
    text-align: center;
}

.elhusseiny-ct-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
}

.elhusseiny-ct-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .elhusseiny-ct-content {
        flex-direction: column;
        padding: 12px 20px;
        text-align: center;
    }

    .elhusseiny-ct-text {
        margin-right: 0;
        margin-bottom: 8px;
        font-size: 13px;
        justify-content: center;
    }

    #elhusseiny-ct-time {
        font-size: 14px;
        padding: 4px 14px;
        min-width: auto;
    }

    .elhusseiny-ct-close {
        right: 15px;
        top: 15px;
        /* Stick to top right on mobile */
        transform: none;
    }
}