/* Matrix Background */
#prematch-alert-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Alert Container */
.prematch-alert-container {
    position: relative;
    z-index: 1000;
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(0, 20, 0, 0.9);
    border: 2px solid var(--prematch-color);
    border-radius: 8px;
    color: var(--prematch-color);
    font-family: var(--prematch-font);
    transform: rotateX(5deg) rotateY(-3deg);
    animation: alert-entrance 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

/* Live Alert Effects */
.live-alert {
    animation: live-pulse 1.5s infinite, alert-entrance 0.8s;
}

.live-indicator {
    width: 15px;
    height: 15px;
    background: #ff0000;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    right: 15px;
    animation: live-blink 1s infinite;
}

/* Image Styling */
.alert-image {
    margin-bottom: 1.5rem;
    text-align: center;
}

.alert-image img {
    max-height: 150px;
    border: 2px solid var(--prematch-color);
    border-radius: 4px;
}

/* Animations */
@keyframes live-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

@keyframes live-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ... (keep other animations from previous CSS) */

/* Responsive Design */
@media (max-width: 768px) {
    .prematch-alert-container {
        margin: 1rem;
        padding: 1rem;
    }
}