/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
   background-image: url('/backround.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    color: white;
    font-family: 'Orbitron', sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 60px;
    min-height: 100vh;
}

/* === CONTAINER === */
.container {
    width: 100%;
    max-width: 420px;
    text-align: center;
    padding: 1rem;
}

/* === LOGO === */
.logo {
    font-size: 6rem;
    color: #00F0FF;
    animation: pulse 3s infinite ease-in-out;
    text-shadow: 0 0 8px #00F0FF;
    margin-bottom: 2rem;
    margin-top: 1px;
    letter-spacing: 20px;
    text-align: center;

}

@keyframes pulse {
    0%, 100% { text-shadow: 0 0 8px #00F0FF; }
    50% { text-shadow: 0 0 20px #00F0FF; }
}

/* === LINK BUTTONS === */
.links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 4rem;
}

.links a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 8px;
    border: 3px solid #00F0FF;
    color: white;
    background-color: rgba(255, 255, 255, 0.05);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.links a:hover {
    background-color: #00F0FF;
    color: #000;
    box-shadow: 0 0 10px #00F0FF;
}

/* === ICONS === */
.links img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.links a:hover img {
    filter: brightness(0) saturate(100%) invert(56%) sepia(85%) saturate(2744%) hue-rotate(147deg) brightness(103%) contrast(102%);
}

.roxiep{
    width: 65%;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 3px solid #00F0FF;

}
h3{
    text-align: center;
    font-size: 2rem;
    color: #00F0FF;
    animation: pulse 3s infinite ease-in-out;

}
