/* Custom CSS for Ro-Ternal Website */

body {
    background-color: #000000;
    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(255, 255, 255, 0.7);
}

.download-btn {
    background: linear-gradient(45deg, #000000 0%, #333333 50%, #000000 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; }
}
