.hmvip-user-type-selector {
    margin: 30px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.hmvip-field-label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.hmvip-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 20px;
    position: relative;
}

.hmvip-cards-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #e0e0e0 20%, #e0e0e0 80%, transparent);
    transform: translateX(-50%);
}

.hmvip-card {
    background: #fff;
    border: 3px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hmvip-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hmvip-card input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

.hmvip-card:hover {
    border-color: #ff6b6b;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.2);
}

.hmvip-card.selected {
    border-color: #ff6b6b;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.hmvip-card-icon {
    font-size: 48px;
    line-height: 1;
    margin: 0;
}

.hmvip-card-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: #333;
    flex: 1;
}

.hmvip-card-description {
    font-size: 16px;
    color: #666;
    margin: 0 0 15px 0;
    font-weight: 500;
}

.hmvip-card-tagline {
    font-size: 14px;
    color: #999;
    font-style: italic;
    margin: 0;
    line-height: 1.4;
    min-height: 40px;
}

.hmvip-card[data-type="creator"] .hmvip-card-tagline {
    color: #ff6b6b;
    font-weight: 500;
}

.hmvip-card[data-type="creator"] .hmvip-card-tagline::before {
    content: '🤑 ';
    font-style: normal;
}

@media (max-width: 768px) {
    .hmvip-cards-container {
        grid-template-columns: 1fr;
    }
    
    .hmvip-cards-container::before {
        left: 0;
        right: 0;
        top: 50%;
        bottom: auto;
        width: auto;
        height: 2px;
        transform: translateY(-50%);
        background: linear-gradient(to right, transparent, #e0e0e0 20%, #e0e0e0 80%, transparent);
    }
    
    .hmvip-card {
        padding: 25px 15px;
    }
    
    .hmvip-card-icon {
        font-size: 40px;
    }
}
