:root {
    --primary: #60a5fa;
    --primary-glow: rgba(96, 165, 250, 0.2);
    --glass-bg: rgba(10, 15, 25, 0.85);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #f9fafb;
    --text-muted: #94a3b8;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    background: #020617;
    overflow-x: hidden;
    padding: 1.5rem;
}

.bg-video {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: -1;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(25px) saturate(150%);
    -webkit-backdrop-filter: blur(25px) saturate(150%);
    border: 1px solid var(--glass-border);
    border-radius: 35px;
    padding: 3.5rem 2rem 2.5rem;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.8s ease-out;
}

.avatar-wrapper {
    position: relative;
    width: 130px;
    height: 130px;
    margin: -7.5rem auto 1.5rem;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px var(--primary-glow);
    transition: transform 0.4s ease;
}

.avatar:hover {
    transform: scale(1.05) rotate(1deg);
}

h1 {
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    color: #ffffff;
    background: linear-gradient(180deg, #ffffff 0%, #94a3b8 100%);
    /* Definições de Compatibilidade */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

p {
    font-size: 1rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
}

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

.btn-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
    text-decoration: none;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.btn-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: var(--primary);
}

.btn-modern.primary {
    background: var(--primary);
    color: #020617;
    font-weight: 700;
    border: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .glass-card {
        padding: 3rem 1.5rem 2rem;
    }

    h1 {
        font-size: 1.7rem;
    }

    .avatar-wrapper {
        width: 115px;
        height: 115px;
        margin-top: -6.5rem;
    }
}