:root {
    --primary: #ff2d55; /* Detalhe Quente: Magenta Vibrante */
    --primary-hover: #e6264d;
    --bg-dark: #05080f; /* Cor Fria: Azul Petróleo Profundo */
    --card-bg: rgba(10, 25, 47, 0.4); /* Cor Fria: Azul Marinho translúcido */
    --text-main: #e6f1ff; /* Azul Gelo */
    --text-dim: rgba(136, 146, 176, 0.7); /* Cinza Azulado */
    --glass-border: rgba(100, 255, 218, 0.1); /* Toque Frio: Ciano sutil */
    --accent-glow: rgba(255, 45, 85, 0.15); /* Brilho Quente */
}

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

body {
    font-family: 'Outfit', 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;
}

.background-glow {
    position: fixed;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at 20% 30%, rgba(0, 112, 243, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 45, 85, 0.1) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
    animation: pulseGlow 15s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
    from { transform: scale(1); opacity: 0.5; }
    to { transform: scale(1.1); opacity: 0.8; }
}

.container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
    z-index: 1;
}

.glass {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.card {
    padding: 40px 30px;
    text-align: center;
    animation: fadeIn 0.8s ease-out;
}

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

.profile-header {
    margin-bottom: 30px;
}

.avatar-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    padding: 4px;
}

.online-indicator {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    background-color: #4ade80;
    border: 3px solid var(--bg-dark);
    border-radius: 50%;
}

.name {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.status {
    color: var(--text-dim);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.verification-step {
    margin-bottom: 40px;
}

.step-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--primary);
}

.headline {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.description {
    color: var(--text-dim);
    line-height: 1.6;
    font-size: 1rem;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-primary {
    position: relative;
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 18px 24px;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: scale(1.03);
    background-color: var(--primary-hover);
    box-shadow: 0 10px 20px -5px var(--accent-glow);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: all 0.6s;
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.security-note {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.footer {
    margin-top: 30px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-dim);
}

.footer-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.loading-section {
    margin: 20px 0;
}

.progress-container {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
    transition: width 0.1s linear;
}

.loading-text {
    font-size: 0.9rem;
    color: var(--text-dim);
    font-weight: 500;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .card {
        padding: 30px 20px;
    }
    .name {
        font-size: 1.75rem;
    }
    .btn-primary {
        padding: 16px 20px;
        font-size: 1rem;
    }
}
