body {
    margin: 0;
    font-family: 'Share Tech Mono', monospace;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #050505;
    color: #00FF00;
}

code {
    font-family: 'Share Tech Mono', monospace;
}

/* Custom Component Styles */
.terminal-window {
    background-color: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 255, 0, 0.3);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.1);
}

.terminal-header {
    background-color: rgba(0, 255, 0, 0.1);
    border-bottom: 1px solid rgba(0, 255, 0, 0.3);
}

.hero-title {
    font-family: 'VT323', monospace;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 1rem 0;
    letter-spacing: 2px;
    color: #00FF00;
    min-height: 9.6rem;
    cursor: default;
    position: relative;
    transition: text-shadow 0.1s;
    word-break: break-all;
    white-space: pre-wrap;
}

.hero-title:hover {
    text-shadow: -3px -2px 0 #ff0000, 3px 2px 0 #00e5ff, 0 0 20px rgba(0, 255, 0, 0.4);
    animation: glitch-flicker 0.15s infinite;
}

@keyframes glitch-flicker {
    0% {
        text-shadow: -3px -2px 0 #ff0000, 3px 2px 0 #00e5ff, 0 0 20px rgba(0, 255, 0, 0.4);
    }

    25% {
        text-shadow: 2px 3px 0 #ff0000, -2px -1px 0 #00e5ff, 0 0 15px rgba(0, 255, 0, 0.3);
    }

    50% {
        text-shadow: -2px 1px 0 #ff0000, 3px -2px 0 #00e5ff, 0 0 25px rgba(0, 255, 0, 0.5);
    }

    75% {
        text-shadow: 3px -3px 0 #ff0000, -3px 2px 0 #00e5ff, 0 0 10px rgba(0, 255, 0, 0.3);
    }

    100% {
        text-shadow: -3px -2px 0 #ff0000, 3px 2px 0 #00e5ff, 0 0 20px rgba(0, 255, 0, 0.4);
    }
}

.hero-white {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.hero-blue {
    color: #00E5FF;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

/* DNA Animation Styles */
@keyframes rotate-dna {
    0% {
        transform: rotateY(0)
    }

    to {
        transform: rotateY(360deg)
    }
}

.dna-segment {
    position: relative;
    width: 160px;
    height: 12px;
    transform-style: preserve-3d;
    animation: rotate-dna 6s linear infinite;
}

.dna-node {
    position: absolute;
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    color: #00FF00;
    text-shadow: 0 0 8px #00FF00;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dna-node.left {
    left: 0;
}

.dna-node.right {
    right: 0;
}

.dna-link {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00FF00, transparent);
    opacity: 0.3;
}

.dna-container {
    perspective: 1000px;
}

.dna-helix {
    transform-style: preserve-3d;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(.8);
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}