/* ee-cod | Theme: Midnight Aurora (Default)
   Concept: Deep Space Depth & Glassmorphism
*/

/* 1. FUNDO CÓSMICO */
body {
    background: radial-gradient(circle at center, #0c162d 0%, #020617 100%) !important;
    background-attachment: fixed !important;
    color: #ffffff !important;
    min-height: 100vh;
}

/* 2. AVATAR / FOTO DE PERFIL */
.profile-avatar {
    border: 3px solid rgba(0, 212, 255, 0.3) !important;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

/* 3. BOTÕES DE LINK (ESTILO VIDRO) */
.link-item {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 18px !important;
    padding: 16px 20px !important;
    margin-bottom: 14px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* 4. HOVER INTERATIVO */
.link-item:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: #00d4ff !important;
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* 5. TEXTOS E BIO */
.profile-bio {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 15px;
}

.link-text {
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #ffffff;
}

/* 6. RODAPÉ DO PERFIL */
.profile-footer {
    opacity: 0.4;
    font-size: 0.6rem;
    letter-spacing: 2px;
    margin-top: 50px;
}