@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap");

body {
    font-family: "Orbitron", sans-serif;
    background-color: #0a0a0f;
    background-image: linear-gradient(
        160deg,
        #0a0a0f 0%,
        #210a2c 100%
    );
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
    overflow: hidden;
}

.container {
    background: rgba(10, 10, 20, 0.65);
    padding: 40px;
    border-radius: 10px;
    border: 2px solid #00f0ff;
    box-shadow:
        0 0 25px rgba(0, 240, 255, 0.4),
        inset 0 0 10px rgba(0, 240, 255, 0.3);
    max-width: 650px;
    width: 90%;
    animation: fadeIn 1.5s ease-in-out;
    backdrop-filter: blur(3px);
}

h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

p {
    font-size: 1.1em;
    line-height: 1.7;
    font-weight: 400;
    color: #c0c0c0;
}

.highlight {
    color: #fce500;
    font-weight: 700;
    text-shadow:
        0 0 5px #fce500,
        0 0 10px #fce500,
        0 0 20px #ff9900;
}

.links{
    display: flex;
    justify-content: center;
}

.centered {
    display: flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 25px;
        width: 85%;
    }

    h1 {
        font-size: 2.2em;
    }

    p {
        font-size: 1em;
    }
}
