.anniversary-badge {
    position: fixed;
    left: 240px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6347 100%);
    color: #fff;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4);
    text-align: center;
    max-width: 180px;
    animation: float 3s ease-in-out infinite;
    cursor: default;
}

.anniversary-badge .badge-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
}

.anniversary-badge .badge-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.anniversary-badge .badge-number {
    font-size: 36px;
    font-weight: 900;
    display: block;
    margin: 5px 0;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.anniversary-badge .close-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: #333;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.anniversary-badge .close-btn:hover {
    background: #555;
}

@keyframes float {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(calc(-50% - 10px)) translateX(0);
    }
}

@media (max-width: 992px) {
    .anniversary-badge {
        display: none;
    }
}
