.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.user-card {
    position: relative;
    overflow: visible;
}
.user-label {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 2px solid #e5e7eb;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    color: #374151;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.user-label::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid white;
}
.user-label::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid white;
}
.phone-mockup {
    background: #000;
    border-radius: 30px;
    padding: 20px 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    position: relative;
}
.phone-screen {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #ccc;
    border-radius: 2px;
    z-index: 10;
}
.phone-home {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    border: 2px solid #333;
    border-radius: 50%;
    background: transparent;
}