* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0A0A0A; /* Dark cyberpunk background */
    color: #E0E0E0;
    font-family: 'Orbitron', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.hero {
    text-align: center;
    padding: 20px;
    max-width: 600px;
}

.hero h1 {
    font-size: 36px;
    color: #FF00FF; /* Neon magenta */
    text-shadow: 0 0 8px #FF00FF;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    color: #00FFFF; /* Neon cyan */
    text-shadow: 0 0 5px #00FFFF;
    margin-bottom: 20px;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border: 2px solid #00FFFF;
    background: #000;
    padding: 5px;
    filter: drop-shadow(0 0 8px #00FFFF);
    transition: filter 0.3s, border-color 0.3s;
}

.hero-img:hover {
    border-color: #FF00FF;
    filter: drop-shadow(0 0 12px #FF00FF);
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 24px;
    }
    .hero p {
        font-size: 14px;
    }
    .hero-img {
        max-width: 80%;
    }
}
