.event-notification {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
    border-radius: 10px;
    z-index: 1000;
    min-width: 300px;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 2px solid;
    animation: slideDown 0.5s forwards, glow 2s infinite;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.event-notification.livraison {
    border-color: #4CAF50;
}

.event-notification.megahigh {
    border-color: #9C27B0;
}

.event-notification.rafle {
    border-color: #f44336;
}

.event-title {
    font-size: 24px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

.event-description {
    font-size: 16px;
    margin-bottom: 15px;
}

.event-timer {
    font-size: 20px;
    font-weight: bold;
    color: #FFD700;
    margin-top: 10px;
}

.event-button {
    background: linear-gradient(45deg, #FF4081, #7C4DFF);
    border: none;
    padding: 10px 20px;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 16px;
    margin-top: 10px;
}

.event-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.event-test-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.event-test-buttons button {
    background: linear-gradient(45deg, #2196F3, #3F51B5);
    border: none;
    padding: 10px 15px;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s;
}

.event-test-buttons button:hover {
    transform: scale(1.1);
}

@keyframes slideDown {
    0% {
        top: -100px;
        opacity: 0;
    }
    100% {
        top: 20px;
        opacity: 1;
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }
}

.smoke {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
    background: url('smoke.png') repeat;
    animation: smoke 20s linear infinite;
}

@keyframes smoke {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 100%;
    }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    animation: float 3s infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}
