/* Lucid Esports Theme */

body {
    margin: 0;
    min-height: 100vh;
    background: radial-gradient(circle at top, #151515, #000000);
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

/* Logo glow */
.logo {
    width: 250px;
    margin-top: 50px;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 0 20px #00ffff);
}

/* Logo animation */
@keyframes pulse {
    0% {
        filter: drop-shadow(0 0 10px #00ffff);
    }

    50% {
        filter: drop-shadow(0 0 35px #00ffff);
    }

    100% {
        filter: drop-shadow(0 0 10px #00ffff);
    }
}

/* Main title */
h1 {
    font-size: 60px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: white;
}

/* Subtitle */
p {
    font-size: 20px;
    color: #aaaaaa;
}

/* Buttons */
.button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 35px;
    border: 2px solid #00ffff;
    color: #00ffff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
}

.button:hover {
    background: #00ffff;
    color: black;
    box-shadow: 0 0 25px #00ffff;
    transform: scale(1.1);
}

/* Animated background */
body::before {
    content: "";
    position: fixed;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(0,255,255,0.08),
        transparent
    );
    animation: move 8s linear infinite;
    z-index: -1;
}

@keyframes move {
    from {
        transform: translate(-20%, -20%);
    }

    to {
        transform: translate(20%, 20%);
    }
}
