body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #1e1e1e, #111);
    color: #f2f2f2;
    overflow-x: hidden;
}

header.hero {
    background: #1c1c1c;
    padding: 20px;
    border-bottom: 3px solid #00ffcc;
    text-align: center;
    animation: slideInTop 0.8s ease-out;
}

.logo {
    font-size: 50px;
    animation: shine 3s infinite ease-in-out;
}

nav {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

nav a {
    background-color: #2a2a2a;
    color: #00ffcc;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s ease;
}

nav a:hover {
    background-color: #00ffcc;
    color: #000;
}

section.intro {
    padding: 60px 20px;
    text-align: center;
    animation: fadeIn 1s ease-in;
    max-width: 800px;
    margin: auto;
}

section.intro h2 {
    font-size: 2.5em;
    color: #00ffcc;
    margin-bottom: 15px;
}

section.intro p {
    font-size: 1.3em;
    line-height: 1.6;
}

.status {
    font-size: 1.1em;
    margin: 20px auto 30px;
    background: #2d2d2d;
    padding: 12px 20px;
    border: 1px solid #444;
    display: inline-block;
    border-radius: 8px;
    color: #66ff99;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInTop {
    from { transform: translateY(-100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes shine {
    0%, 100% { text-shadow: 0 0 5px #00ffcc, 0 0 10px #00ffcc; }
    50% { text-shadow: 0 0 15px #00ffcc, 0 0 30px #00ffcc; }
}

@media (max-width: 600px) {
    nav {
        flex-direction: column;
        align-items: center;
    }

    section.intro h2 {
        font-size: 2em;
    }

    .status {
        width: 90%;
    }
}
