@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap');

body {
    margin: 0;
    padding: 0;
    background-color: #0b0b0b;
    /* Slightly lighter black for modern feel */
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    perspective: 1000px;
    width: 100%;
    text-align: center;
    /* Will be animated horizontally */
}

.demo-text {
    font-size: 5rem;
    font-weight: 900;
    white-space: nowrap;
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 40px #00ffff;
    letter-spacing: 2px;
}



.char {
    display: inline-block;
    position: relative;
    transform-style: preserve-3d;
}

/* Navigation Menu */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
    /* Further increased space for larger icons */
    padding: 0;
    margin: 0;
}

.navbar li a {
    color: #fff;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.navbar li a svg {
    width: 48px;
    /* Significantly larger icons */
    height: 48px;
    filter: drop-shadow(0 0 2px #00ffff);
    /* Subtle initial glow */
    transition: all 0.3s ease;
}

.navbar li a:hover svg {
    color: #00ffff;
    transform: scale(1.2);
    /* Grow on hover */
    filter: drop-shadow(0 0 10px #00ffff) drop-shadow(0 0 20px #00ffff);
    /* Strong neon glow */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .demo-text {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .navbar ul {
        gap: 1rem;
    }

    .navbar li a svg {
        width: 32px;
        height: 32px;
    }
}