/* Cyber Theme Styles */
@keyframes glitch {
    0% {
        transform: translate(0);
    }
    30% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    70% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(0);
    }
}

.glitch {
    position: relative;
    color: #00ff00; /* Neon Green */
    animation: glitch 1s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch::before {
    color: #ff740a; /* Neon Pink */
    z-index: -1;
    animation: glitch 0.5s infinite;
}

.glitch::after {
    color: #00ffff; /* Neon Cyan */
    z-index: -2;
    animation: glitch 0.3s infinite;
}

/* Neon Text Shadows */
.neon-text {
    text-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00, 0 0 20px #00ff00;
}

/* Cyber Button Styles */
.register-btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    font-size: 1rem;
    font-weight: bold;
    color: #00ffd5; /* Neon Green */
    background-color: transparent;
    border: 2px solid #00ff00;
    border-radius: 5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.register-btn:hover {
    background-color: #00ff00;
    color: #000;
    box-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;
}

/* Cyber Card Styles */
.event-card {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid #00ff00;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px #00ff00;
}