:root {
    --primary: #00ff88; /* Verde Neon da sua marca */
    --bg-dark: #050505;
    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-sec: #aaaaaa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

/* --- FUNDO CINEMÁTICO --- */
.bg-image {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Substitua pela URL da sua imagem melancólica de fundo */
    background-image: url('img_background.png'); 
    background-size: cover;
    background-position: center;
    filter: brightness(0.8) blur(0px); /* Escurece e desfoca o fundo */
    z-index: -2;
    
}

/* Efeito de grão de filme (Noise) */
.noise-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.07;
    z-index: -1;
    pointer-events: none;
}

/* --- CONTAINER PRINCIPAL --- */
.container {
    width: 100%;
    max-width: 500px;
    padding: 40px 20px;
    text-align: center;
    z-index: 1;
}

/* --- PERFIL --- */
.avatar-container {
    margin-bottom: 20px;
}

.avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
}

.avatar:hover {
    transform: scale(1.05) rotate(5deg);
    border-color: var(--primary);
}

h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.bio {
   font-size: 16px; /* Aumentei um pouco (era 14px) */
    color: #ffffff;  /* Mudei para Branco Puro (era cinza) */
    margin-bottom: 40px;
    font-weight: 600; /* Deixei mais gordinho (era 300) */
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9); /* O segredo: Sombra preta forte atrás */
    letter-spacing: 1px; /* Espaçamento para ficar elegante */
}

/* --- LINKS (CARDS) --- */
.links-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card-link {
    text-decoration: none;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: 16px;
    backdrop-filter: blur(10px); /* Efeito de vidro fosco */
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    color: white;
}

/* Conteúdo do Card */
.card-content {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.text-group {
    flex: 1;
    text-align: left;
}

.text-group h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.text-group p {
    font-size: 12px;
    color: var(--text-sec);
    line-height: 1.3;
}

.icon {
    font-size: 24px;
    color: #fff;
    transition: 0.3s;
}

.arrow {
    opacity: 0.5;
    transition: 0.3s;
}

/* Efeitos de Hover (Onde a mágica acontece) */
.card-link:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px -10px rgba(0, 255, 136, 0.2);
}

.card-link:hover .icon {
    color: var(--primary);
    transform: scale(1.1);
}

.card-link:hover .arrow {
    opacity: 1;
    color: var(--primary);
    transform: translateX(5px);
}

/* Brilho ao passar o mouse */
.card-link::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: 0.5s;
    z-index: 1;
}

.card-link:hover::before {
    left: 100%;
}

/* --- RODAPÉ --- */
.socials {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.socials a {
    color: var(--text-sec);
    font-size: 24px;
    transition: 0.3s;
}

.socials a:hover {
    color: var(--primary);
    transform: scale(1.2);
}