@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    color: #00ff41;
    font-family: 'Oswald', sans-serif;
    overflow: hidden;
    position: relative;
    cursor: none;
}

body {
    background-image: linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.95)), url('images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border: 2px solid #00ff41;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    box-shadow: 0 0 15px #00ff41;
    transition: top 0.08s ease-out, left 0.08s ease-out;
    opacity: 0;
    animation: blink 1.5s infinite;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%; 
    text-align: center; 
    padding: 20px;
    z-index: 1;
    position: relative;
}

#main-message {
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-shadow:
        0 0 5px #00ff41,
        0 0 10px #00ff41,
        0 0 20px #00ff41;
    white-space: nowrap;
    max-width: 100%;
}

.sub-message {
    font-size: clamp(0.8rem, 2vw, 1rem);
    color: #a3a3a3;
    margin-top: 30px;
    letter-spacing: 2px;
    font-weight: 400;
    opacity: 0;
    animation: fadeIn 2s ease-in 5s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes blink {
    50% {
        opacity: 0.3;
        box-shadow: none;
    }
}