


.glitch-text:hover {
    animation: glitch-anim 0.3s infinite;
    color: #14F195;
}

@keyframes glitch-anim {
    0% { transform: translate(0) }
    20% { transform: translate(-2px, 2px) }
    40% { transform: translate(-2px, -2px) }
    60% { transform: translate(2px, 2px) }
    80% { transform: translate(2px, -2px) }
    100% { transform: translate(0) }
}


.typing-cursor::after {
    content: '▋';
    animation: blink 1s infinite;
    color: #14F195;
    margin-left: 2px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}


.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}


.game-visual-container {
    perspective: 1000px;
}

.card-visual {
    width: 40px;
    height: 56px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.5);
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}


.hologram-box:hover .card-visual {
    transform: rotateY(360deg);
}


.card-group-flush .card-visual:nth-child(1) { transition-delay: 0.0s; }
.card-group-flush .card-visual:nth-child(2) { transition-delay: 0.1s; }
.card-group-flush .card-visual:nth-child(3) { transition-delay: 0.2s; }
.card-group-flush .card-visual:nth-child(4) { transition-delay: 0.3s; }
.card-group-flush .card-visual:nth-child(5) { transition-delay: 0.4s; }


.card-red {
    background: #ff3333;
    color: black;
    border: 2px solid #ff9999;
}

.card-blue {
    background: #3388ff;
    color: black;
    border: 2px solid #99ccff;
}

.card-cyber {
    background: #000;
    color: #14F195;
    border: 1px solid #14F195;
    box-shadow: 0 0 10px rgba(20,241,149,0.2);
}


.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-colors {
    transition-property: background-color, border-color, color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }


.group:hover .group-hover\:opacity-100 {
    opacity: 1;
}

.group:hover .group-hover\:scale-100 {
    transform: scale(1);
}

.group:hover .group-hover\:text-sol-green {
    color: #14F195;
}

.group:hover .group-hover\:text-sol-purple {
    color: #9945FF;
}

.group:hover .group-hover\:bg-sol-green {
    background-color: #14F195;
}

.group:hover .group-hover\:text-black {
    color: #000;
}
