/* Notification Ribbon Styles */
.notification-ribbon {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.5s ease-out;
    transition: all 0.3s ease-out;
}

.notification-ribbon.hidden {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 !important;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
    cursor: pointer;
    transition: background 0.3s ease;
}

.notification-content:hover {
    background: rgba(255, 255, 255, 0.05);
}

.notification-icon {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.notification-text {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
}

.notification-link {
    color: white;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0 4px;
    border-radius: 4px;
}

.notification-link:hover {
    background: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .notification-content {
        padding: 10px 15px;
        gap: 8px;
    }

    .notification-icon {
        font-size: 1rem;
        flex-shrink: 0;
    }

    .notification-text {
        font-size: 0.875rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .notification-content {
        padding: 8px 12px;
        gap: 6px;
    }

    .notification-icon {
        font-size: 0.9rem;
    }

    .notification-text {
        font-size: 0.8rem;
    }
}

/* Dark Mode Support (if theme.css supports it) */
@media (prefers-color-scheme: dark) {
    .notification-ribbon {
        background: linear-gradient(135deg, #D9534F 0%, #E67E22 100%);
    }
}
