/* GLOBAL BACKGROUND */
body {
    background: #000 !important;
    color: white;
}

/* HERO */
.hero {
    background: url("/images/bg.jpg") no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* DARK OVERLAY */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

/* STARS EFFECT */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://www.transparenttextures.com/patterns/stardust.png");
    opacity: 0.4;
    animation: starsMove 60s linear infinite;
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
}

/* TITLE GLOW */
.hero h1 {
    font-size: 64px;
    letter-spacing: 4px;
    text-shadow:
        0 0 10px #00eaff,
        0 0 20px #00eaff,
        0 0 40px #00eaff;
}

/* SUBTITLE */
.hero p {
    font-size: 22px;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* BUTTON */
.hero a {
    display: inline-block;
    padding: 14px 28px;
    border: 2px solid #00eaff;
    color: #00eaff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.hero a:hover {
    background: #00eaff;
    color: black;
    box-shadow: 0 0 20px #00eaff;
}

/* STAR ANIMATION */
@keyframes starsMove {
    from { background-position: 0 0; }
    to { background-position: 1000px 1000px; }
}
