* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 80px;
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    padding: 35px;
    border-radius: 25px;
    width: 320px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.7);
    color: white;
}

.profile {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid rgba(255,255,255,0.2);
    box-shadow: 0 0 20px rgba(106,17,203,0.5);
}

h1 {
    margin-bottom: 5px;
}

p {
    margin-bottom: 20px;
    color: #bbb;
}

/* Links */
.links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link {
    text-decoration: none;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    padding: 13px;
    border-radius: 12px;
    transition: 0.2s;
    font-weight: 500;
}

.link:hover {
    filter: brightness(1.1);
}

/* Os projetos */
.projects {
    margin-top: 25px;
    text-align: left;
}

.projects h2 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ccc;
}

.repo {
    background: rgba(255,255,255,0.05);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    transition: 0.2s;
}

.repo a {
    color: white;
    text-decoration: none;
}

.repo:hover {
    background: rgba(255,255,255,0.1);
}