
    .glass-warning-topbar {
        background: linear-gradient(135deg, rgba(239, 68, 68, 0.95), rgba(220, 38, 38, 0.9));
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 10px 0;
        width: 100%;
        position: relative;
        z-index: 1050;
        box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
    }

    .glass-warning-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 15px;
    }

    .glass-warning-left {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .glass-icon-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        color: #ffffff;
        font-size: 14px;
        animation: pulse-border 2s infinite;
    }

    .glass-warning-text {
        color: #ffffff;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0.3px;
    }

    .glass-warning-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #ffffff;
        color: #dc2626;
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .glass-warning-btn:hover {
        background: #f8f9fa;
        color: #b91c1c;
        text-decoration: none;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    @keyframes pulse-border {
        0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
        70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
        100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
    }

    @media (max-width: 768px) {
        .glass-warning-content {
            flex-direction: column;
            justify-content: center;
            text-align: center;
        }

        .glass-warning-left {
            flex-direction: column;
            text-align: center;
        }
    }
