* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    background: rgba(26, 26, 46, 0.95);
    border-radius: 24px;
    padding: 40px 30px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    border: 1px solid rgba(0, 255, 136, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.1);
    border: 3px solid #00ff88;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

h1 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

p {
    color: #a0aec0;
    font-size: 14px;
    margin-bottom: 24px;
}

.btn {
    display: block;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.btn.primary {
    background: rgba(0, 255, 136, 0.15);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.btn.primary:hover {
    background: rgba(0, 255, 136, 0.25);
    transform: translateY(-2px);
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #a0aec0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.status {
    margin-top: 16px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    color: #4a5568;
    font-size: 13px;
}

.status.active {
    color: #00ff88;
}

.status.inactive {
    color: #ff6b6b;
}