body {
    background-color: #0a000f;
    color: #ffffff;
    overflow-x: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.glow {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: pulse 2s infinite alternate;
}

.border-glow {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

@keyframes pulse {
    0% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.8); }
    100% { text-shadow: 0 0 20px rgba(255, 255, 255, 1); }
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(200, 100, 255, 0.5);
}

.download-btn {
    background: linear-gradient(45deg, #15001a 0%, #3a004a 50%, #15001a 100%);
    background-size: 200% auto;
    transition: 0.5s;
}

.download-btn:hover {
    background-position: right center;
}

.terminal-effect {
    position: relative;
}

.terminal-effect::after {
    content: '_';
    animation: blink 1s infinite;
}

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

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #140016;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #3a004a, #b57bff, #3a004a);
    border-radius: 6px;
    border: 2px solid #140016;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #d9b7ff, #ffffff, #d9b7ff);
}
