html, body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    background: #000;
    color: #fff;
    min-height: 100vh;
    height: 100%;
}

body {
    position: relative;
    min-height: 100vh;
    height: 100%;
    overflow-x: hidden;
}

/* Background layers */
#shooting-stars,
.space-bg {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 0;
    pointer-events: none;
    display: block;
}

.space-bg {
    background: transparent;
}

/* Content layers */
.ne-header,
.ne-main,
.ne-footer {
    position: relative;
    z-index: 2;
    background: none;
    box-shadow: none;
    border: none;
}

/* Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* 3D Animated h1 */
.ne-title {
    font-size: 2.8rem;
    margin: 0 0 0.5rem 0;
    letter-spacing: 2px;
    font-weight: 900;
    color: #fff;
    text-align: center;
    /* 3D layered shadow */
    text-shadow:
        0 2px 8px #222,
        0 4px 16px #0ff8,
        0 1px 0 #0ff,
        2px 2px 0 #0ff,
        4px 4px 0 #0ff2;
    /* Animation */
    background: linear-gradient(90deg, #fff, #0ff, #fff, #0ff, #fff);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: ne-title-glow 3s linear infinite alternate, ne-title-gradient 6s linear infinite;
    position: relative;
}

@keyframes ne-title-glow {
    0% {
        text-shadow:
            0 2px 8px #222,
            0 4px 16px #0ff8,
            0 1px 0 #0ff,
            2px 2px 0 #0ff,
            4px 4px 0 #0ff2;
    }
    50% {
        text-shadow:
            0 4px 16px #0ff,
            0 8px 32px #0ff8,
            0 2px 0 #fff,
            2px 2px 0 #0ff,
            4px 4px 0 #0ff4;
    }
    100% {
        text-shadow:
            0 2px 8px #222,
            0 4px 16px #0ff8,
            0 1px 0 #0ff,
            2px 2px 0 #0ff,
            4px 4px 0 #0ff2;
    }
}

@keyframes ne-title-gradient {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Subtitle */
.ne-header .subtitle {
    font-size: 1.25rem;
    color: #eee;
    margin: 0;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Main */
.ne-main {
    padding: 2.5rem 0 2rem 0;
}

.intro h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 1px 4px #222;
}

.intro p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #eee;
    line-height: 1.6;
}

.madhost-link {
    display: inline-block;
    background: linear-gradient(90deg, #fff 0%, #aaa 100%);
    color: #000;
    font-weight: 600;
    padding: 0.75em 1.5em;
    border-radius: 2em;
    box-shadow: 0 2px 8px 0 rgba(255,255,255,0.15);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

.madhost-link:hover, .madhost-link:focus {
    background: linear-gradient(90deg, #eee 0%, #888 100%);
    color: #000;
    box-shadow: 0 4px 16px 0 rgba(255,255,255,0.25);
    text-decoration: none;
}

.features h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features li {
    background: rgba(255,255,255,0.08);
    margin-bottom: 0.7em;
    padding: 0.7em 1em;
    border-radius: 1em;
    font-size: 1.08rem;
    color: #fff;
    box-shadow: 0 1px 4px 0 rgba(255,255,255,0.07);
    transition: background 0.2s;
}

.features li:hover {
    background: rgba(255,255,255,0.18);
}

.ne-footer {
    padding: 1.5rem 0 1rem 0;
    text-align: center;
    font-size: 1rem;
    color: #eee;
}

.ne-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
}

.ne-footer p {
    margin: 0;
    font-size: 1rem;
    color: #eee;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
    margin-top: 0.3rem;
}

.social-icons a {
    color: #fff;
    font-size: 1.7rem;
    transition: color 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0.3em;
}

.social-icons a:hover, .social-icons a:focus {
    color: #fff;
    background: #444;
    transform: scale(1.15) rotate(-6deg);
    box-shadow: 0 2px 8px 0 rgba(255,255,255,0.18);
    outline: none;
}

/* Responsive Design */
@media (max-width: 700px) {
    .container {
        padding: 0 0.7rem;
    }
    .ne-title {
        font-size: 2rem;
    }
    .intro h2 {
        font-size: 1.3rem;
    }
    .features h3 {
        font-size: 1.1rem;
    }
    .madhost-link {
        font-size: 1rem;
        padding: 0.6em 1.1em;
    }
    .social-icons a {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .ne-header, .ne-main, .ne-footer {
        padding-left: 0.2rem;
        padding-right: 0.2rem;
    }
    .container {
        padding: 0 0.2rem;
    }
    .features li {
        font-size: 0.98rem;
        padding: 0.5em 0.7em;
    }
}