
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Segoe UI', sans-serif;
    background: black;
    color: white;
    overflow-x: hidden;
}


.hero {
    position: relative;
    height: 100vh;
    width: 100%;
}

.background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) blur(2px);
    transform: scale(1.05);
    animation: slowZoom 20s infinite alternate ease-in-out;

    user-select: none;
    -webkit-user-drag: none;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}


.logo {
    width: 260px;
    margin-bottom: 15px;

    filter: drop-shadow(0 0 20px rgb(0 21 255 / 0.6));
    animation: float 4s ease-in-out infinite;

    user-select: none;
    -webkit-user-drag: none;
}


h1 {
    font-size: 48px;
    margin-bottom: 10px;

    text-shadow: 0 0 15px #008cff;
}

/* Description */
p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 25px;
}


.button {
    display: inline-block;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: bold;

    color: white;
    text-decoration: none;

    border: 2px solid #0077ff;
    border-radius: 10px;

    background: rgb(0 89 255 / 0.1);
    backdrop-filter: blur(10px);

    transition: all 0.3s ease;
}


.button:hover {
    background: #009dff;
    box-shadow: 0 0 25px #00b2ff;
    transform: scale(1.1);
}


@keyframes slowZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}