@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');
body {
    font-family: 'VT323', monospace;
    background: linear-gradient(135deg, #8a2be2 0%, #ff69b4 100%);
    color: white;
    background-attachment: fixed;
    background-size: 200% 200%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.font-vt323 {
    font-family: 'VT323', monospace;
}
.neon-text {
    text-shadow: 0 0 5px #ff69b4, 0 0 10px #8a2be2, 0 0 15px #ffffff;
    animation: flicker 1.5s infinite alternate;
}
@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: 0 0 5px #00ff6e, 0 0 10px #00ff6e, 0 0 15px #00ff6e;
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 110, 0.2);
}
.service-card {
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(10px);
}
/* Terminal-like scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #00ff6e;
}

::-webkit-scrollbar-thumb:hover {
    background: #00cc5a;
}

/* Glitch effect on hover for buttons */
.btn-glitch:hover {
    text-shadow: 2px 0 #00ff6e, -2px 0 #ff00ff;
    animation: glitch 0.3s linear infinite;
}

@keyframes glitch {
    0% {
        text-shadow: 2px 0 #00ff6e, -2px 0 #ff00ff;
    }
    25% {
        text-shadow: -2px 0 #00ff6e, 2px 0 #ff00ff;
    }
    50% {
        text-shadow: 2px 0 #ff00ff, -2px 0 #00ff6e;
    }
    75% {
        text-shadow: -2px 0 #ff00ff, 2px 0 #00ff6e;
    }
    100% {
        text-shadow: 2px 0 #00ff6e, -2px 0 #ff00ff;
    }
}
/* Promo section styles */
#promo .bg-gray-900 {
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(10px);
}
#promo .bg-gray-900:hover {
    box-shadow: 0 0 15px rgba(0, 255, 110, 0.5);
}

/* Free diagnosis banner */
.bg-green-400 {
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(10px);
}
.bg-green-400::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 25%, rgba(255,255,255,0.1) 25%, rgba(255,255,255,0.1) 50%, transparent 50%, transparent 75%, rgba(255,255,255,0.1) 75%);
    background-size: 20px 20px;
    animation: move 2s linear infinite;
    opacity: 0.5;
}

@keyframes move {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 20px 20px;
    }
}
/* Gallery styles */
.gallery-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(0, 255, 110, 0.5);
}

.gallery-item img {
    transition: filter 0.3s ease;
}

.gallery-item:hover img {
    filter: brightness(0.7);
}

/* Typewriter effect */
.typewriter {
    overflow: hidden;
    border-right: .15em solid #00ff6e;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: .15em;
    animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #00ff6e; }
}