.font-cyber {
    font-family: 'Orbitron', sans-serif;
}

.font-tech {
    font-family: 'Share Tech Mono', monospace;
}

.cyber-bg {
    background-color: #0f172a;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)),
        repeating-linear-gradient(0deg, transparent, transparent 19px, #1e293b 19px, #1e293b 20px),
        repeating-linear-gradient(90deg, transparent, transparent 19px, #1e293b 19px, #1e293b 20px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
}

.neon-border {
    box-shadow: 0 0 10px #06b6d4, inset 0 0 10px #06b6d4;
    border: 2px solid #06b6d4;
}

.neon-text {
    text-shadow: 0 0 5px #f472b6, 0 0 10px #f472b6;
}

.neon-text-cyan {
    text-shadow: 0 0 5px #06b6d4, 0 0 10px #22d3ee;
}

.hologram-panel {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.5);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    clip-path: polygon(0 10px, 10px 0,
            100% 0, 100% calc(100% - 10px),
            calc(100% - 10px) 100%, 0 100%);
}

.transform-item {
    animation: glitchPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes glitchPop {
    0% {
        transform: scale(0.8);
        opacity: 0;
        filter: hue-rotate(90deg);
    }

    50% {
        transform: scale(1.1);
        filter: hue-rotate(-45deg);
    }

    100% {
        transform: scale(1);
        opacity: 1;
        filter: none;
    }
}

.btn-cyber {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid #334155;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.btn-cyber:hover {
    border-color: #ec4899;
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.4);
    transform: translateY(-2px);
}

.btn-cyber:active {
    transform: translateY(1px);
}

.btn-cyber::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
    pointer-events: none;
}

.btn-cyber:hover::before {
    left: 100%;
}

/* Scanline effect */
.scanlines::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    z-index: 2;
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
}