.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification {
    background: linear-gradient(135deg, #2e2d2e 0%, #3d3c3d 100%);
    border: 2px solid #88c131;
    border-radius: 8px;
    padding: 15px;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: slideIn 0.5s ease-out, fadeOut 0.5s ease-in 4.5s forwards;
    box-shadow: 0 4px 15px rgba(136, 193, 49, 0.2);
    transform-origin: right;
    transition: all 0.3s ease;
}

.notification:hover {
    transform: translateX(-5px);
    box-shadow: 0 4px 20px rgba(136, 193, 49, 0.3);
}

.notification-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.notification-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.notification-content {
    flex-grow: 1;
}

.notification-title {
    color: #88c131;
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 5px;
    background: linear-gradient(45deg, #88c131, #618930);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 2s infinite;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 5px rgba(136, 193, 49, 0.2);
    }
    50% {
        text-shadow: 0 0 10px rgba(136, 193, 49, 0.4);
    }
    100% {
        text-shadow: 0 0 5px rgba(136, 193, 49, 0.2);
    }
}

.notification-message {
    color: #fff;
    font-size: 0.9em;
}

.notification-reward {
    color: #ffd700;
    font-weight: bold;
    font-size: 0.9em;
    margin-top: 5px;
}

@keyframes slideIn {
    from {
        transform: translateX(100%) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateX(100%) scale(0.9);
    }
} 