/* Importando uma fonte monospaçada do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

/* Estilos Globais */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    background-color: #000000;
    color: #ffffff;
    font-family: 'VT323', monospace; /* Fonte com estilo retrô/pixelado */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    max-width: 680px;
    width: 90%;
    padding: 20px;
    box-sizing: border-box;
}

/* Header e Logo */
.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #00f0ff; /* Ciano para um toque tech */
    margin-bottom: 15px;
}

h1 {
    font-size: 3em;
    margin: 10px 0 5px;
    letter-spacing: 2px;
}

.subtitle {
    color: #bbbbbb;
    font-size: 1.1em;
    margin-bottom: 25px;
}

/* Efeito Glitch no Texto */
.glitch {
    position: relative;
    text-shadow: 
        0.05em 0 0 rgba(0, 255, 255, 0.75), 
        -0.05em 0 0 rgba(255, 0, 0, 0.75), 
        0 0.025em 0 rgba(0, 255, 0, 0.75);
}

/* Links de Redes Sociais */
.social-links {
    margin-bottom: 30px;
}

.social-links a {
    color: #ffffff;
    font-size: 1.6em; /* <<< ALTERADO: Ícones um pouco menores */
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}

.social-links a:hover {
    color: #00f0ff;
    transform: scale(1.2);
}

/* Botões de Link Principais */
.main-links .link-card {
    display: flex;
    align-items: center;
    background-color: #1c1c1c;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    text-decoration: none;
    color: #ffffff;
    text-align: left;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.main-links .link-card:hover {
    transform: scale(1.04);
    background-color: #2a2a2a;
}

.link-card i {
    font-size: 3em;
    margin-right: 20px;
    width: 50px;
    text-align: center;
}
.link-card .discord-icon { color: #5865F2; }
.link-card .instagram-icon { color: #E1306C; }

.link-text {
    display: flex;
    flex-direction: column;
}

.link-text strong {
    font-size: 1.4em;
    margin-bottom: 5px;
}

.link-text span {
    font-size: 1em;
    color: #cccccc;
}

/* Seção de Vantagens */
.features {
    margin-top: 40px;
}

.features p {
    font-size: 1.3em;
    margin: 10px 0;
    letter-spacing: 1px;
}

/* Rodapé */
.footer-link {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    border: 1px solid #555;
    border-radius: 25px;
    text-decoration: none;
    color: #aaa;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.footer-link:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}