body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #111111;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    z-index: -1;
    opacity: 0.8;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.content {
    text-align: center;
    z-index: 1;
    color: #ffffff;
    position: relative;
}

.content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content p {
    font-size: 1.8rem;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.button {
    padding: 15px 30px;
    background-color: #FF00FF;
    /* Neon pink */
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 30px;
    display: inline-block;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    transform-origin: center;
}

.button:hover {
    background-color: #FF33FF;
    /* Lighter pink */
    transform: scale(1.05);
}

.neon {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.neon:before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle closest-side, #FF00FF, transparent);
    top: -50%;
    left: -50%;
    z-index: 1;
    animation: animateNeon 10s linear infinite;
}

@keyframes animateNeon {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: rotate(360deg) scale(1.2);
        opacity: 0;
    }
}
