:root {
    --primary: #007AFF; 
    --bg-dark: #0a0f1e;
    --glass: rgba(255, 255, 255, 0.05);
    --text: #ffffff;
}

body {
    background-color: var(--bg-dark);
    margin: 0;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: var(--text);
    overflow: hidden;
}

/* Bolhas de gradiente ao fundo para efeito de profundidade */
.background-blobs {
    position: absolute;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #007AFF, #5856D6);
    filter: blur(100px);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.6;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px 25px;
    width: 85%;
    max-width: 340px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.profile-img {
    width: 110px;
    height: 110px;
    border-radius: 25%; /* Squircle moderno */
    object-fit: cover;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

h1 { font-size: 1.5rem; margin: 0; font-weight: 700; letter-spacing: -0.5px; }
.tagline { font-size: 0.85rem; color: #94a3b8; margin: 10px 0 35px; text-transform: uppercase; letter-spacing: 1.5px; }

.links { display: flex; flex-direction: column; gap: 14px; }

.btn {
    background: rgba(255, 255, 255, 0.07);
    padding: 16px;
    border-radius: 16px;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn i { width: 30px; font-size: 1.2rem; color: var(--primary); }
.btn span { flex-grow: 1; text-align: center; margin-right: 30px; font-weight: 500; }

.btn:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn.primary {
    background: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 122, 255, 0.3);
}

.btn.primary i { color: white; }

footer { margin-top: 35px; font-size: 0.65rem; color: #475569; letter-spacing: 1px; }
