/* Custom Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto+Mono:wght@300&display=swap');

body {
    font-family: 'Roboto Mono', monospace;
    background: black;
    overflow: hidden;
}

/* Social Links */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 255, 0.3);
    transition: all 0.4s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.social-link:hover {
    background: rgba(0, 255, 255, 0.3);
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.icon {
    width: 30px;
    height: 30px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDelayed {
    0% { opacity: 0; transform: translateY(30px); }
    50% { opacity: 0; }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulse {
    0% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.05); }
    100% { opacity: 0.8; transform: scale(1); }
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.animate-fade-in {
    animation: fadeIn 1.2s ease-out forwards;
}

.animate-fade-in-delayed {
    animation: fadeInDelayed 1.8s ease-out forwards;
}

.animate-gradient {
    background-size: 200% 200%;
    animation: gradient 12s ease infinite;
}

.animate-pulse {
    animation: pulse 6s ease infinite;
}

.animate-spin-slow {
    animation: spinSlow 20s linear infinite;
}

/* Ensure the neon effect stays on one line for desktop */
h1 span.absolute {
    white-space: nowrap;
}

/* Media Query for Desktop (md and above) */
@media (min-width: 768px) {
    h1 span.block {
        display: inline;
    }
    h1 span.absolute {
        display: inline;
    }
}

/* Ensure tagline breaks cleanly on mobile */
p {
    white-space: normal;
    max-width: 100%;
    overflow-wrap: break-word;
}